/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

:root {
    --color-black: #000000;
    --color-gold: #d4af37;
    --color-white: #ffffff;
    --color-dark-gray: #1a1a1a;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --gold-glow-strong: rgba(212, 175, 55, 0.6);
    
    /* Responsive font sizes - Optimized hierarchy */
    --fs-small: clamp(13px, 1.4vw, 15px);
    --fs-base: clamp(15px, 1.6vw, 17px);
    --fs-medium: clamp(17px, 2vw, 19px);
    --fs-large: clamp(20px, 2.8vw, 26px);
    --fs-xl: clamp(28px, 4vw, 40px);
    --fs-xxl: clamp(36px, 5.5vw, 56px);
    
    /* Responsive spacing - Improved consistency */
    --spacing-xs: clamp(0.5rem, 1.2vw, 0.875rem);
    --spacing-sm: clamp(0.875rem, 1.8vw, 1.25rem);
    --spacing-md: clamp(1.25rem, 2.5vw, 2rem);
    --spacing-lg: clamp(2rem, 3.5vw, 3rem);
    --spacing-xl: clamp(3rem, 5vw, 5rem);
    --spacing-xxl: clamp(4rem, 7vw, 7rem);
    
    /* Responsive container - Aligned with standards */
    --container-padding: clamp(1.25rem, 4vw, 3rem);
    --container-max-width: min(1200px, 92vw);
    
    /* Section vertical spacing */
    --section-padding-y: clamp(3.5rem, 6vw, 6rem);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: var(--fs-base);
    color: #2c3e50;
    line-height: 1.6;
    background-color: #f5f5f5;
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* ============================================
   HEADER STYLES
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-black);
    height: clamp(60px, 8vh, 85px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 10px;
    flex-shrink: 0;
    max-width: 70%;
}

.logo-img {
    height: clamp(40px, 6vh, 60px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--gold-glow));
    transition: filter 0.3s ease;
}

.logo-img:hover {
    filter: drop-shadow(0 0 12px var(--gold-glow-strong));
}

.logo-text {
    font-family: 'Belleza', sans-serif;
    font-size: clamp(16px, 2.5vw, 20px);
    font-weight: 400;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-shadow: 0 0 10px var(--gold-glow);
    text-transform: uppercase;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hide mobile line break on desktop */
.mobile-break {
    display: none;
}

/* Navigation Menu Styles */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--color-gold);
}

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

.nav-link.active {
    color: var(--color-gold);
}

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

/* Book Appointment Button */
.btn-appointment {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: clamp(20px, 3vw, 30px);
    padding: clamp(8px, 1.5vw, 10px) clamp(20px, 3vw, 25px);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(14px, 1.8vw, 16px);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 8px var(--gold-glow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-appointment::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-appointment:hover::before {
    width: 300px;
    height: 300px;
}

.btn-appointment:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 15px var(--gold-glow-strong);
    transform: translateY(-2px);
}

.btn-appointment:active {
    transform: translateY(0);
}

/* Mobile Call Button */
.mobile-call-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: clamp(50px, 12vw, 60px);
    height: clamp(50px, 12vw, 60px);
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px var(--gold-glow);
    transition: all 0.3s ease;
    flex-shrink: 0;
    font-size: clamp(22px, 5vw, 26px);
    text-decoration: none;
}

.mobile-call-btn:hover,
.mobile-call-btn:active {
    background-color: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 18px var(--gold-glow-strong);
    transform: scale(1.05);
}

.mobile-call-btn svg {
    width: 60%;
    height: 60%;
    display: block;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: var(--color-gold);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
    background-color: var(--color-gold);
}

/* Mobile Menu Drawer */
.mobile-menu-drawer {
    position: fixed;
    top: clamp(60px, 8vh, 85px);
    left: 0;
    width: 100%;
    height: calc(100vh - clamp(60px, 8vh, 85px));
    background-color: var(--color-dark-gray);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu-drawer.active {
    transform: translateX(0);
}

.mobile-nav {
    padding: 40px 20px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--color-white);
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 12px 0;
    display: block;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--color-gold);
}

