/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00D9FF;
    --secondary-color: #0a0a0a;
    --accent-color: #39FF14;
    --dark-color: #0f0f0f;
    --light-color: #1a1a1a;
    --text-color: #e0e0e0;
    --white: #ffffff;
    --neon-cyan: #00D9FF;
    --neon-green: #39FF14;
    --neon-pink: #FF006E;
    --matte-black: #0a0a0a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-color);
    background-color: var(--matte-black);
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.03) 2px,
            rgba(0, 217, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(57, 255, 20, 0.02) 2px,
            rgba(57, 255, 20, 0.02) 4px
        );
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    background-color: var(--secondary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 1px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--accent-color);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 1px,
            rgba(0, 217, 255, 0.05) 1px,
            rgba(0, 217, 255, 0.05) 2px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 1px,
            rgba(0, 217, 255, 0.05) 1px,
            rgba(0, 217, 255, 0.05) 2px
        );
    opacity: 0.1;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(57, 255, 20, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content > p:first-of-type {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    opacity: 0.95;
}

.hero-content .tagline {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #ffb700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--matte-black);
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(0, 217, 255, 0.05) 10px,
            rgba(0, 217, 255, 0.05) 20px
        );
    text-align: center;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: inset 0 0 30px rgba(0, 217, 255, 0.1);
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.about p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-color);
}

/* Specialities Section */
.specialities {
    padding: 80px 20px;
    background-color: var(--matte-black);
}

.specialities h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.specialities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.specialty-card {
    background: linear-gradient(135deg, #1a1a1a, #0f1f2e);
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid #2a2a3a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 217, 255, 0.05);
    position: relative;
}

.specialty-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.02) 2px,
            rgba(0, 217, 255, 0.02) 4px
        );
    pointer-events: none;
}

.specialty-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.4), inset 0 0 30px rgba(0, 217, 255, 0.1);
    background: linear-gradient(135deg, #1a2a3a, #0f2f4e);
}

.specialty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.specialty-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.4);
}

.specialty-card p {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.6;
}

/* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: var(--matte-black);
    border-top: 2px solid var(--primary-color);
}

.gallery h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 217, 255, 0.05);
    border: 2px solid #2a2a3a;
    transition: all 0.3s ease;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.02) 2px,
            rgba(0, 217, 255, 0.02) 4px
        );
    pointer-events: none;
    z-index: 2;
}

.gallery-item:hover {
    box-shadow: 0 0 40px rgba(0, 217, 255, 0.4), inset 0 0 30px rgba(0, 217, 255, 0.1);
    border-color: var(--primary-color);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 2rem 1rem 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

/* Testimonials/Quotes Section */
.testimonials {
    padding: 80px 20px;
    background-color: var(--matte-black);
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    box-shadow: inset 0 0 30px rgba(0, 217, 255, 0.1);
}

.testimonials h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.quotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.quote-card {
    background: linear-gradient(135deg, #1a1a1a, #0f1f2e);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 217, 255, 0.05);
    border: 2px solid #2a2a3a;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
}

.quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.02) 2px,
            rgba(0, 217, 255, 0.02) 4px
        );
    pointer-events: none;
}

.quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), inset 0 0 30px rgba(0, 217, 255, 0.1);
    background: linear-gradient(135deg, #1a2a3a, #0f2f4e);
    border-color: var(--accent-color);
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.quote-author {
    text-align: right;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
}

/* Location Section */
.location {
    padding: 80px 20px;
    background-color: var(--matte-black);
}

.location h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 217, 255, 0.05);
    border: 2px solid #2a2a3a;
}

.map-container iframe {
    border-radius: 0;
    display: block;
}

.address-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

.address-info .address,
.address-info .coordinates {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-color);
}

.address-info p {
    font-size: 1rem;
    color: var(--text-color);
}

.address-info strong {
    color: var(--accent-color);
    text-shadow: 0 0 5px rgba(57, 255, 20, 0.3);
}

.address-info .description {
    color: var(--text-color);
    line-height: 1.8;
    margin-top: 1.5rem;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0f3460 100%);
    color: var(--white);
    text-align: center;
    border-top: 2px solid var(--primary-color);
    box-shadow: inset 0 0 30px rgba(0, 217, 255, 0.1);
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-block {
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a, #0f1f2e);
    border: 2px solid #2a2a3a;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(0, 217, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.contact-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 217, 255, 0.02) 2px,
            rgba(0, 217, 255, 0.02) 4px
        );
    pointer-events: none;
}

.contact-block:hover {
    border-color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.3), inset 0 0 30px rgba(0, 217, 255, 0.1);
    transform: translateY(-5px);
}

.contact-block h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
    position: relative;
    z-index: 1;
}

.contact-block p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.phone-link {
    display: inline-block;
    background-color: var(--primary-color);
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
    border: 2px solid var(--primary-color);
    position: relative;
    z-index: 1;
}

.phone-link:hover {
    background-color: transparent;
    color: var(--primary-color);
    box-shadow: 0 0 30px rgba(0, 217, 255, 0.6);
    transform: translateY(-2px);
}

.social-link {
    display: inline-block;
    background-color: var(--accent-color);
    color: #000;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.4);
    border: 2px solid var(--accent-color);
    position: relative;
    z-index: 1;
}

.social-link:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.6);
    transform: translateY(-2px);
}

.contact-cta {
    margin-top: 2rem;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Footer */
.footer {
    background-color: #000;
    color: var(--primary-color);
    text-align: center;
    padding: 2rem 20px;
    border-top: 2px solid var(--primary-color);
    box-shadow: inset 0 0 20px rgba(0, 217, 255, 0.15);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3);
}

.footer p {
    margin: 0.5rem 0;
    color: var(--text-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--secondary-color);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        font-size: 1.2rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu li {
        padding: 0;
    }

    .logo {
        font-size: 1.3rem;
    }

    .nav-container {
        padding: 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content > p:first-of-type {
        font-size: 1.3rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .specialities-grid,
    .gallery-grid,
    .quotes-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .specialty-card,
    .gallery-item,
    .quote-card {
        margin: 0;
    }

    .gallery-item img {
        height: 250px;
    }

    h2 {
        font-size: 2rem !important;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        top: 60px;
        padding: 1.5rem 0;
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 1.05rem;
        padding: 0.8rem 0;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 0 12px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content > p:first-of-type {
        font-size: 1rem;
    }

    .hero-content .tagline {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .hero {
        padding: 50px 15px;
        min-height: 350px;
    }

    .specialities-grid,
    .gallery-grid,
    .quotes-grid,
    .contact-methods {
        gap: 1rem;
    }

    .specialty-card,
    .gallery-item,
    .quote-card,
    .contact-block {
        padding: 1.5rem;
    }

    .map-container {
        min-height: 300px;
    }

    .about,
    .specialities,
    .gallery,
    .testimonials,
    .location,
    .contact {
        padding: 50px 15px;
    }

    .address-info h3 {
        font-size: 1.4rem;
    }

    .about h2,
    .specialities h2,
    .gallery h2,
    .testimonials h2,
    .location h2,
    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .specialty-icon {
        font-size: 2.5rem;
    }

    .specialty-card h3 {
        font-size: 1.2rem;
    }

    .quote-text {
        font-size: 0.95rem;
    }

    .phone-link,
    .social-link {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .contact-block h3 {
        font-size: 1.3rem;
    }

    .contact-cta {
        font-size: 1rem;
    }

    .footer p {
        font-size: 0.9rem;
    }

    .container {
        padding: 0 15px;
    }

    .phone-numbers {
        gap: 0.75rem;
    }
}