:root {
    /* Primary Pink - Light & Classy */
    --primary-pink: #FFB6C8;
    --primary-pink-light: #FFF0F5;
    --primary-pink-lighter: #FFF5F9;
    --primary-pink-dark: #FFA0B8;
    
    /* Neutral Greys */
    --grey-50: #FAFAFA;
    --grey-100: #F5F5F5;
    --grey-200: #E8E8E8;
    --grey-300: #D4D4D4;
    --grey-400: #A0A0A0;
    --grey-500: #737373;
    --grey-600: #525252;
    --grey-700: #404040;
    --grey-800: #262626;
    --grey-900: #171717;
    
    --white: #FFFFFF;
    --black: #000000;
    
    --gradient-primary: linear-gradient(135deg, #FFB6C8 0%, #FFA0B8 100%);
    --gradient-light: linear-gradient(135deg, #FFF5F9 0%, #FFF0F5 100%);
    --gradient-dark: linear-gradient(135deg, #404040 0%, #171717 100%);
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--grey-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--grey-900);
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--grey-800);
    position: relative;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.cta-button {
    background: var(--primary-pink);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
}

/* Hero Slider */
.hero-slider-section {
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.slider-container {

    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
}

.slide-subtitle {
    display: inline-block;
    background: rgba(255, 182, 200, 0.95);
    color: #171717;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.slide-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 4rem);
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 600px;
    line-height: 1.8;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.slide-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #FFFFFF;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: #171717;
}

/* Slider Controls - FIXED SIZES */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
    color: var(--primary-pink);
}

.slider-btn:hover i {
    color: #FFFFFF;
}

.slider-btn.prev {
    left: 1rem;
}

.slider-btn.next {
    right: 1rem;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFFFFF;
    width: 30px;
    border-radius: 5px;
}

/* Reviews Bar */
.reviews-bar {
    background: #FFFFFF;
    padding: 1.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.reviews-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.review-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-icon i {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.review-icon.practo {
    background: linear-gradient(135deg, #00D8A1 0%, #00B489 100%);
}

.review-icon.trust {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars i {
    color: #FFB82E;
    font-size: 0.9rem;
}

.review-text {
    color: #525252;
    font-size: 0.85rem;
    font-weight: 500;
}

.review-text a {
    color: inherit;
}

.review-count {
    font-size: 1.25rem;
    font-weight: 700;
    color: #171717;
}

.review-divider {
    width: 2px;
    height: 35px;
    background: #E8E8E8;
}

/* About Section */
.about-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-pink-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 182, 200, 0.1);
    border-radius: 50px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Sections */
.features,
.services,
.reviews,
.instagram-section,
.clinic-showcase,
.faq,
.location {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Grids */
.features-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFE5F0 0%, #FFF5F9 50%, #FFE5F0 100%);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #171717;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 220px;
}

.cta-btn-primary {
    background: #FFFFFF;
    border: 2px solid var(--primary-pink);
}

.cta-btn-secondary {
    background: var(--gradient-primary);
}

.btn-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-btn-secondary .btn-icon {
    background: rgba(255, 255, 255, 0.3);
}

.btn-icon i {
    font-size: 1.25rem;
    color: #FFFFFF;
}

.btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-text {
    font-size: 1rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.call-btn {
    background: var(--gradient-primary);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

/* ===================================
   MOBILE RESPONSIVE - CRITICAL FIXES
   =================================== */

@media (max-width: 1024px) {
    .hero-slider {
        height: 600px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    /* Header */
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-100%);
        transition: all 0.3s ease;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .cta-button {
        display: none;
    }
    
    /* Hero Slider */
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    /* Slider Controls - SMALLER ON MOBILE */
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn i {
        font-size: 1rem;
    }
    
    .slider-btn.prev {
        left: 0.5rem;
    }
    
    .slider-btn.next {
        right: 0.5rem;
    }
    
    .slider-dots {
        bottom: 1.5rem;
        padding: 0.5rem 1rem;
        gap: 0.5rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 24px;
    }
    
    /* Reviews Bar */
    .reviews-content {
        gap: 1.5rem;
    }
    
    .review-divider {
        display: none;
    }
    
    .review-icon {
        width: 40px;
        height: 40px;
    }
    
    .review-icon i {
        font-size: 1.1rem;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        min-width: auto;
        padding: 1rem 1.5rem;
    }
    
    .btn-icon {
        width: 45px;
        height: 45px;
    }
    
    .btn-icon i {
        font-size: 1.1rem;
    }
    
    /* Floating Buttons */
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 450px;
    }
    
    .slide-content {
        padding: 0 1rem;
    }
    
    .slide-subtitle {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .slide-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    /* Slider Controls - EVEN SMALLER */
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn i {
        font-size: 0.9rem;
    }
    
    .slider-btn.prev {
        left: 0.25rem;
    }
    
    .slider-btn.next {
        right: 0.25rem;
    }
    
    .slider-dots {
        bottom: 1rem;
        padding: 0.4rem 0.8rem;
        gap: 0.4rem;
    }
    
    .dot {
        width: 6px;
        height: 6px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    /* Reviews Bar */
    .reviews-bar {
        padding: 1rem 0;
    }
    
    .reviews-content {
        gap: 1rem;
        flex-direction: column;
    }
    
    .review-item {
        width: 100%;
        justify-content: center;
    }
    
    .review-icon {
        width: 35px;
        height: 35px;
    }
    
    .review-icon i {
        font-size: 1rem;
    }
    
    .review-text {
        font-size: 0.8rem;
    }
    
    .review-count {
        font-size: 1.1rem;
    }
    
    /* CTA */
    .cta-badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
    }
    
    .cta-btn {
        padding: 0.875rem 1.25rem;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
    }
    
    .btn-icon i {
        font-size: 1rem;
    }
    
    .btn-label {
        font-size: 0.75rem;
    }
    
    .btn-text {
        font-size: 0.9rem;
    }
}

:root {
    /* Clean Professional Color Palette - Light Pastel Pink */
    
    /* Primary Pink - Very Light & Classy */
    --primary-pink: #FFB6C8;
    --primary-pink-light: #FFF0F5;
    --primary-pink-lighter: #FFF5F9;
    --primary-pink-dark: #FFA0B8;
    
    /* Neutral Greys - Clean & Professional */
    --grey-50: #FAFAFA;
    --grey-100: #F5F5F5;
    --grey-200: #E8E8E8;
    --grey-300: #D4D4D4;
    --grey-400: #A0A0A0;
    --grey-500: #737373;
    --grey-600: #525252;
    --grey-700: #404040;
    --grey-800: #262626;
    --grey-900: #171717;
    
    /* Pure Colors */
    --white: #FFFFFF;
    --black: #000000;
    
    /* Subtle Accent */
    --accent-blue: #E8F4F8;
    
    /* Simple Gradients - Very Subtle */
    --gradient-primary: linear-gradient(135deg, #FFB6C8 0%, #FFA0B8 100%);
    --gradient-light: linear-gradient(135deg, #FFF5F9 0%, #FFF0F5 100%);
    --gradient-dark: linear-gradient(135deg, #404040 0%, #171717 100%);
    
    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing - More generous like Vivan */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-2xl: 8rem;
    
    /* Border Radius - Softer */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Clean Shadows - Subtle like medical websites */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--grey-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Remove noise texture for cleaner look */
body::before {
    display: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

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

[data-animate] {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

[data-animate]:nth-child(1) { animation-delay: 0.1s; }
[data-animate]:nth-child(2) { animation-delay: 0.2s; }
[data-animate]:nth-child(3) { animation-delay: 0.3s; }
[data-animate]:nth-child(4) { animation-delay: 0.4s; }
[data-animate]:nth-child(5) { animation-delay: 0.5s; }
[data-animate]:nth-child(6) { animation-delay: 0.6s; }

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

.header-top {
    background: var(--primary-pink);
    color: var(--white);
    padding: 0.75rem 0;
    font-size: 0.875rem;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
}

.contact-item:hover {
    opacity: 0.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-pink);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    padding: 1rem 0;
    background: var(--white);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo img {
    height: 60px;
    width: auto;
    border-radius: var(--radius-sm);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;

}

.mobile-toggle span {
    width: 25px;
    height: 3px;
 
    border-radius: 2px;
    transition: var(--transition-base);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--grey-800);
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-pink);
    transition: var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu a {
    display: block;
    color: var(--grey-700);
}

.dropdown-menu a:hover {
    color: var(--primary-pink-dark);
    padding-left: 0.5rem;
}

.cta-button {
    background: var(--primary-pink);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: -1;
}

.hero-background::before {
    display: none;
}

.hero-background::after {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--grey-900);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-pink-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--primary-pink-light);
    border-radius: 50px;
    border: 1px solid var(--primary-pink-light);
}

.hero-text p {
    font-size: 1.125rem;
    color: var(--grey-700);
    margin-bottom: 2.5rem;
    line-height: 1.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition-base);
    font-size: 0.95rem;
}

.btn::before {
    display: none;
}

.btn-primary {
    background: var(--primary-pink);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-pink-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-pink);
    border: 2px solid var(--primary-pink);
    box-shadow: var(--shadow-xs);
}

.btn-secondary:hover {
    background: var(--primary-pink);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper::before {
    display: none;
}

.hero-image-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: var(--primary-pink);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.hero-badge i {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.4;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--grey-500);
    animation: float 2.5s ease-in-out infinite;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

/* Features Section */
.features {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--grey-50) 100%);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 3.5rem 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--grey-100);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-card::before {
    display: none;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-pink-light);
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-pink-light) 0%, #FFF0F5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.08) translateY(-5px);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.3);
}

.feature-icon::before {
    display: none;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--grey-900);
    margin-bottom: 1.25rem;
    font-weight: 600;
    position: relative;
}

.feature-card p {
    color: var(--grey-600);
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
}

/* About Section */
.about-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -25px;
    left: -25px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--primary-pink-light);
    border-radius: 30px;
    z-index: -1;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 150px;
    height: 150px;
    border: 3px solid var(--primary-pink-light);
    border-radius: 30px;
    z-index: -1;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    position: relative;
}

.about-experience {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(135deg, #FFB6C8 0%, #FFA0B8 100%);
    color: #FFFFFF;
    padding: 2.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(255, 182, 200, 0.4);
    text-align: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.exp-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
}

.exp-text {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-top: 0.75rem;
    font-weight: 500;
    opacity: 0.95;
    color: #FFFFFF;
}

/* ============================================
   TABLET RESPONSIVE (768px - 1024px)
   ============================================ */
@media (max-width: 1024px) {
    .about-experience {
        padding: 2rem 2.5rem;
        bottom: -1rem;
        left: -1rem;
    }

    .exp-number {
        font-size: 3.5rem;
    }

    .exp-text {
        font-size: 1rem;
    }
}

/* ============================================
   MOBILE RESPONSIVE (480px - 768px)
   ============================================ */
@media (max-width: 768px) {
    .about-experience {
        /* CRITICAL: Make it smaller on mobile */
        padding: 1.5rem 2rem;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(255, 182, 200, 0.3);
    }

    .exp-number {
        font-size: 2.5rem;
    }

    .exp-text {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
}

/* ============================================
   SMALL MOBILE (<480px) - EXTRA COMPACT
   ============================================ */
@media (max-width: 480px) {
    .about-experience {
        /* SUPER COMPACT for small screens */
        padding: 1.25rem 1.75rem;
        bottom: 1rem;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 12px;
        max-width: 85%;
    }

    .exp-number {
        font-size: 2rem;
        line-height: 1.1;
    }

    .exp-text {
        font-size: 0.8rem;
        margin-top: 0.4rem;
        line-height: 1.3;
    }
}


@media (max-width: 768px) {
    .about-image {
        position: relative;
        padding-bottom: 3rem; /* Space for badge */
    }

    .about-experience {
        /* Position at bottom center */
        position: absolute;
        bottom: -1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        min-width: 160px;
    }
}


.section-subtitle {
    display: inline-block;
    color: var(--primary-pink-dark);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(233, 30, 99, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(233, 30, 99, 0.2);
    margin-top: 50px;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    color: var(--black);
    margin-bottom: 2rem;
    line-height: 1.25;
    font-weight: 700;
}

.about-text p {
    color: var(--grey-700);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.about-highlights {
    margin: 2.5rem 0;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--grey-200);
}

.highlight-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.highlight-item i {
    color: var(--primary-pink-dark);
    font-size: 1.5rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--grey-800);
    line-height: 1.7;
    font-size: 0.975rem;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: transparent;
    border-radius: 50%;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--black);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.section-header p {
    color: var(--grey-700);
    font-size: 1.125rem;
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-base);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 0;
}

.service-card:hover::after {
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-pink);
}

.service-card > * {
    position: relative;
    z-index: 1;
}

.service-image {
    width: 100px;
    height: 100px;
    background: var(--primary-pink-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--primary-pink-dark);
    font-size: 3rem;
    border: 2px solid var(--primary-pink-light);
    transition: var(--transition-bounce);
}

.service-card:hover .service-image {
    transform: scale(1.1) rotate(-5deg);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.service-card p {
    color: var(--grey-700);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-pink-dark);
    font-weight: 700;
    transition: var(--transition-base);
    font-size: 1rem;
}

.service-link i {
    transition: var(--transition-base);
}

.service-link:hover {
    gap: 1.25rem;
    color: var(--accent-pink);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Reviews Section */
.reviews {
    padding: var(--spacing-xl) 0;
    background: var(--grey-50);
    overflow: hidden;
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: transparent;
    pointer-events: none;
}

.reviews-slider {
    margin: 4rem 0;
    overflow: hidden;
    position: relative;
}

.review-track {
    display: flex;
    gap: 2.5rem;
    animation: slideIn 30s linear infinite;
}

.review-card {
    min-width: 420px;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid rgba(233, 30, 99, 0.1);
    position: relative;
    transition: var(--transition-base);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 6rem;
    font-family: var(--font-heading);
    color: var(--primary-pink-light);
    opacity: 0.3;
    line-height: 1;
}

.review-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink-dark);
}

.review-rating {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 2rem;
    color: #FFA726;
    font-size: 1.25rem;
}

.review-text {
    color: var(--grey-800);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-style: italic;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.author-info h4 {
    color: var(--black);
    font-weight: 700;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--grey-600);
    font-size: 0.925rem;
    font-weight: 500;
}

.review-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

/* Clinic Showcase Section */
.clinic-showcase {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
    position: relative;
}

.clinic-gallery {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.gallery-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 600px;
}

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

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

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 1;
    cursor: pointer;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.75) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-main:hover .gallery-overlay,
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-main .gallery-overlay h3 {
    font-size: 2rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Responsive Clinic Gallery */
@media (max-width: 1024px) {
    .clinic-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-main {
        height: 400px;
    }
}

/* Instagram Section - Ultra Premium */
.instagram-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--grey-50) 50%, var(--white) 100%);
    overflow: hidden;
    position: relative;
}