.btn-appointment-mobile {
    width: 100%;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: 30px;
    padding: 15px 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 0 8px var(--gold-glow);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-appointment-mobile:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 15px var(--gold-glow-strong);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet Styles (≤992px) */
@media screen and (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .btn-appointment {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-container {
        padding: 0 20px;
    }
}

/* Mobile Styles (≤768px) */
@media screen and (max-width: 768px) {
    .main-header {
        height: auto;
        min-height: clamp(100px, 14vh, 120px);
    }

    .header-container {
        padding: clamp(14px, 3.5vw, 18px) clamp(12px, 3vw, 16px);
        gap: clamp(12px, 3vw, 16px);
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .logo-container {
        padding-left: 0;
        flex: 1;
        overflow: visible;
        gap: clamp(12px, 3vw, 16px);
        min-width: 0;
        max-width: calc(100% - 70px);
        align-items: center;
        display: flex;
        flex-direction: row;
    }

    .logo-img {
        height: clamp(55px, 10vh, 70px);
        width: auto;
        flex-shrink: 0;
        align-self: center;
    }

    .logo-text {
        font-size: clamp(17px, 4.2vw, 24px);
        white-space: normal;
        overflow: visible;
        line-height: 1.4;
        flex: 1;
        min-width: 0;
        text-overflow: clip;
        font-weight: 600;
        display: flex;
        align-items: center;
        align-self: center;
    }
    
    /* Show line break on mobile */
    .mobile-break {
        display: inline;
    }
    
    /* Hide hamburger menu on mobile */
    .mobile-menu-toggle {
        display: none !important;
    }
    
    /* Hide desktop navigation */
    .main-nav {
        display: none;
    }
    
    /* Hide desktop book appointment button */
    .btn-appointment {
        display: none;
    }
    
    /* Show call button instead */
    .mobile-call-btn {
        display: flex !important;
    }

    .mobile-menu-drawer {
        top: clamp(100px, 14vh, 120px);
        height: calc(100vh - clamp(100px, 14vh, 120px));
    }
    
    .nav-list {
        gap: clamp(20px, 4vw, 32px);
    }
}

/* Extra Small Mobile (≤480px) */
@media screen and (max-width: 480px) {
    .main-header {
        height: auto;
        min-height: clamp(90px, 12vh, 110px);
    }
    
    .logo-text {
        font-size: clamp(15px, 3.8vw, 20px);
        letter-spacing: 0.4px;
        line-height: 1.35;
        font-weight: 600;
    }
    
    .logo-container {
        gap: clamp(10px, 2.5vw, 14px);
        max-width: calc(100% - 60px);
    }
    
    .logo-img {
        height: clamp(50px, 9vh, 65px);
    }
    
    .header-container {
        gap: clamp(10px, 2.5vw, 12px);
        padding: clamp(12px, 3vw, 14px) clamp(10px, 2.5vw, 12px);
    }
    
    .mobile-call-btn {
        width: clamp(48px, 11vw, 56px);
        height: clamp(48px, 11vw, 56px);
    }
    
    .mobile-menu-drawer {
        top: clamp(90px, 12vh, 110px);
        height: calc(100vh - clamp(90px, 12vh, 110px));
    }
}

/* ============================================
   FILLER CONTENT STYLES (For Demo)
   ============================================ */
.hero-section {
    margin-top: clamp(60px, 8vh, 85px);
    padding: 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    min-height: clamp(500px, 75vh, 700px);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Adjust hero margin for mobile with larger header */
/* Mobile responsiveness */
@media screen and (max-width: 768px) {
    .hero-section {
        margin-top: clamp(100px, 14vh, 120px);
        min-height: clamp(450px, 65vh, 600px);
        padding: clamp(2rem, 5vw, 3rem) 0;
    }
}

@media screen and (max-width: 480px) {
    .hero-section {
        margin-top: clamp(90px, 12vh, 110px);
        min-height: clamp(400px, 60vh, 550px);
        padding: clamp(1.5rem, 4vw, 2.5rem) 0;
    }
}

/* Video Background Styles */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Translucent White Gradient Overlay */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(245, 245, 245, 0.8) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 3rem) var(--container-padding);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
    min-height: 100%;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    width: 100%;
    padding: 0 clamp(1rem, 2vw, 2rem);
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-xxl);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: var(--spacing-md);
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: var(--fs-medium);
    color: #555;
    margin-bottom: var(--spacing-md);
    line-height: 1.75;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-locality {
    font-size: var(--fs-small);
    color: #777;
    font-style: italic;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: clamp(25px, 3vw, 35px);
    padding: clamp(14px, 2vw, 16px) clamp(32px, 4vw, 40px);
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-base);
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--section-padding-y) var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-xl);
    font-weight: 800;
    color: #2c3e50;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

/* ============================================
   CLINIC TIMINGS SECTION
   ============================================ */
.timings-section {
    padding: clamp(2rem, 4vw, 3rem) 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.timings-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

.timings-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.timings-icon {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 8vw, 80px);
    height: clamp(60px, 8vw, 80px);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    flex-shrink: 0;
}

.timings-icon svg {
    width: clamp(35px, 5vw, 45px);
    height: clamp(35px, 5vw, 45px);
}

.timings-info {
    flex: 1;
    min-width: 280px;
    max-width: 500px;
}

.timings-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-large);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.timings-schedule {
    display: flex;
    flex-direction: column;
    gap: clamp(0.6rem, 1.5vw, 1rem);
}

.timings-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(1rem, 2vw, 2rem);
    padding: clamp(0.6rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.5rem);
    background: rgba(255, 255, 255, 0.05);
    border-radius: clamp(8px, 1.5vw, 12px);
    border-left: 3px solid var(--color-gold);
    transition: all 0.3s ease;
}

.timings-row:hover {
    background: rgba(255, 255, 255, 0.08);
    border-left-width: 5px;
    transform: translateX(5px);
}

.timings-day {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 500;
    color: var(--color-white);
    flex: 1;
}

