html {
    scroll-behavior: smooth;
}

:root {
    --primary-blue: #0096ff;
    --primary-green: #25d366;
    /* Standard vibrant WhatsApp green */
    --deep-blue: #0c4a6e;
    /* Professional deep royal blue for directions */
    --light-blue: #e6f4fe;
    --dark-text: #2c3e50;
    --soft-white: #f9fbfd;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--soft-white);
    color: var(--dark-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Fredoka', sans-serif;
}

/* --- Navbar Menu System with Click Control --- */
nav {
    background: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 150, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.clinic-logo-img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 15px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    transition: all 0.4s ease;
}

.nav-menu-btn {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 2px 2px 5px rgba(0, 150, 255, 0.8),
        -2px -2px 5px rgba(255, 255, 255, 0.5);

    transition: all 0.4s ease;
}

.nav-menu-btn:hover {
    background: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 10px rgba(0, 150, 255, 0.3);
    transform: translateY(-2px);
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    z-index: 5;
    margin-top: 10px;
}

.dropdown-content a {
    color: var(--dark-text);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.95rem;
}

.dropdown-content a:hover {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

/* Class added dynamically via JS to view dropdown */
.dropdown-content.show-dropdown {
    display: block;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: var(--dark-text);
    cursor: pointer;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-call-nav {
    background: #f0fdf4;
    color: #16a34a;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #16a34a;
}

.btn-book-nav-whatsapp {
    background: var(--primary-green);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Hero Section & Custom Typography --- */
/* --- Kids Theme Background Pattern --- */
.hero {
    width: 100%;
    padding: 80px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: linear-gradient(rgba(255, 255, 255, 0.50), rgba(255, 255, 255, 0.50)),
        url('image/background.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-content {
    flex: 1;
    max-width: 50%;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 600;
    max-width: 620px;
}

/* New badge stylings for "Over 1000+ Happy Smiles" */
.happy-smiles-badge {
    font-size: 1.2rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 820px;
    justify-content: center;
}

/* Custom Kids Font styling for 1000+ */
.happy-smiles-badge .kids-font {
    font-family: 'Fredoka One', 'Comic Sans MS', cursive;
    /* Use your existing kids theme font family here */
    color: #0d9488;
    font-size: 1.6rem;
    /* Increased size specifically for 1000+ */
    font-weight: 700;
}

.hero-graphic {
    flex: 1;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

/* --- Mobile Responsive Layout (Max Width: 768px) --- */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 30px;
    }

    .hero-content,
    .hero-graphic {
        max-width: 100%;
    }

    /* Shrinks the main title font automatically on mobile */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1;
        white-space: nowrap;
        margin-bottom: 8px;
    }

    .hero-btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-subtitle {
        max-width: 100%;
        font-size: 12px !important;
        line-height: 1.25;
        text-align: center;
        margin-top: 8px;
    }

    .hero-btn-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .cta-btn-whatsapp,
    .cta-btn.btn-deep-blue {
        width: 100%;
        max-width: 90%;
    }

    .happy-smiles-badge {
        max-width: 100%;
        justify-content: center;
        font-size: 1, 1rem;
        margin-bottom: 20px;
    }
}

/* Brand Typography Layout Headers */
.brand-header-block {
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.8rem;
    color: #0f3460;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1.1;
}

.hero-brand-tag {
    font-size: 2.1rem;
    color: #45a05e;
    font-weight: 600;
    margin-top: 5px;
}

.hero-btn-group {
    display: flex;
    gap: 15px;
    margin-bottom: 35px;
}

/* --- Buttons Layout & Sizing Configuration --- */
.hero-btn-group {
    display: flex;
    gap: 24px;
    max-width: 820px;
    /* Stretches wide enough to match the exact length of your title header */
    width: 100%;
    margin-bottom: 35px;
}

/* Base properties for both action buttons */
.cta-btn-whatsapp,
.cta-btn.btn-deep-blue {
    flex: 1;
    /* Splits the space completely evenly into half-and-half layout */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-sizing: border-box;
}

.cta-btn-whatsapp {
    background: var(--primary-green);
    color: white;
}

.cta-btn.btn-deep-blue {
    background: #da3145;
    /* Changes color to match the orange theme layout in your image */
    color: white;
}

/* --- Interactive Click / Hover Glow Effects --- */
.cta-btn-whatsapp:hover,
.cta-btn.btn-deep-blue:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(37, 211, 102, 0.2);
}

.cta-btn.btn-deep-blue:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1), 0 0 0 4px rgba(243, 156, 18, 0.2);
}