/* Background Decorations */
.instagram-bg-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.instagram-bg-decoration::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 182, 200, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.instagram-bg-decoration::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 182, 200, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

/* Section Header Enhancements */
.instagram-section .section-header {
    position: relative;
    padding-bottom: 3rem;
    text-align: center;
}

.instagram-section .section-header::after {
    content: '';
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.instagram-section .section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary-pink-light) 0%, #FFF0F5 100%);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary-pink-light);
}

.instagram-section .section-subtitle i {
    font-size: 1.25rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Instagram Follow Button */
.instagram-cta {
    margin-top: 2rem;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(255, 182, 200, 0.25);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.instagram-follow-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 182, 200, 0.35);
    border-color: var(--primary-pink-dark);
}

.instagram-follow-btn i {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Slider Wrapper */
.instagram-slider-wrapper {
    position: relative;
    margin-top: 4rem;
    overflow: visible;
    padding: 3rem 0 3rem;
}

.instagram-grid {
    display: flex;
    gap: 3rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 2rem 2rem;
}

.instagram-grid::-webkit-scrollbar {
    display: none;
}

/* Instagram Card - Premium Design */
.instagram-card {
    min-width: 360px;
    max-width: 360px;
    height: 640px;
    flex-shrink: 0;
    position: relative;
}

.instagram-card-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    background: var(--white);
    border: 3px solid transparent;
    background-clip: padding-box;
}