.timings-hours {
    font-size: clamp(14px, 2vw, 17px);
    font-weight: 600;
    color: var(--color-gold);
    white-space: nowrap;
}

.timings-cta {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.btn-timings-contact {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.5vw, 12px);
    padding: clamp(12px, 2vw, 16px) clamp(24px, 3vw, 32px);
    background: var(--color-gold);
    color: var(--color-black);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 600;
    border: none;
    border-radius: clamp(8px, 1.5vw, 12px);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-timings-contact:hover {
    background: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 25px var(--gold-glow-strong);
    transform: translateY(-2px);
}

.btn-timings-contact svg {
    width: clamp(18px, 2.5vw, 22px);
    height: clamp(18px, 2.5vw, 22px);
}

/* Desktop: Show WhatsApp, Hide Call */
.desktop-whatsapp {
    display: flex;
}

.mobile-call {
    display: none;
}

.mobile-text {
    display: none;
}

.desktop-text {
    display: inline;
}

/* Mobile Styles for Timings */
@media screen and (max-width: 768px) {
    .timings-content {
        flex-direction: column;
        gap: clamp(1.5rem, 4vw, 2rem);
        text-align: center;
    }
    
    .timings-info {
        width: 100%;
        max-width: 100%;
    }
    
    .timings-row {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .timings-day,
    .timings-hours {
        text-align: center;
    }
    
    /* Mobile: Hide WhatsApp, Show Call */
    .desktop-whatsapp {
        display: none;
    }
    
    .mobile-call {
        display: flex;
    }
    
    /* Show call button in modal on mobile */
    .mobile-only-btn {
        display: inline-block;
    }
}

/* ============================================
   SERVICES SECTION - CAROUSEL STYLES
   ============================================ */
.services-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: var(--section-padding-y) 0;
    margin-top: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Mobile/Desktop visibility */
/* Mobile-only elements (accordion) - hidden on desktop */
.mobile-only {
    display: none !important;
}

/* Desktop carousel - visible by default */
.services-swiper {
    display: block;
}

@media screen and (max-width: 768px) {
    /* Show accordion on mobile */
    .mobile-only {
        display: block !important;
    }
    
    /* Hide carousel on mobile */
    .services-swiper {
        display: none !important;
    }
}

.services-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.services-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.3px;
    padding: 0 var(--container-padding);
    line-height: 1.2;
}

.services-intro {
    font-size: var(--fs-base);
    color: #e0e0e0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
    line-height: 1.7;
    padding: 0 var(--container-padding);
}

.services-swiper {
    padding: var(--spacing-md) 0 var(--spacing-lg) 0;
    overflow: visible;
    position: relative;
}

.services-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: clamp(1.25rem, 2.5vw, 1.75rem) clamp(1rem, 2vw, 1.5rem);
    border-radius: clamp(15px, 2.5vw, 20px);
    text-align: center;
    border: clamp(1.5px, 0.3vw, 2px) solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 360px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    gap: clamp(0.625rem, 1.2vw, 0.875rem);
}

.service-card-dark {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
}

.service-card-light {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 30px var(--gold-glow);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(70px, 12vw, 85px);
    height: clamp(70px, 12vw, 85px);
    border-radius: 50%;
    background-color: var(--color-white);
    border: clamp(2px, 0.4vw, 3px) solid var(--color-gold);
    margin: 0;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: clamp(10px, 2vw, 14px);
    box-sizing: border-box;
    flex-shrink: 0;
}

.service-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    box-shadow: 0 0 25px var(--gold-glow), 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
    border-color: var(--color-gold);
    border-width: 4px;
}


.service-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(17px, 2.2vw, 20px);
    font-weight: 600;
    color: var(--color-gold);
    margin: 0;
    letter-spacing: 0.3px;
    flex-shrink: 0;
    line-height: 1.3;
}

.service-description {
    color: #e0e0e0;
    line-height: 1.65;
    font-size: clamp(13px, 1.5vw, 14px);
    margin: 0;
    flex-grow: 0;
    text-align: center;
}

.btn-view-treatments {
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: clamp(20px, 2.5vw, 25px);
    padding: clamp(10px, 1.6vw, 12px) clamp(20px, 3vw, 28px);
    font-family: 'Poppins', sans-serif;
    font-size: clamp(13px, 1.6vw, 15px);
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.3px;
    box-shadow: 0 0 12px var(--gold-glow);
    transition: all 0.3s ease;
    width: 100%;
    margin: auto 0 0 0;
    flex-shrink: 0;
}

.btn-view-treatments:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px var(--gold-glow-strong);
    transform: translateY(-2px);
}