/* Features Triple Grid Base */
.hero-features-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    margin-top: 20px;
}

.feature-tag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
}

.feature-tag-item i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

.feature-tag-item span {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark-text);
}

/* மொபைல் வியூவில் மேல இரண்டு, கீழே ஒன்று அடுக்க மற்றும் சைஸை சீராக்க */
@media (max-width: 768px) {
    .hero-features-list {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        /* மேல இரண்டு காலம் */
        gap: 10px;
        width: 100%;
        padding: 0 10px;
    }

    .feature-tag-item {
        justify-content: center;
        padding: 8px 10px !important;
        /* பட்டன் பேடிங் குறைப்பு */
        white-space: nowrap;
        /* டெக்ஸ்ட் உடையாமல் இருக்க */
        width: 100%;
        /* கன்டெய்னர் முழுமைக்கும் இருக்க */
    }

    .feature-tag-item span {
        font-size: 0.8rem !important;
        /* எழுத்து அளவு குறைப்பு */
    }

    /* மூன்றாவது ஐட்டத்தை மட்டும் மையப்படுத்த */
    .feature-tag-item:nth-child(3) {
        grid-column: span 2;
        /* இரண்டு காலத்தையும் ஆக்கிரமிக்க */
        justify-self: center;
        width: 50%;
        /* மூன்றாவது ஐட்டம் மட்டும் சின்னதா இருக்க */
    }
}

.hero-graphic {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-clinic-photo-holder {
    width: 100%;
    max-width: calc(500px + 15mm);
    height: calc(100% + 10mm);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 150, 255, 0.1);
    border: 8px solid white;

}

.hero-main-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* --- Counter Section --- */
.counter-section {
    background: var(--light-blue);
    padding: 50px 20px;
    text-align: center;
}

.counter-container {
    display: flex;
    justify-content: space-around;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 30px;
}

.counter-box i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.counter-box h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
}

.counter-box p {
    font-weight: 700;
    color: #475569;
}

/* --- Services Display Panel --- */
.services-section {
    padding: 80px 20px;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
    color: var(--dark-text);
}

.section-subtitle {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 40px 20px;
    border-radius: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.all-services-dropdown {
    max-width: 1100px;
    margin: 40px auto 0;
}

.service-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
    background-color: #ffffff;
    border-radius: 10%;
    padding: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .service-card {
        width: 100%;
        max-width: 300px;
    }
}


.dropdown-trigger-btn {
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 14px 30px;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
}

.dropdown-trigger-btn:hover {
    background: var(--primary-blue);
    color: white;
}

.dropdown-target-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 25px;
    text-align: left;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out;
}

/* Fix: Combined class without spaces so JavaScript can toggle correctly */
.dropdown-target-grid.show-dropdown {
    max-height: 1500px;
    padding: 20px 0;
}

.sub-service-item {
    background: #f1f5f9;
    padding: 20px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-blue);
}

.sub-service-item h4 {
    color: var(--dark-text);
    margin-bottom: 5px;
}

/* --- Doctors and Specialists Section Layout --- */
.doctors-section {
    padding: 80px 20px 40px;
    background-color: white;
    text-align: center;
}

.doctors-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.doctor-card {
    background: var(--soft-white);
    border: 1px solid #94c0f9;
    border-radius: 24px;
    padding: 30px 20px;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s, box-shadow 0.3s;
}

.doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 150, 255, 0.08);
}

.doc-img-holder {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #35a164;
}