.instagram-card-wrapper::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.instagram-card:hover .instagram-card-wrapper::before {
    opacity: 1;
}

.instagram-card:hover .instagram-card-wrapper {
    transform: translateY(-20px) scale(1.04);
    box-shadow: 0 25px 60px rgba(255, 182, 200, 0.2);
}

/* Instagram Media Embed */
.instagram-card-wrapper iframe {
    border-radius: 25px !important;
}

.instagram-card-wrapper .instagram-media {
    min-width: 100% !important;
    max-width: 100% !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 25px;
    background: var(--white);
}

/* Navigation Arrows - Premium */
.instagram-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: var(--primary-pink);
    font-size: 2rem;
    border: 3px solid var(--grey-100);
}

.instagram-nav::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.instagram-nav:hover::before {
    opacity: 0.2;
}

.instagram-nav:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 10px 35px rgba(255, 182, 200, 0.35);
    border-color: var(--primary-pink);
}

.instagram-nav:active {
    transform: translateY(-50%) scale(1.05);
}

.instagram-nav.prev {
    left: -35px;
}

.instagram-nav.next {
    right: -35px;
}

/* Dots Indicator - Premium */
.instagram-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 4rem;
    padding: 1.75rem 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 60px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 182, 200, 0.15);
}

.instagram-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--grey-300);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.instagram-dot::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.instagram-dot:hover {
    background: var(--primary-pink);
    transform: scale(1.3);
}