/* Swiper Navigation Buttons */
.services-swiper .swiper-button-next,
.services-swiper .swiper-button-prev {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    width: clamp(40px, 6vw, 50px);
    height: clamp(40px, 6vw, 50px);
    border-radius: 50%;
    border: clamp(1.5px, 0.3vw, 2px) solid var(--color-gold);
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.services-swiper .swiper-button-prev {
    left: 0;
}

.services-swiper .swiper-button-next {
    right: 0;
}

.services-swiper .swiper-button-next:hover,
.services-swiper .swiper-button-prev:hover {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 0 15px var(--gold-glow);
    transform: translateY(-50%) scale(1.1);
}

.services-swiper .swiper-button-next::after,
.services-swiper .swiper-button-prev::after {
    font-size: clamp(16px, 2.8vw, 20px);
    font-weight: bold;
}

/* Swiper Pagination - HIDDEN */
.services-swiper .swiper-pagination {
    display: none !important;
}

/* ============================================
   MOBILE ACCORDION STYLES
   ============================================ */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 3vw, 16px);
    padding: var(--spacing-md) 0;
}

.accordion-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: clamp(1.5px, 0.3vw, 2px) solid rgba(212, 175, 55, 0.3);
    border-radius: clamp(12px, 2.5vw, 16px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active {
    border-color: var(--color-gold);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7), 0 0 20px var(--gold-glow);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: clamp(10px, 2.5vw, 12px);
    padding: clamp(12px, 3vw, 14px) clamp(12px, 3vw, 14px);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:active {
    background: rgba(212, 175, 55, 0.05);
}

.accordion-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(48px, 11vw, 55px);
    height: clamp(48px, 11vw, 55px);
    border-radius: 50%;
    background-color: var(--color-white);
    border: clamp(2px, 0.4vw, 2.5px) solid var(--color-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    overflow: hidden;
    padding: clamp(8px, 2vw, 10px);
    box-sizing: border-box;
    flex-shrink: 0;
}

.accordion-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.accordion-item.active .accordion-icon-wrapper {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--gold-glow), 0 6px 12px rgba(0, 0, 0, 0.3);
    border-width: 3px;
}

