@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
    /* User Brand Color: rgb(215, 21, 122) -> Hex #D7157A */
    --primary-color: #D7157A;
    --primary-hover: #b00f60;

    /* Neater, Cleaner Palette */
    --secondary-color: #333333;
    /* Dark Grey for contrast headers */
    --text-dark: #2c2c2c;
    --text-light: #666666;

    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    /* Very subtle grey for section separation */
    --bg-accent: #fff0f5;
    /* Very light pink/lavender blush for minimal accents */

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 40px rgba(215, 21, 122, 0.15);
    /* Pink tinted shadow */

    --radius: 8px;
    /* Slightly softer corners */
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 span,
h2 span {
    color: var(--primary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    /* Standard cleaner width */
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.section-padding {
    padding: 80px 0;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50px;
    /* Pill shape for modern clean look */
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(215, 21, 122, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(215, 21, 122, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

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

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-book {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(215, 21, 122, 0.2);
}

.btn-book:hover {
    background-color: var(--primary-hover);
}

/* --- Header --- */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: var(--shadow-sm);
}

.top-bar {
    display: none;
    /* Hidden - using contact buttons in main nav instead */
    background-color: #f9f9f9;
    padding: 8px 0;
    font-size: 0.8rem;
    border-bottom: 1px solid #eee;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--text-light);
    margin-right: 20px;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 6px;
}

.header-socials a {
    color: var(--text-light);
    margin-left: 15px;
    transition: var(--transition);
}

.header-socials a:hover {
    color: var(--primary-color);
}

.main-nav {
    padding: 15px 0;
    background: white;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: auto;
    max-width: 100%;
}

/* Desktop Contact Buttons */
.desktop-contact-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.desktop-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.desktop-contact-btn:hover {
    transform: translateY(-2px);
}

.desktop-contact-btn i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.call-btn i {
    color: #007bff;
}

.whatsapp-btn i {
    color: #25D366;
}

.desktop-contact-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}

.desktop-contact-label {
    font-size: 0.7rem;
    color: #666;
    white-space: nowrap;
}

.desktop-contact-number {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.call-btn .desktop-contact-number {
    color: #007bff;
}

.whatsapp-btn .desktop-contact-number {
    color: #25D366;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-shrink: 0;
}

/* Desktop Navigation Links */
.desktop-nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
    position: relative;
    transition: color 0.3s;
    white-space: nowrap;
}

.desktop-nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.desktop-nav-link.active,
.desktop-nav-link:hover {
    color: var(--primary-color);
}

.desktop-nav-link.active::after,
.desktop-nav-link:hover::after {
    width: 100%;
}

.desktop-book-btn {
    white-space: nowrap;
    padding: 8px 18px;
    font-size: 0.85rem;
}

.nav-links a:not(.btn-book) {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-links a:not(.btn-book)::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
    position: absolute;
    bottom: -4px;
    left: 0;
}

.nav-links a.active::after,
.nav-links a:not(.btn-book):hover::after {
    width: 100%;
}

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

/* Hide Mobile Header Buttons on Desktop */
.mobile-header-buttons {
    display: none;
}

/* Hide Mobile Menu Elements Inside nav-links on Desktop */
.mobile-menu-header,
.mobile-menu-links {
    display: none;
}

/* --- Hero Video Section --- */
.hero-video-section {
    position: relative;
    height: 90vh;
    /* Slightly smaller than full screen for balance */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    background: #000;
    /* Fallback */
}

/* Fix for fixed header overlapping */
header+.hero-video-section {
    margin-top: 100px;
    height: calc(100vh - 100px);
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Lighter overlay for clarity */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    color: white;
}

.sub-headline {
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    margin-bottom: 15px;
    display: block;
    opacity: 0.9;
}

.hero-content h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* --- About Section --- */
.section-tag {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 -20px;
}

.col-text,
.col-img,
.col-gallery {
    padding: 0 20px;
    flex: 1;
}

.col-text {
    flex-basis: 50%;
}

.col-img {
    flex-basis: 50%;
}

.img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.img-wrapper img {
    border-radius: var(--radius);
    transition: transform 0.5s ease;
}

.img-wrapper:hover img {
    transform: scale(1.02);
}

.features-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature:hover {
    background: var(--bg-accent);
}

.feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.feature h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    min-width: 120px;
}

.experience-badge .years {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Treatments --- */
.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.treatment-item {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.treatment-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.treatment-img {
    height: 200px;
    overflow: hidden;
}

.treatment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.treatment-item:hover .treatment-img img {
    transform: scale(1.1);
}

.treatment-info {
    padding: 25px;
}

.treatment-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.treatment-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-text:hover {
    color: var(--primary-hover);
    padding-left: 5px;
}

.margin-top-40 {
    margin-top: 40px;
}

/* --- Concerns Pills --- */
.concern-icons-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.concern-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    padding: 25px 15px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.concern-box:hover {
    border-color: var(--primary-color);
    background: var(--bg-accent);
    transform: translateY(-3px);
}

.icon-circle {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.concern-box h4 {
    font-size: 0.95rem;
    margin: 0;
    color: var(--secondary-color);
    font-family: var(--font-body);
    font-weight: 500;
}

/* --- Gallery Section --- */
.bg-dark {
    background-color: #222;
    /* Clean dark grey instead of heavy teal */
}

.text-white {
    color: white;
}

.text-white h2 {
    color: white;
}

.text-white p {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-scroller {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0;
}

.gallery-scroller img {
    height: 250px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.gallery-scroller img:hover {
    transform: scale(1.02);
}

/* --- Page Specific: Treatments/Gallery Grids --- */
.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-page-item {
    height: 280px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-page-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.gallery-page-item:hover img {
    transform: scale(1.05);
}

/* --- Contact / Form --- */
.contact-item h3 {
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary-color);
}

.form-control {
    width: 100%;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: #fbfbfb;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(215, 21, 122, 0.1);
}

/* --- Footer --- */
footer {
    background-color: #f9f9f9;
    color: var(--text-light);
    padding: 80px 0 30px;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
}

.social-links a {
    font-size: 1.2rem;
    color: var(--text-light);
    /* clean grey */
    margin-right: 15px;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: #999;
}

/* --- Responsive --- */
@media (max-width: 900px) {

    /* Hide Desktop Elements on Mobile */
    .desktop-contact-buttons,
    .desktop-nav-link,
    .desktop-book-btn {
        display: none !important;
    }

    /* Hide Mobile Header Buttons (keep them only in side drawer) */
    .mobile-header-buttons {
        display: none !important;
    }

    /* Hamburger - Position to right of logo */
    .hamburger {
        display: block;
        margin-left: auto;
    }

    .header-contact-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 15px;
        background: #f9f9f9;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .header-contact-btn:hover {
        background: #f0f0f0;
        transform: translateY(-1px);
    }

    .header-contact-btn i {
        font-size: 1.8rem;
        min-width: 35px;
    }

    .call-btn i {
        color: #007bff;
    }

    .whatsapp-btn i {
        color: #25D366;
    }

    .header-contact-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .header-contact-label {
        font-size: 0.7rem;
        color: #666;
        text-transform: capitalize;
    }

    .header-contact-number {
        font-size: 0.95rem;
        font-weight: 600;
        color: #333;
    }

    .call-btn .header-contact-number {
        color: #007bff;
    }

    .whatsapp-btn .header-contact-number {
        color: #25D366;
    }

    .header-book-btn {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
        font-size: 0.9rem;
        margin-top: 5px;
    }

    /* Logo - Increase Size for Better Visibility */
    .logo img {
        height: 110px !important;
    }

    .main-nav {
        padding: 10px 0;
    }

    .nav-wrapper {
        max-width: 100%;
        overflow: visible;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* Layout & Text */
    .col-text,
    .col-img,
    .col-gallery {
        flex-basis: 100%;
        margin-bottom: 40px;
        padding: 0;
        /* Maximize width on mobile */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    /* Navigation */
    .hamburger {
        display: block;
        z-index: 1001;
        /* Ensure above menu */
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        /* Full width */
        max-width: none;
        /* Remove max-width restriction */
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 0;
        box-shadow: none;
        /* Remove shadow for full-screen */
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .nav-links.active {
        display: flex;
        animation: slideIn 0.3s ease-out;
    }

    @keyframes slideIn {
        from {
            transform: translateX(-100%);
        }

        to {
            transform: translateX(0);
        }
    }

    /* Mobile Menu Header */
    .mobile-menu-header {
        display: block;
        /* Override desktop display: none */
        background: white;
        padding: 30px 20px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }

    .mobile-menu-logo {
        width: 300px;
        height: auto;
        margin: 0 auto 25px;
        display: block;
    }

    .mobile-contact-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
    }

    .mobile-contact-btn {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 12px 15px;
        background: #f9f9f9;
        border-radius: 8px;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .mobile-contact-btn:hover {
        background: #f0f0f0;
        transform: translateY(-2px);
    }

    .mobile-contact-btn i {
        font-size: 2rem;
        min-width: 40px;
    }

    .call-btn i {
        color: #007bff;
    }

    .whatsapp-btn i {
        color: #25D366;
    }

    .contact-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-label {
        font-size: 0.75rem;
        color: #666;
        text-transform: capitalize;
    }

    .contact-number {
        font-size: 1rem;
        font-weight: 600;
        color: #333;
    }

    .call-btn .contact-number {
        color: #007bff;
    }

    .whatsapp-btn .contact-number {
        color: #25D366;
    }

    .mobile-book-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    /* Mobile Menu Links */
    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        padding: 20px 0;
    }

    .mobile-menu-links a {
        padding: 20px 30px;
        font-size: 1.3rem;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        text-align: center;
        /* Center the menu items */
    }

    .mobile-menu-links a:hover,
    .mobile-menu-links a.active {
        background: #f9f9f9;
        color: var(--primary-color);
    }

    .mobile-menu-links a.active {
        font-weight: 600;
        /* Make active link bold instead of left border */
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    /* Footer Links - Remove bullets and center */
    .footer-links ul {
        list-style: none;
        padding: 0;
    }

    .footer-links ul li {
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    /* Find Us / Locations Section */
    .locations-teaser .col-text {
        text-align: center;
    }

    .locations-list {
        padding-left: 0 !important;
        text-align: center;
    }

    .locations-list li {
        text-align: center;
    }

    .locations-teaser .btn {
        margin: 20px auto 0 !important;
        display: block;
        width: fit-content;
    }

    /* Row alignment for Find Us section */
    .row.align-center {
        text-align: center;
    }

    /* Why Choose Us Section - Center on Mobile */
    .why-choose-us .col-text {
        text-align: center;
    }

    .why-choose-us .section-tag {
        display: block;
        text-align: center;
    }

    .why-choose-us h2,
    .why-choose-us p {
        text-align: center;
    }

    .why-choose-us .btn {
        margin: 40px auto 0 !important;
        display: block;
        width: fit-content;
    }
}

/* --- Static Hero Section (New Design) --- */
.static-hero {
    position: relative;
    height: 90vh;
    width: 100%;
    margin-top: 50px;
    /* Offset for header */
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    /* Image takes up right side mostly */
    height: 100%;
    z-index: 1;
}

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

/* Gradient to blend image with white text area on left */
.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, #fff 10%, rgba(255, 255, 255, 0) 100%);
    z-index: 2;
}

.hero-content-static {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text-box {
    max-width: 550px;
    padding: 40px;
    /* No background needed if gradient works well, or add semi-transparent white */
}

@media (max-width: 900px) {

    /* Hero Section */
    .static-hero {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
        margin-top: 110px;
        /* Increased for taller stacked header */
        padding-bottom: 40px;
    }

    .hero-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-overlay-gradient {
        background: linear-gradient(to top, #fff 5%, rgba(255, 255, 255, 0) 100%);
    }

    .hero-content-static {
        width: 100%;
        padding: 40px 20px 20px;
    }

    .hero-text-box {
        text-align: center;
        margin: 0 auto;
        padding: 0;
    }

    .hero-text-box h1 {
        font-size: 2.5rem !important;
        /* Override inline styles */
    }

    .hero-btns-static {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-btns-static .btn {
        margin-left: 0 !important;
        margin-bottom: 10px;
    }

    /* Features List */
    .features-list {
        grid-template-columns: 1fr;
    }

    /* Stats Grid */
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }

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

    /* Treatment Grid - Single Column */
    .treatment-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Section Padding - Reduce for Mobile */
    .section-padding {
        padding: 50px 0;
    }

    /* Highlight Grid */
    .highlight-grid {
        gap: 30px;
    }

    /* Testimonial Grid */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* --- Social Media Hub --- */
.social-hub {
    background: #fff;
    overflow: hidden;
}

.social-header {
    text-align: center;
    margin-bottom: 40px;
}

.social-header i {
    font-size: 2rem;
    margin: 0 10px;
    background: -webkit-linear-gradient(#f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-header i.fa-youtube {
    background: none;
    -webkit-text-fill-color: #FF0000;
    color: #FF0000;
}

/* Reels Section */
.reels-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.reels-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.reel-card {
    min-width: 260px;
    height: 460px;
    /* 9:16 approx ratio */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background: #000;
}

.reel-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.reel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px;
    z-index: 2;
}

.reel-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 1.2rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
}

/* Insta Grid */
.insta-grid-wrapper {
    margin-top: 50px;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0;
    /* Tight grid like Insta */
}

.insta-item {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    cursor: pointer;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.insta-overlay i {
    color: white;
    font-size: 2rem;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-item:hover img {
    transform: scale(1.1);
}

.social-cta {
    text-align: center;
    margin-top: 40px;
}

/* --- Icon Highlights (Top Section) --- */
.icon-highlights {
    padding: 50px 0;
    text-align: center;
}

.highlight-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 200px;
}

.highlight-icon-circle {
    width: 80px;
    height: 80px;
    background: #D7157A;
    /* Pink from image */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.3);
}

.highlight-text h4 {
    color: #D7157A;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

/* --- Stats Banner --- */
.stats-banner {
    background: #D7157A;
    /* Solid pink background */
    padding: 60px 0;
    color: white;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-circle {
    background: white;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 5px solid rgba(255, 255, 255, 0.3);
    background-clip: padding-box;
}

.stat-circle h3 {
    color: #D7157A;
    font-size: 1.1rem;
    text-transform: capitalize;
    margin-bottom: 5px;
    font-weight: 700;
}

.stat-circle .number {
    color: #D7157A;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-body);
}

/* --- Testimonials --- */
.testimonials-section {
    padding: 80px 0;
    background: white;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    color: #D7157A;
    font-size: 2.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #f8bbd0;
    /* Light pink background */
    padding: 30px;
    text-align: center;
    border-radius: 4px;
    /* Square-ish cards as per image */
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.quote-icon {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 20px;
    display: block;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.patient-name {
    color: #D7157A;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
}

/* --- Stats Banner Redesign (Card Style) --- */
.stats-banner {
    background: linear-gradient(135deg, #fce4ec 0%, #fff0f5 100%);
    /* Light background to make white cards pop */
    padding: 80px 0;
}

.stat-card {
    background: white;
    padding: 30px 50px;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 200px;
    border-bottom: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-card .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-card .label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* --- WhatsApp Float Button --- */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
}

.whatsapp-float i {
    margin-top: 2px;
    /* Visual alignment fix */
}

/* Mobile Adjustment */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* --- Accessibility Widget --- */
.accessibility-btn {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background-color: #D7157A;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    transition: transform 0.3s ease;
}

.accessibility-btn:hover {
    transform: scale(1.1);
}

.accessibility-panel {
    display: none;
    position: fixed;
    bottom: 110px;
    left: 40px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10002;
    max-height: 80vh;
    overflow-y: auto;
    font-family: var(--font-body);
}

.accessibility-panel.active {
    display: block;
}

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.accessibility-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-panel {
    cursor: pointer;
    font-size: 1.2rem;
    color: #999;
}

.acc-section {
    margin-bottom: 20px;
}

.acc-section label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Controls */
.acc-controls {
    display: flex;
    gap: 10px;
    background: #f5f5f5;
    padding: 5px;
    border-radius: 8px;
}

.acc-btn {
    flex: 1;
    border: none;
    background: white;
    padding: 8px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-dark);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background 0.2s;
}

.acc-btn:hover {
    background: #eaeaea;
}

.acc-btn.active {
    background: var(--primary-color);
    color: white;
}

.acc-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 8px;
}

.toggle-switch {
    width: 50px;
    height: 26px;
    background: #ccc;
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    transition: transform 0.3s;
}

.toggle-switch.active {
    background: var(--primary-color);
}

.toggle-switch.active::after {
    transform: translateX(24px);
}

.reset-btn {
    width: 100%;
    padding: 12px;
    background: #dc354520;
    color: #dc3545;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.reset-btn:hover {
    background: #dc354530;
}

/* Accessibility Modes */
/* High Contrast */
body.acc-high-contrast {
    background-color: #000 !important;
    color: #fff !important;
}

body.acc-high-contrast * {
    background-color: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
    box-shadow: none !important;
}

body.acc-high-contrast img {
    filter: grayscale(100%);
}

body.acc-high-contrast .accessibility-panel,
body.acc-high-contrast .accessibility-panel * {
    background-color: #fff !important;
    color: #000 !important;
    border-color: #ccc !important;
}

body.acc-high-contrast .accessibility-btn {
    background-color: #fff !important;
    color: #000 !important;
}

/* Dyslexia Friendly */
body.acc-dyslexia {
    font-family: 'Verdana', 'Arial', sans-serif !important;
    line-height: 1.8 !important;
    letter-spacing: 0.05em !important;
}

/* Text Size Classes via HTML font-size manipulation or body classes */
html.text-small {
    font-size: 14px;
}

html.text-normal {
    font-size: 16px;
}

html.text-large {
    font-size: 20px;
}

/* Spacing */
body.spacing-relaxed p,
body.spacing-relaxed h1,
body.spacing-relaxed h2,
body.spacing-relaxed h3,
body.spacing-relaxed li {
    line-height: 2 !important;
}

body.spacing-loose p,
body.spacing-loose h1,
body.spacing-loose h2,
body.spacing-loose h3,
body.spacing-loose li {
    line-height: 2.5 !important;
}

/* Mobile Adjustment for Widget */
@media screen and (max-width: 768px) {
    .accessibility-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 24px;
    }

    .accessibility-panel {
        left: 20px;
        bottom: 80px;
        width: calc(100% - 40px);
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
}

/* Google Translate Styling Overrides */
.skiptranslate iframe {
    /* Hide top bar */
    /* top: 0; */
}

body {
    top: 0 !important;
}

.goog-te-gadget-simple {
    background-color: #f5f5f5 !important;
    border: none !important;
    padding: 10px !important;
    border-radius: 8px !important;
    font-family: var(--font-body) !important;
    width: 100%;
}

.goog-te-gadget-icon {
    display: none !important;
}

/* --- Facebook Float Button --- */
.facebook-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 180px;
    /* Positioned above Instagram button */
    right: 40px;
    background: #3b5998;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.facebook-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.facebook-float i {
    margin-top: 2px;
}

/* --- Instagram Float Button --- */
.instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 110px;
    /* Positioned above WhatsApp button */
    right: 40px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.instagram-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.instagram-float i {
    margin-top: 2px;
}

/* Mobile Adjustment for Instagram and Facebook */
@media screen and (max-width: 768px) {
    .facebook-float {
        width: 50px;
        height: 50px;
        bottom: 140px;
        /* Above Instagram (80px bottom + 50px height + 10px gap) */
        right: 20px;
        font-size: 25px;
    }

    .instagram-float {
        width: 50px;
        height: 50px;
        bottom: 80px;
        /* Above WhatsApp (20px bottom + 50px height + 10px gap) */
        right: 20px;
        font-size: 25px;
    }
}

/* --- Center Contact Details on Mobile --- */
@media screen and (max-width: 768px) {
    .contact-details {
        text-align: center;
    }

    .contact-item h3 {
        justify-content: center;
    }

    .contact-item p,
    .branch-item p,
    .branch-item strong {
        text-align: center;
        display: block;
        /* Ensure it takes full width to center effectively if needed */
    }

    .contact-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .branch-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* --- Center About Page Content on Mobile --- */
@media screen and (max-width: 768px) {
    .about-section .col-text {
        text-align: center;
    }

    .about-section ul li {
        justify-content: center;
        text-align: center;
    }

    .about-section .img-wrapper {
        margin: 0 auto;
    }
}