.instagram-dot:hover::before {
    border-color: rgba(255, 182, 200, 0.25);
}

.instagram-dot.active {
    background: var(--gradient-primary);
    width: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(255, 182, 200, 0.35);
}

.instagram-dot.active::before {
    border-color: var(--primary-pink);
    border-radius: 10px;
    inset: -8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .instagram-card {
        min-width: 320px;
        max-width: 320px;
        height: 580px;
    }
    
    .instagram-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: var(--spacing-lg) 0;
    }
    
    .instagram-card {
        min-width: 300px;
        max-width: 300px;
        height: 550px;
    }
    
    .instagram-grid {
        gap: 2rem;
        padding: 0 1rem 2rem;
    }
    
    .instagram-nav {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    
    .instagram-nav.prev {
        left: -15px;
    }
    
    .instagram-nav.next {
        right: -15px;
    }
    
    .instagram-dots {
        gap: 1rem;
        padding: 1.25rem 2rem;
    }
    
    .instagram-dot {
        width: 12px;
        height: 12px;
    }
    
    .instagram-dot.active {
        width: 40px;
    }
    
    .instagram-follow-btn {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .instagram-card {
        min-width: 280px;
        max-width: 280px;
        height: 520px;
    }
    
    .instagram-nav {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .instagram-nav.prev {
        left: -5px;
    }
    
    .instagram-nav.next {
        right: -5px;
    }
}

/* FAQ Section */
.faq {
    padding: var(--spacing-xl) 0;
    background: var(--white);
    position: relative;
}

.faq-grid {
    max-width: 950px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--grey-200);
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-pink-light);
}