.accordion-title {
    font-family: 'Montserrat', sans-serif;
    flex: 1;
    font-size: clamp(14px, 3.6vw, 17px);
    font-weight: 600;
    color: var(--color-gold);
    margin: 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.accordion-toggle {
    font-size: clamp(24px, 6vw, 28px);
    font-weight: 300;
    color: var(--color-gold);
    width: clamp(32px, 8vw, 36px);
    height: clamp(32px, 8vw, 36px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-toggle {
    transform: rotate(45deg);
    background: rgba(212, 175, 55, 0.2);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 clamp(12px, 3vw, 14px);
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 clamp(12px, 3vw, 14px) clamp(14px, 3.5vw, 16px);
}

.accordion-description {
    color: #e0e0e0;
    font-size: clamp(12px, 3.2vw, 14px);
    line-height: 1.65;
    margin-bottom: clamp(12px, 3vw, 14px);
}

.accordion-content .btn-view-treatments {
    width: 100%;
    margin-top: 0;
}

/* ============================================
   MODAL STYLES
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border: clamp(1.5px, 0.3vw, 2px) solid var(--color-gold);
    border-radius: clamp(15px, 2.5vw, 20px);
    padding: var(--spacing-xl);
    max-width: min(500px, 90vw);
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px var(--gold-glow);
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--color-gold);
    font-size: 32px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: rotate(90deg);
}

.modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: var(--spacing-md);
    text-align: center;
    letter-spacing: 0.5px;
}

.modal-treatments {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.modal-treatments li {
    color: #e0e0e0;
    padding: var(--spacing-sm) 0;
    padding-left: clamp(20px, 4vw, 30px);
    position: relative;
    font-size: var(--fs-base);
    line-height: 1.6;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-treatments li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 18px;
}

.modal-treatments li:last-child {
    border-bottom: none;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn-call-now,
.btn-whatsapp {
    flex: 1;
    padding: clamp(12px, 2vw, 14px) clamp(20px, 3vw, 25px);
    border-radius: clamp(20px, 3vw, 25px);
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-base);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-call-now {
    background-color: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 0 10px var(--gold-glow);
}

.btn-call-now:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px var(--gold-glow-strong);
    transform: translateY(-2px);
}

/* Hide call button on desktop in modal */
.mobile-only-btn {
    display: none;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background-color: #20BA5A;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
    transform: translateY(-2px);
}

/* Desktop: WhatsApp button takes full width when call button is hidden */
@media screen and (min-width: 769px) {
    .modal-actions .btn-whatsapp {
        flex: 1;
        max-width: 100%;
    }
}

/* Responsive Services Section */

/* Desktop - arrows positioned with better visibility */
@media screen and (min-width: 769px) {
    .services-swiper .swiper-button-prev {
        left: 10px;
    }
    
    .services-swiper .swiper-button-next {
        right: 10px;
    }
}

@media screen and (max-width: 992px) {
    .services-container {
        padding: 0 var(--spacing-md);
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: var(--spacing-xl) 0;
    }

    .services-container {
        padding: 0 var(--spacing-sm);
    }

    .services-swiper .swiper-button-next,
    .services-swiper .swiper-button-prev {
        display: none;
    }
    
    .service-card {
        min-height: 320px;
        padding: clamp(1.25rem, 3.5vw, 1.75rem) clamp(1rem, 2.5vw, 1.5rem);
        gap: clamp(0.625rem, 1.5vw, 0.875rem);
    }
    
    .service-icon-wrapper {
        width: clamp(65px, 14vw, 75px);
        height: clamp(65px, 14vw, 75px);
        margin: 0;
    }
    
    .service-title {
        font-size: clamp(16px, 3.8vw, 19px);
        margin: 0;
    }
    
    .service-description {
        font-size: clamp(12px, 3.2vw, 14px);
        line-height: 1.6;
        margin: 0;
    }
    
    .btn-view-treatments {
        padding: clamp(10px, 2.5vw, 12px) clamp(18px, 4vw, 24px);
        font-size: clamp(13px, 3.2vw, 15px);
    }

    /* Responsive Modal */
    .modal-content {
        padding: var(--spacing-lg) var(--spacing-md);
        width: 95%;
    }

    .modal-actions {
        flex-direction: column;
    }

    .btn-call-now,
    .btn-whatsapp {
        width: 100%;
    }
}

/* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
.reviews-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: var(--section-padding-y) 0;
    margin-top: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.reviews-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

.reviews-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--spacing-xl);
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.reviews-summary {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    border-radius: clamp(10px, 2vw, 15px);
    border: clamp(1.5px, 0.3vw, 2px) solid rgba(212, 175, 55, 0.3);
}

.rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.rating-number {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 700;
    color: var(--color-gold);
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 5px;
    font-size: clamp(24px, 4vw, 32px);
}

.star {
    color: var(--color-gold);
}

.star.empty {
    color: rgba(212, 175, 55, 0.3);
}

.rating-text {
    font-size: var(--fs-base);
    color: #e0e0e0;
    margin-top: var(--spacing-xs);
}

.reviews-swiper {
    padding: var(--spacing-md) 0 var(--spacing-lg) 0;
    overflow: visible;
}

.reviews-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.review-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: var(--spacing-lg);
    border-radius: clamp(10px, 2vw, 15px);
    border: clamp(1.5px, 0.3vw, 2px) solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    min-height: 250px;
    height: auto;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 25px var(--gold-glow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.review-author-photo {
    width: clamp(45px, 8vw, 60px);
    height: clamp(45px, 8vw, 60px);
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-gold);
}

.review-author-info {
    flex: 1;
}

.review-author-name {
    font-size: var(--fs-medium);
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 4px;
}

.review-stars {
    display: flex;
    gap: 3px;
    font-size: var(--fs-medium);
}

.review-time {
    font-size: var(--fs-small);
    color: #999;
    margin-top: 4px;
}

.review-text {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: var(--fs-base);
    flex-grow: 1;
    font-style: italic;
    position: relative;
}

.review-text.truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text.expanded {
    display: block;
}

.read-more-btn {
    display: inline-block;
    color: var(--color-gold);
    font-weight: 600;
    cursor: pointer;
    margin-top: var(--spacing-xs);
    font-size: var(--fs-small);
    text-decoration: none;
    transition: all 0.3s ease;
    font-style: normal;
}

.read-more-btn:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.review-loading {
    text-align: center;
    color: #e0e0e0;
    padding: var(--spacing-xl);
    font-size: var(--fs-medium);
}

/* Reviews Swiper Navigation */
.reviews-swiper .swiper-button-next,
.reviews-swiper .swiper-button-prev {
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    width: clamp(35px, 6vw, 45px);
    height: clamp(35px, 6vw, 45px);
    border-radius: 50%;
    border: clamp(1.5px, 0.3vw, 2px) solid var(--color-gold);
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-button-next:hover,
.reviews-swiper .swiper-button-prev:hover {
    background: var(--color-gold);
    color: var(--color-black);
    box-shadow: 0 0 15px var(--gold-glow);
}

.reviews-swiper .swiper-button-next::after,
.reviews-swiper .swiper-button-prev::after {
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: bold;
}

/* Reviews Swiper Pagination */
.reviews-swiper .swiper-pagination-bullet {
    background: rgba(212, 175, 55, 0.5);
    width: clamp(10px, 1.5vw, 12px);
    height: clamp(10px, 1.5vw, 12px);
    transition: all 0.3s ease;
}

.reviews-swiper .swiper-pagination-bullet-active {
    background: var(--color-gold);
    box-shadow: 0 0 10px var(--gold-glow);
    transform: scale(1.2);
}

.reviews-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.btn-read-all-reviews {
    display: inline-block;
    background-color: var(--color-gold);
    color: var(--color-black);
    border: none;
    border-radius: clamp(20px, 3vw, 25px);
    padding: clamp(12px, 2vw, 14px) clamp(25px, 4vw, 35px);
    font-family: 'Poppins', sans-serif;
    font-size: var(--fs-base);
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px var(--gold-glow);
    transition: all 0.3s ease;
}

.btn-read-all-reviews:hover {
    background-color: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 20px var(--gold-glow-strong);
    transform: translateY(-2px);
}

/* Responsive Reviews Section */
@media screen and (max-width: 992px) {
    .reviews-container {
        padding: 0 var(--spacing-md);
    }
}

@media screen and (max-width: 768px) {
    .reviews-section {
        padding: var(--spacing-xl) 0;
    }

    .reviews-container {
        padding: 0 var(--spacing-sm);
    }

    .reviews-swiper .swiper-button-next,
    .reviews-swiper .swiper-button-prev {
        display: none;
    }
    
    .review-header {
        flex-direction: column;
        text-align: center;
    }
}

.about-section,
.contact-section {
    background: white;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
}

.about-text,
.contact-text {
    font-size: var(--fs-medium);
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-xl) auto;
    line-height: 1.8;
}

/* Contact Section Styles */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.contact-info-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: clamp(12px, 2vw, 18px);
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-info-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 0 20px rgba(212, 175, 55, 0.15);
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(60px, 10vw, 70px);
    height: clamp(60px, 10vw, 70px);
    background: linear-gradient(135deg, var(--color-gold) 0%, #c9a336 100%);
    color: var(--color-black);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 18px rgba(212, 175, 55, 0.4);
}

.contact-info-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-large);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.3px;
}

.contact-info-link {
    font-size: var(--fs-base);
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-info-link:hover {
    color: #2c3e50;
    transform: scale(1.05);
}

.contact-address {
    line-height: 1.7;
    text-align: center;
}

.contact-info-text {
    font-size: var(--fs-base);
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.about-text strong {
    color: var(--color-gold);
    font-weight: 600;
}

.about-image-container {
    max-width: 900px;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    padding: clamp(12px, 2vw, 20px);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: clamp(15px, 2.5vw, 25px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: clamp(10px, 2vw, 18px);
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.doctors-image-container {
    max-width: 600px;
    margin: clamp(2rem, 4vw, 3rem) auto 0;
    padding: clamp(12px, 2vw, 20px);
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-radius: clamp(15px, 2.5vw, 25px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

.doctors-img {
    width: 100%;
    height: auto;
    border-radius: clamp(10px, 2vw, 18px);
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.about-doctors-text {
    font-size: var(--fs-base);
    color: #555;
    text-align: left;
    max-width: 900px;
    margin: clamp(2rem, 4vw, 3rem) auto;
    line-height: 1.9;
    padding: 0 var(--container-padding);
}

.about-doctors-text strong {
    color: var(--color-gold);
    font-weight: 600;
}

/* About Us Read More Button */
.about-read-more-container {
    text-align: center;
    margin: clamp(2rem, 4vw, 3rem) auto;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: clamp(12px, 2vw, 16px) clamp(28px, 4vw, 40px);
    background: linear-gradient(135deg, var(--color-gold) 0%, #b8941f 100%);
    color: var(--color-black);
    border: none;
    border-radius: clamp(25px, 3vw, 30px);
    font-size: var(--fs-base);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.5px;
}

.btn-read-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #e5c158 0%, var(--color-gold) 100%);
}

.btn-read-more:active {
    transform: translateY(0);
}

.read-more-icon {
    transition: transform 0.3s ease;
}

.btn-read-more.expanded .read-more-icon {
    transform: rotate(180deg);
}

/* Expandable Content */
.about-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
}

.about-expandable-content.expanded {
    max-height: 3000px; /* Large enough to accommodate content */
    opacity: 1;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: clamp(20px, 4vw, 30px);
    right: clamp(20px, 4vw, 30px);
    width: clamp(55px, 10vw, 65px);
    height: clamp(55px, 10vw, 65px);
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6), 0 4px 10px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #20BA5A 0%, #1da851 100%);
}

.whatsapp-float:active {
    transform: scale(1.05);
}

.whatsapp-icon {
    width: 60%;
    height: 60%;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover .whatsapp-icon {
    transform: rotate(15deg);
}

/* Pulsing animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
    .whatsapp-float {
        bottom: clamp(15px, 3vw, 20px);
        right: clamp(15px, 3vw, 20px);
        width: clamp(50px, 12vw, 60px);
        height: clamp(50px, 12vw, 60px);
    }
}

/* ============================================
   APPOINTMENT BOOKING MODAL
   ============================================ */
.appointment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    overflow-y: auto;
    padding: clamp(1rem, 3vw, 2rem);
    backdrop-filter: blur(5px);
}

.appointment-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.appointment-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: clamp(2rem, 5vw, 3rem);
    border-radius: clamp(15px, 3vw, 25px);
    max-width: 600px;
    width: 100%;
    position: relative;
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(212, 175, 55, 0.2);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.appointment-modal-close {
    position: absolute;
    top: clamp(1rem, 3vw, 1.5rem);
    right: clamp(1rem, 3vw, 1.5rem);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    width: clamp(35px, 6vw, 40px);
    height: clamp(35px, 6vw, 40px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.appointment-modal-close:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: rotate(90deg);
}

.appointment-modal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: clamp(0.5rem, 2vw, 1rem);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.appointment-modal-subtitle {
    font-size: clamp(14px, 2.5vw, 16px);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: clamp(1.2rem, 3vw, 1.5rem);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: clamp(0.4rem, 1.5vw, 0.6rem);
}

.form-group label {
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: clamp(12px, 2.5vw, 14px) clamp(14px, 3vw, 16px);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: clamp(8px, 1.5vw, 10px);
    color: var(--color-white);
    font-size: clamp(14px, 2.5vw, 16px);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--color-white);
}

/* Date Input Styling */
.date-input-wrapper {
    position: relative;
    width: 100%;
}

.date-input-wrapper input[type="date"] {
    width: 100%;
    position: relative;
}

/* Hide the default date placeholder when empty */
.date-input-wrapper input[type="date"]:not(:focus):invalid {
    color: transparent;
}

/* Show placeholder text when date is not selected */
.date-input-wrapper input[type="date"]:not(:focus):invalid::before {
    content: 'Choose appointment date';
    color: rgba(255, 255, 255, 0.4);
    position: absolute;
    left: clamp(14px, 3vw, 16px);
    top: 50%;
    transform: translateY(-50%);
}

.date-input-wrapper input[type="date"]:focus,
.date-input-wrapper input[type="date"]:valid {
    color: var(--color-white);
}

/* For webkit browsers (Chrome, Safari) - hide default placeholder */
.date-input-wrapper input[type="date"]::-webkit-datetime-edit-text,
.date-input-wrapper input[type="date"]::-webkit-datetime-edit-month-field,
.date-input-wrapper input[type="date"]::-webkit-datetime-edit-day-field,
.date-input-wrapper input[type="date"]::-webkit-datetime-edit-year-field {
    color: transparent;
}

.date-input-wrapper input[type="date"]:focus::-webkit-datetime-edit-text,
.date-input-wrapper input[type="date"]:focus::-webkit-datetime-edit-month-field,
.date-input-wrapper input[type="date"]:focus::-webkit-datetime-edit-day-field,
.date-input-wrapper input[type="date"]:focus::-webkit-datetime-edit-year-field,
.date-input-wrapper input[type="date"]:valid::-webkit-datetime-edit-text,
.date-input-wrapper input[type="date"]:valid::-webkit-datetime-edit-month-field,
.date-input-wrapper input[type="date"]:valid::-webkit-datetime-edit-day-field,
.date-input-wrapper input[type="date"]:valid::-webkit-datetime-edit-year-field {
    color: var(--color-white);
}

/* Style calendar icon */
.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    filter: invert(1);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.date-input-wrapper input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-appointment-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 2vw, 12px);
    padding: clamp(14px, 3vw, 16px) clamp(24px, 4vw, 32px);
    background: var(--color-gold);
    color: var(--color-black);
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    border: none;
    border-radius: clamp(10px, 2vw, 12px);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: clamp(0.5rem, 2vw, 1rem);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-appointment-submit:hover {
    background: var(--color-black);
    color: var(--color-gold);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 25px var(--gold-glow-strong);
    transform: translateY(-2px);
}

.btn-appointment-submit:active {
    transform: translateY(0);
}

.btn-appointment-submit svg {
    width: clamp(18px, 3vw, 20px);
    height: clamp(18px, 3vw, 20px);
}

/* Honeypot field (invisible spam trap) */
.honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Mobile adjustments for appointment modal */
@media screen and (max-width: 768px) {
    .appointment-modal {
        padding: clamp(0.5rem, 2vw, 1rem);
    }
    
    .appointment-modal-content {
        padding: clamp(1.5rem, 4vw, 2rem);
        max-width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .hero-container {
        padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    }

    .hero-title {
        font-size: clamp(28px, 6.5vw, 40px);
        margin-bottom: clamp(1rem, 3vw, 1.5rem);
    }
    
    .hero-description {
        font-size: clamp(15px, 3.5vw, 18px);
        margin-bottom: clamp(1.5rem, 4vw, 2rem);
    }
    
    .hero-actions {
        margin-top: clamp(1rem, 3vw, 1.5rem);
    }
    
    .btn-primary {
        padding: clamp(14px, 3.5vw, 18px) clamp(28px, 6vw, 38px);
        font-size: clamp(15px, 3.5vw, 18px);
        border-radius: clamp(25px, 4vw, 30px);
    }

    .container {
        padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 5vw, 2.5rem);
    }

    .section-title {
        font-size: clamp(26px, 6vw, 36px);
        margin-bottom: var(--spacing-md);
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .contact-info-item {
        padding: var(--spacing-md);
    }
}

/* ============================================
   COMPREHENSIVE MOBILE OPTIMIZATION
   ============================================ */

/* Prevent horizontal scrolling globally */
@media screen and (max-width: 768px) {
    /* Force all containers to respect viewport */
    * {
        max-width: 100vw;
    }
    
    html,
    body {
        overflow-x: hidden !important;
        width: 100vw !important;
        position: relative;
    }
    
    /* Ensure all sections stay within viewport */
    section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    /* Container constraints */
    .container,
    .hero-container,
    .services-container,
    .about-container,
    .reviews-container,
    .contact-container,
    .timings-container {
        max-width: 100vw !important;
        width: 100% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        padding-left: clamp(1rem, 4vw, 2rem) !important;
        padding-right: clamp(1rem, 4vw, 2rem) !important;
    }
    
    /* Modal responsiveness - prevent overflow */
    .modal,
    .appointment-modal {
        width: 100vw !important;
        overflow-x: hidden !important;
        padding: 1rem !important;
        box-sizing: border-box !important;
    }
    
    .modal-content,
    .appointment-modal-content {
        max-width: calc(100vw - 2rem) !important;
        width: 95% !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }
    
    /* Form inputs - prevent zoom and overflow */
    input,
    select,
    textarea,
    button {
        max-width: 100% !important;
        font-size: 16px !important; /* Prevents iOS zoom */
        box-sizing: border-box !important;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Images and videos - stay within bounds */
    img,
    video,
    iframe,
    svg {
        max-width: 100% !important;
        height: auto !important;
        display: block;
    }
    
    /* Service cards and accordion */
    .service-card,
    .accordion-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Review cards */
    .review-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    .review-text {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
        word-break: break-word !important;
    }
    
    /* Header - ensure it doesn't overflow but maintain proper layout */
    .main-header {
        width: 100vw !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
    
    .header-container {
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    /* Header logo - special handling */
    .logo-container {
        display: flex !important;
        align-items: center !important;
        flex: 1 !important;
        min-width: 0 !important;
        max-width: calc(100% - 70px) !important;
        overflow: visible !important;
    }
    
    .logo-img {
        flex-shrink: 0 !important;
        width: auto !important;
        height: clamp(55px, 10vh, 70px) !important;
    }
    
    .logo-text {
        flex: 1 !important;
        min-width: 0 !important;
        overflow: visible !important;
        white-space: normal !important;
        line-height: 1.4 !important;
        word-break: normal !important;
    }
    
    /* Text content - prevent overflow (but not in header) */
    .hero-section h1,
    .hero-section h2,
    .hero-section p,
    section:not(.main-header) h1,
    section:not(.main-header) h2,
    section:not(.main-header) h3,
    section:not(.main-header) h4,
    section:not(.main-header) h5,
    section:not(.main-header) h6,
    section:not(.main-header) p {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    /* Buttons - stay within bounds */
    .btn-primary,
    .btn-appointment,
    .btn-timings-contact,
    .btn-view-treatments,
    .btn-call-now,
    .btn-whatsapp,
    .btn-appointment-submit {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* WhatsApp float button - ensure visible but not causing overflow */
    .whatsapp-float {
        position: fixed !important;
        right: clamp(1rem, 4vw, 1.5rem) !important;
        bottom: clamp(1rem, 4vw, 1.5rem) !important;
        width: clamp(50px, 12vw, 60px) !important;
        height: clamp(50px, 12vw, 60px) !important;
    }
    
    /* Contact info cards */
    .contact-info-grid {
        max-width: 100% !important;
        width: 100% !important;
        overflow-x: hidden !important;
    }
    
    .contact-info-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-info-link,
    .contact-address {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
    
    /* Swiper carousel - hide overflow properly on mobile */
    .swiper-container,
    .services-swiper,
    .reviews-swiper {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Navigation arrows - hide on mobile */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }
    
    /* About section images */
    .about-image-container,
    .doctors-image-container {
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .about-img,
    .doctors-img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    /* Timings section */
    .timings-section {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    /* Hero section video - ensure full coverage on mobile */
    .hero-video-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-width: 100% !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 0 !important;
    }
    
    .hero-video-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }
    
    .hero-section {
        position: relative !important;
        overflow: hidden !important;
    }
    
    .hero-container {
        position: relative !important;
        z-index: 2 !important;
    }
    
    /* Treatment list in modal */
    .treatment-list {
        max-width: 100% !important;
        padding-left: 1.5rem !important;
    }
    
    .treatment-list li {
        max-width: 100% !important;
        overflow-wrap: break-word !important;
        word-wrap: break-word !important;
    }
}

/* Extra precautions for very small screens */
@media screen and (max-width: 480px) {
    .modal-content,
    .appointment-modal-content {
        max-width: calc(100vw - 1.5rem) !important;
        width: 92% !important;
        padding: clamp(1rem, 4vw, 1.5rem) !important;
    }
    
    .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: var(--section-padding-y) 0 var(--spacing-lg) 0;
    color: var(--color-white);
}

.footer-map-container {
    margin-bottom: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.footer-map-title {
    font-family: 'Montserrat', sans-serif;
    font-size: var(--fs-large);
    font-weight: 700;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.footer-map {
    width: 100%;
    height: 300px;
    border-radius: clamp(10px, 2vw, 15px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.footer-locality {
    font-size: var(--fs-base);
    color: #e0e0e0;
    text-align: center;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg) auto;
    padding: 0 var(--container-padding);
}

.footer-copyright {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: var(--spacing-md);
}

.footer-copyright p {
    font-size: var(--fs-small);
    color: #999;
    margin: 0;
}

/* Mobile adjustments for footer */
@media screen and (max-width: 768px) {
    .footer-map {
        height: 250px;
    }
    
    .footer-locality {
        font-size: var(--fs-small);
    }
}