.doc-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card h3 {
    font-size: 1.4rem;
    color: var(--dark-text);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.degree-tag {
    background: var(--light-blue);
    color: var(--primary-blue);
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 700;
}

.doc-specialty {
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.doc-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f0fdf4;
    color: #16a34a;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* CLINIC INFRASTRUCTURE - FINAL GRID LAYOUT */
.infra-gallery-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.main-premium-pic-container {
    position: relative;
    width: 100%;
}

.main-premium-pic {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}


.sub-grid-pics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.sub-premium-pic {
    width: 100%;
    height: 215px;
    object-fit: cover;
    border-radius: 15px;
}

@media (max-width: 768px) {

    /* 1. Make the outer container a single column layout on mobile */
    .infra-gallery-container {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    /* 2. Make the big image container take full width automatically */
    .main-premium-pic-container {
        width: 100%;
    }

    /* 3. Reduce big image height slightly so it fits beautifully on mobile screens */
    .main-premium-pic {
        height: 300px;
    }

    /* 4. Keep the 4 small images in a neat 2x2 grid below the big image */
    .sub-grid-pics {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    /* 5. Adjust small images height for perfect mobile proportions */
    .sub-premium-pic {
        height: 150px;
    }
}

/* --- Patient Infinite Loop Scroller --- */
.feeds-section {
    padding: 80px 20px;
    background: var(--soft-white);
    text-align: center;
}

.sub-section-title {
    font-size: 1.5rem;
    margin: 35px 0 15px;
    color: var(--dark-text);
    text-align: left;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.marquee-scroller-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.01);
}

.marquee-track-horizontal {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: infiniteScrollLoop 20s linear infinite;
}

.marquee-track-horizontal img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 16px;
}

.reel-box-item {
    position: relative;
    width: 240px;
    height: 420px;
    background: #000;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.reel-box-item i {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none;
    z-index: 2;
}

@media (max-width: 768px) {
    .reel-box-item {
        width: 150px;
        height: 260px;
    }

    .reel-box-item i {
        font-size: 1.8rem;
    }
}

@keyframes infiniteScrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Google Review Section Styles */
.review-section {
    padding: 60px 5%;
    background: #ffffff;
    text-align: center;
    scroll-margin-top: 200px;
}

.rating-badge {
    font-size: 18px;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 20px;
}

.review-slider {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.review-track {
    display: flex;
    gap: 20px;
    animation: scrollTrackSeamless 25s linear infinite;
}

.review-card {
    min-width: 280px;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.review-card p {
    font-style: italic;
    color: #475569;
    margin-bottom: 10px;
}

.review-card strong {
    display: block;
    margin-bottom: 5px;
    color: #1e293b;
}

.stars {
    color: #fbbf24;
    font-size: 16px;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .review-card {
        min-width: 250px;
    }
}

@keyframes scrollTrackSeamless {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* --- FAQ Accordion --- */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: #64748b;
}

/* --- Footer Symmetrical Align Layout --- */
footer {
    background: var(--dark-text);
    color: white;
    padding: 60px 40px 30px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-bottom: -50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-col-box {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: flex-start;
}

.footer-col-box h3,
.footer-col-box h4,
.footer-col-box .footer-heading {
    color: #ffd700;
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 18px;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

.footer-col-box p,
.footer-col-box span {
    font-size: 1rem;
    line-height: 1.7;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: #f0f4f8;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.footer-social-icons a {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: 0.3s;
}

.footer-social-icons a:hover {
    background: var(--primary-blue);
}

.days-highlight {
    color: #4ade80;
    font-weight: bold;
    margin-top: 10px;
}

.footer-direction-btn {
    display: inline-block;
    width: fit-content;
    background: var(--primary-blue);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 15px;
}

.footer-bottom-credits {
    text-align: center;
}

/* Footer Horizontal Line Divider */
.footer-divider {
    margin: 30px 0;
    border: 0;
    border-top: 1px solid #475569;
}

/* Light color and small size for copyright text */
.copyright-text {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 0.88rem !important;
    margin-bottom: 5px;
}

/* Styling for developer text */
.developer-text {
    font-size: 0.95rem;
    margin-top: 5px;
}

/* developer link */
.developer-link {
    color: #ffd700;
    text-decoration: none;
}

.developer-link:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

/* Responsive adjustment for Mobile view */
@media (max-width: 768px) {
    .copyright-text {
        font-size: 0.8rem !important;
    }

    .developer-text {
        font-size: 0.88rem;
    }
}

/* --- Floating Bar for Mobile Devices --- */
.mobile-floating-actions {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    grid-template-columns: 1fr 1fr;
}

.float-btn {
    padding: 16px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.float-btn.whatsapp {
    background: #25d366;
    color: white;
}

.float-btn.call {
    background: var(--primary-blue);
    color: white;
}

/* --- Responsive Layout Breakpoint Setup (768px Mobile First optimized) --- */
@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }

    .hamburger {
        display: block;
    }

    /* Responsive Hamburger Slide Action styling */
    nav {
        padding: 15px 20px;
        position: relative;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        gap: 20px;
        align-items: flex-start;
    }

    .nav-links.active-menu {
        display: flex;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        padding-left: 15px;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-brand-tag {
        font-size: 21px;
        width: auto;
        margin: auto;
        line-height: 1.3;
    }

    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .cta-btn-whatsapp,
    .cta-btn.btn-deep-blue {
        justify-content: center;
        width: 100%;
    }

    .infra-slide-layout {
        flex-direction: column;
    }

    .infra-big-pic {
        height: 260px;
    }

    .infra-small-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .grid-pic {
        height: 130px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mobile-floating-actions {
        display: grid;
    }

    body {
        padding-bottom: 60px;
    }
}