.faq-item.active {
    border-color: var(--primary-pink-dark);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 1.75rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: var(--transition-base);
    background: var(--white);
}

.faq-item.active .faq-question {
    background: var(--white);
    color: var(--primary-pink-dark);
}

.faq-question:hover {
    background: var(--primary-pink-light);
}

.faq-question i {
    font-size: 1.25rem;
    color: var(--primary-pink-dark);
    transition: var(--transition-base);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(233, 30, 99, 0.1);
    border-radius: var(--radius-full);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: var(--primary-pink-dark);
    color: var(--white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p {
    padding: 0 2.5rem 2rem;
    color: var(--grey-700);
    line-height: 1.9;
    font-size: 1.025rem;
}

/* Location Section */
.location {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-grey);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.info-card:hover {
    background: var(--light-pink);
    transform: translateX(10px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.info-content h3 {
    color: var(--black);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--grey);
    line-height: 1.6;
}

.info-content a {
    color: var(--primary-pink);
    font-weight: 500;
}

.info-content a:hover {
    text-decoration: underline;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: var(--white);
    color: var(--primary-pink-dark);
    border: 2px solid var(--white);
}

.cta-section .btn-primary:hover {
    background: var(--grey-900);
    color: var(--white);
    border-color: var(--grey-900);
    transform: translateY(-5px) scale(1.05);
}

.cta-section .btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.cta-section .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-pink-dark);
    transform: translateY(-5px) scale(1.05);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    width: 140px;
    margin-bottom: 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.footer-col p {
    color: var(--grey-300);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 0.975rem;
}

.footer-social {
    display: flex;
    gap: 1.25rem;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-full);
    background: var(--grey-800);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px) rotate(5deg);
    border-color: var(--primary-pink);
    box-shadow: var(--shadow-md);
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 600;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: var(--grey-300);
    transition: var(--transition-base);
    display: inline-block;
}

.footer-col ul a:hover {
    color: var(--primary-pink);
    padding-left: 0.75rem;
}

.footer-contact li {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
    color: var(--grey-300);
    line-height: 1.7;
}

.footer-contact i {
    color: var(--primary-pink);
    margin-top: 0.2rem;
    font-size: 1.125rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--grey-300);
    font-size: 0.95rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 999;
}

.float-btn {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
    animation: pulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: var(--radius-full);
    opacity: 0.5;
    filter: blur(15px);
    z-index: -1;
}

.call-btn {
    background: var(--gradient-primary);
}

.call-btn::before {
    background: var(--gradient-primary);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.whatsapp-btn::before {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.float-btn:hover {
    transform: scale(1.15) rotate(5deg);
    animation: none;
    box-shadow: var(--shadow-xl);
}

.float-btn:active {
    transform: scale(0.95);
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: var(--transition-base);
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }
    
    .cta-button {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 3rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .review-card {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 1.5rem 1rem;
    }
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */

/* Page Header */
.page-header {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--grey-50) 0%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--grey-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header-content p {
    font-size: 1.2rem;
    color: var(--grey-600);
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    font-size: 0.95rem;
    color: var(--grey-600);
}

.breadcrumb a {
    color: var(--primary-pink);
    font-weight: 500;
}

.breadcrumb i {
    font-size: 0.75rem;
}

/* About Doctor Section */
.about-doctor-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.about-doctor-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}

.doctor-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.doctor-image img {
    width: 100%;
    display: block;
}

.doctor-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
}

.doctor-badge i {
    font-size: 1.5rem;
}

.doctor-info h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--grey-900);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.doctor-designation {
    font-size: 1.2rem;
    color: var(--primary-pink);
    font-weight: 600;
    margin-bottom: 2rem;
}

.doctor-description p {
    color: var(--grey-700);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.doctor-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--grey-50);
    border-radius: 16px;
    border-left: 4px solid var(--primary-pink);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
    line-height: 1;
}

.stat-label {
    color: var(--grey-600);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Qualifications Section */
.qualifications-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.qualification-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.qualification-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink);
}

.qual-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-pink-light) 0%, #FFF0F5 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
    font-size: 2.5rem;
}

.qualification-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--grey-900);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.qualification-card p {
    color: var(--grey-600);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.qual-year {
    display: inline-block;
    background: var(--primary-pink-light);
    color: var(--primary-pink);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* Philosophy Section */
.philosophy-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.philosophy-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
    align-items: center;
}

.philosophy-description p {
    color: var(--grey-700);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.philosophy-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--grey-50);
    border-radius: 12px;
}

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

.value-item span {
    color: var(--grey-700);
    font-weight: 500;
}

.philosophy-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.philosophy-image img {
    width: 100%;
    display: block;
}

/* Clinic Gallery Section */
.clinic-gallery-section {
    padding: var(--spacing-2xl) 0;
    background: var(--grey-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-overlay h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-choose-section {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.choose-card {
    padding: 3rem 2.5rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--grey-100);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choose-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.choose-card:hover::after {
    transform: scaleX(1);
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-pink-light);
}

.choose-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-pink-light);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.choose-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: var(--grey-900);
    margin-bottom: 1rem;
    font-weight: 600;
}

.choose-card p {
    color: var(--grey-600);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Page Responsive */
@media (max-width: 1024px) {
    .about-doctor-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .doctor-stats {
        grid-template-columns: 1fr;
    }
    
    .philosophy-values {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}