        /* === HOMEPAGE HEADER STYLES === */
        .header {
            position: sticky;
            top: 0;
            background-color: var(--bg-card);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
            z-index: 1002;
            transition: all 0.3s ease;
        }
        .header.scrolled {
            backdrop-filter: blur(12px);
            background: rgba(255,255,255,0.9);
        }
        [data-theme="dark"] .header.scrolled {
            background: rgba(17, 24, 39, 0.9);
        }
        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            gap: 2rem;
        }
        .logo {
            font-size: 1.75rem;
            font-weight: 800;
            color: var(--primary-color);
            text-decoration: none;
            letter-spacing: -0.02em;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .logo-img {
            height: 64px;
            width: auto;
            object-fit: contain;
            border-radius: 8px;
            background: transparent;
            
        }
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
            align-items: center;
            background-color: transparent;
        }
        .nav-menu a {
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            min-height: 56px;
            display: flex;
            align-items: center;
            padding: 12px 0;
            position: relative;
        }
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 8px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }
        .nav-menu a:hover::after {
            width: 100%;
        }
        .nav-menu .book-appointment-btn {
            background: var(--secondary) !important;
            color: #ffffff !important;
            padding: 1rem 2rem !important;
            white-space: nowrap;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(53, 202, 164, 0.3);
            min-height: 56px;
            display: flex;
            align-items: center;
            letter-spacing: 0.02em;
        }
        .book-appointment-btn:hover {
            background: var(--primary-dark) !important;
            color: #ffffff !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(53, 202, 164, 0.4);
        }
        .nav-menu .dropdown {
            position: relative;
        }
        .nav-menu .dropdown > a {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .dropdown-icon {
            width: 12px;
            height: 12px;
            fill: currentColor;
            transition: transform 0.3s ease;
        }
        .dropdown:hover .dropdown-icon,
        .dropdown.active .dropdown-icon {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-card);
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            min-width: 240px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.3s ease;
            z-index: 1000;
            border: 1px solid var(--border-color);
        }
        .dropdown:hover .dropdown-menu,
        .dropdown.active .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dropdown-menu a {
            display: block !important;
            padding: 12px 18px !important;
            color: var(--text-gray) !important;
            text-decoration: none;
            transition: all 0.2s ease;
            border-bottom: 1px solid var(--border-color);
            min-height: auto !important;
            font-weight: 500 !important;
        }
        .dropdown-menu a:last-child {
            border-bottom: none;
        }
        .dropdown-menu a:hover {
            background: var(--bg-light);
            color: var(--primary-color) !important;
            padding-left: 24px !important;
        }
        .dropdown-menu a::after {
            display: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            z-index: 1002;
        }
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 3px;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        .nav-overlay {
            display: none !important;
        }
        .nav-overlay.active {
            display: none !important;
        }
        .logo-text { font-family: 'Lora', Georgia, serif; font-size: clamp(1.05rem, 3.5vw, 1.6rem); white-space: nowrap; }
            .nav {
                padding: 0.75rem 20px;
            }
            .logo {
                font-size: 1.1rem;
                max-width: 220px;
                line-height: 1.25;
            }
            .logo-img {
                height: 52px;
            }
            .hamburger {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background-color: #FFFFFF !important; -webkit-appearance: none; backdrop-filter: none;
                flex-direction: column;
                gap: 0;
                padding-top: 80px;
                padding-bottom: 2rem;
                box-shadow: -4px 0 20px rgba(0,0,0,0.15);
                transform: translateX(0);
                transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1001;
                overflow-y: auto;
            }
            .nav-menu.active {
                right: 0;
            }
            .nav-menu li {
                padding: 0 2rem;
                width: 100%;
            }
            .nav-menu a {
                padding: 1rem 0;
                border-bottom: none;
                width: 100%;
                justify-content: center;
                border-radius: 8px;
                transition: all 0.2s ease;
            }
            .nav-menu a:hover {
                background-color: rgba(107, 70, 193, 0.08);
                padding-left: 0.5rem;
            }
            .book-appointment-btn {
                margin: 1rem auto;
                justify-content: center;
                width: fit-content;
                min-width: 200px;
            }
            .nav-menu .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                border-radius: 0;
                background: rgba(107, 70, 193, 0.05);
                margin: 0.5rem 0 0 1rem;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
            }
            .nav-menu .dropdown.active .dropdown-menu {
                max-height: 500px;
            }
            .nav-menu .dropdown-menu a {
                padding: 8px 16px !important;
                font-size: 0.9rem !important;
                border-bottom: 1px solid rgba(107, 70, 193, 0.1);
            }
            .nav-menu .dropdown > a {
                justify-content: center;
            }
        .logo-watermark {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 500px;
            height: 500px;
            background: url('/images/logo-watermark.png') center/contain no-repeat;
            opacity: 0.20;
            z-index: 1;
            pointer-events: none;
            will-change: transform;
            transition: transform 0.1s linear;
        }
            .logo-watermark {
                width: 300px;
                height: 300px;
            }

        :root {
            --primary-color: #6B46C1;    /* Logo purple - Clinical Confidence */
            --primary-light: #4a3d8f;
            --primary-dark: #271f54;
            --secondary: #FF6B35;        /* Logo orange - energy, CTAs */
            --navy: #1A1A1A;             /* Authority black */
            --gold: #FF6B35;             /* Logo orange accent (unified) */
            --text-dark: #1E293B;        /* Charcoal - readable, serious */
            --text-gray: #475569;        /* Slate body text */
            --text-light: #737373;
            --bg-light: #FAFAFA;         /* Warm white */
            --bg-card: #FFFFFF;
            --border-color: #E5E5E5;
            --shadow-soft: 0 2px 20px rgba(0, 0, 0, 0.06);
            --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
            --bg-blue-soft: rgba(107, 70, 193, 0.15);
        }
        [data-theme="dark"] {
            --primary-color: #8B6FD4;
            --primary-light: #7b6fc0;
            --secondary: #FF8A57;
            --text-dark: #f9fafb;
            --text-gray: #e5e7eb;
            --text-light: #d1d5db;
            --bg-light: #111111;
            --bg-card: #1A1A1A;
            --border-color: #2A2A2A;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            background-attachment: fixed;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Lora', serif;
            font-weight: 600;
        }
        
        .skip-link {
            position: absolute;
            left: -9999px;
            z-index: 999;
            padding: 1em;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
        }
        
        .skip-link:focus {
            left: 6px;
            top: 7px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(24px, 5vw, 48px);
        }
        
        /* Navigation */
        .nav {
            background: var(--bg-card);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-soft);
            border-bottom: 1px solid var(--border-color);
        }
        
        .nav .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        
        .nav-menu a {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-menu a:hover {
            color: var(--primary-color);
        }
        
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 4px;
        }
        
        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 3px 0;
            transition: 0.3s;
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                position: fixed;
                left: -100%;
                top: 80px;
                flex-direction: column;
                background-color: var(--bg-card);
                width: 100%;
                text-align: center;
                transition: 0.3s;
                box-shadow: var(--shadow-soft);
                padding: 2rem 0;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .hamburger {
                display: flex;
            }
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background: var(--bg-card);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .breadcrumb nav {
            font-size: 0.9rem;
        }
        
        .breadcrumb a {
            color: var(--text-gray);
            text-decoration: none;
        }
        
        .breadcrumb a:hover {
            color: var(--primary-color);
        }
        
        .breadcrumb span {
            color: var(--text-light);
            margin: 0 0.5rem;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23ffffff" opacity="0.1"><polygon points="1000,100 1000,0 0,0 0,100"/></svg>') no-repeat center center;
            background-size: cover;
        }
        
        .hero .container {
            position: relative;
            z-index: 1;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }
        
        /* Article Meta */
        .article-meta {
            background: var(--bg-card);
            padding: 1rem 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .meta-content {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .reviewer-badge {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: rgba(107, 70, 193, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
        }
        
        .reviewer-info h4 {
            font-size: 0.9rem;
            margin-bottom: 0.2rem;
            color: var(--primary-color);
        }
        
        .reviewer-info p {
            font-size: 0.8rem;
            color: var(--text-gray);
        }
        
        /* Sections */
        .section {
            padding: 3rem 0;
        }
        
        .section:nth-child(even) {
            background: var(--bg-card);
        }
        
        .section-title {
            font-size: 2rem;
            margin-bottom: 2rem;
            text-align: center;
            color: var(--primary-color);
        }
        
        .content-section {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .info-box {
            background: rgba(230, 230, 250, 0.7);
            border-left: 4px solid var(--primary-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        /* Doctors Grid */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .doctor-card {
            background: var(--bg-card);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: var(--shadow-soft);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .doctor-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        .doctor-name {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .doctor-credentials {
            color: var(--text-gray);
            font-size: 0.9rem;
            margin-bottom: 1rem;
            font-style: italic;
        }
        
        .doctor-link {
            display: inline-block;
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            margin-top: 1rem;
            padding: 0.5rem 1rem;
            border: 1px solid var(--primary-color);
            border-radius: 6px;
            transition: all 0.3s;
        }
        
        .doctor-link:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            background: var(--bg-card);
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        
        .faq-question:hover {
            background: rgba(107, 70, 193, 0.05);
        }
        
        .faq-question h3 {
            font-size: 1.1rem;
            color: var(--text-dark);
        }
        
        .faq-toggle {
            color: var(--primary-color);
            font-size: 1.5rem;
            transition: transform 0.3s;
        }
        
        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 300px;
        }
        
        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }
        
        /* Lists */
        ul, ol {
            padding-left: 2.5rem;
            margin: 1rem 0;
        }
        
        /* Footer */
        .footer {
            background: var(--text-dark, #1a1a2e);
            color: #e5e7eb;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 3rem;
        }
        .footer h3 {
            color: #FF6B35;
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }
        .footer p, .footer li {
            margin-bottom: 0.5rem;
            line-height: 1.8;
        }
        .footer a {
            color: #e5e7eb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer a:hover { color: #ffffff; }
        .footer ul { list-style: none; }
        .footer ul li a {
            display: block;
            padding: 0.4rem 0;
            line-height: 1.8;
            transition: color 0.2s ease, padding-left 0.2s ease;
        }
        .footer ul li a:hover { padding-left: 4px; }
        .footer-buttons {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0.75rem;
            margin-top: 1.5rem;
        }
        .footer-btn {
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            min-height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            color: white !important;
            text-align: center;
        }
        .footer-btn:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }
        .footer-btn-primary {
            background: #6B46C1;
            box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
        }
        .footer-btn-secondary {
            background: #FF6B35;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .footer-btn-tertiary {
            background: #FF6B35;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding-top: 2.5rem;
            margin-top: 1rem;
            text-align: center;
            color: #9ca3af;
            font-size: 0.85rem;
        }
        
        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25d366;
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 3px #999;
            z-index: 100;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .doctors-grid {
                grid-template-columns: 1fr;
            }
            
            .meta-content {
                flex-direction: column;
                gap: 1rem;
            }
        }
    
        /* === MAKHAN DESIGN UPGRADE === */
        
        /* Pastel purple-blue background */
        body {
            background: linear-gradient(180deg, #F8F7FF 0%, #F0EDFF 30%, #F5F3FF 60%, #FAFAFA 100%) !important;
            background-attachment: fixed !important;
        }
        
        /* Scroll reveal animations */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Staggered children */
        .stagger-children > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .stagger-children.visible > *:nth-child(1) { transition-delay: 0s; }
        .stagger-children.visible > *:nth-child(2) { transition-delay: 0.1s; }
        .stagger-children.visible > *:nth-child(3) { transition-delay: 0.2s; }
        .stagger-children.visible > *:nth-child(4) { transition-delay: 0.3s; }
        .stagger-children.visible > *:nth-child(5) { transition-delay: 0.4s; }
        .stagger-children.visible > *:nth-child(6) { transition-delay: 0.5s; }
        .stagger-children.visible > * {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Section backgrounds with subtle gradients */
        .location-section {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 2rem auto;
            max-width: 900px;
            box-shadow: 0 2px 16px rgba(107, 70, 193, 0.06);
            border: 1px solid rgba(107, 70, 193, 0.08);
        }
        
        .location-section:nth-child(even) {
            background: linear-gradient(135deg, #F5F3FF 0%, #EDE9FE 100%);
        }
        
        /* Heading styles */
        .location-section h2 {
            font-family: 'Lora', serif;
            color: #6B46C1;
            font-size: 1.5rem;
            margin-bottom: 1.25rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(107, 70, 193, 0.15);
        }
        
        .location-section h3 {
            font-family: 'Lora', serif;
            color: #1E293B;
            font-size: 1.2rem;
        }
        
        /* Service cards grid */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.25rem;
            margin: 1.5rem 0;
        }
        
        
        
        
        
        
        
        
        
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .service-card {
            background: white;
            border-radius: 16px;
            padding: 2rem 1.5rem;
            border: 1px solid rgba(107, 70, 193, 0.1);
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, #6B46C1, #9F7AEA);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }
        .service-card:nth-child(even)::before {
            background: linear-gradient(90deg, #FF6B35, #FF9F6B);
        }
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 32px rgba(107, 70, 193, 0.15);
            border-color: rgba(107, 70, 193, 0.25);
        }
        .service-card:hover::before {
            transform: scaleX(1);
        }
        .service-icon {
            width: 64px; height: 64px;
            border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 1.25rem;
            background: linear-gradient(135deg, rgba(107,70,193,0.08), rgba(107,70,193,0.04));
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .service-card:nth-child(even) .service-icon {
            background: linear-gradient(135deg, rgba(255,107,53,0.08), rgba(255,107,53,0.04));
        }
        .service-card:hover .service-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(107,70,193,0.15), rgba(107,70,193,0.08));
        }
        .service-card:nth-child(even):hover .service-icon {
            background: linear-gradient(135deg, rgba(255,107,53,0.15), rgba(255,107,53,0.08));
        }
        .service-card h4 {
            color: #6B46C1;
            font-family: 'Lora', Georgia, serif;
            font-size: 1.15rem;
            margin-bottom: 0.75rem;
        }
        .service-card:nth-child(even) h4 { color: #FF6B35; }
        .service-card p {
            color: #4A5568;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        .service-link {
            color: #6B46C1;
            font-weight: 600;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.3s;
        }
        .service-card:nth-child(even) .service-link { color: #FF6B35; }
        .service-link:hover { text-decoration: underline; }
        @media (max-width: 480px) {
            .services-grid { grid-template-columns: 1fr; gap: 1rem; }
            .service-card { padding: 1.5rem 1.25rem; }
        }

        /* Doctor cards */
        .doctor-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(107, 70, 193, 0.08);
            border-top: 4px solid #6B46C1;
            transition: transform 0.3s;
        }
        
        .doctor-card:hover {
            transform: translateY(-2px);
        }
        
        .doctor-card:nth-child(even) {
            border-top-color: #FF6B35;
        }
        
        /* Why choose cards */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.25rem;
        }
        
        .why-card {
            background: linear-gradient(135deg, #F5F3FF, #EDE9FE);
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: transform 0.3s;
        }
        
        .why-card:hover {
            transform: translateY(-3px);
        }
        
        .why-card .icon {
            font-size: 2rem;
            margin-bottom: 0.75rem;
        }
        
        /* CTA section */
        .cta-section {
            background: linear-gradient(135deg, #6B46C1, #553C9A) !important;
            border-radius: 20px;
            color: white;
            text-align: center;
            padding: 3rem 2rem;
            margin: 2rem auto;
            max-width: 900px;
        }
        
        /* Purple Velvet Accordion */
        .faq-section { padding: 1rem 0; }
        .faq-item { 
            background-color: #FFFFFF; margin-bottom: 1rem; border-radius: 16px; 
            overflow: hidden; border-bottom: 1px solid #E5E5E5; 
            transition: box-shadow 0.4s ease, transform 0.3s ease; 
        }
        .faq-item.open { 
            box-shadow: 0 4px 20px rgba(107, 70, 193, 0.08); 
            transform: scale(1.01); 
        }
        .faq-item:hover { border-color: #6B46C1; }
        .faq-question { 
            width: 100%; background: none; border: none; 
            border-left: 3px solid transparent; padding: 1.5rem 2rem; 
            text-align: left; font-size: 1.1rem; font-weight: 600; 
            color: #1E293B; cursor: pointer; display: flex; 
            justify-content: space-between; align-items: center; 
            min-height: 56px; transition: background-color 0.35s ease, border-color 0.35s ease; 
        }
        .faq-question:hover { background: rgba(107, 70, 193, 0.02); }
        .faq-question.active { 
            background: rgba(107, 70, 193, 0.04); 
            border-left-color: #6B46C1; 
        }
        .faq-toggle { 
            font-size: 1.5rem; font-weight: 300; color: #6B46C1; 
            display: inline-flex; align-items: center; justify-content: center; 
            flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; 
            background: rgba(107, 70, 193, 0.06); 
            transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease; 
        }
        .faq-question:hover .faq-toggle { background: rgba(107, 70, 193, 0.12); }
        .faq-question.active .faq-toggle { 
            transform: rotate(135deg); 
            background: rgba(107, 70, 193, 0.15); 
        }
        .faq-answer { 
            color: #475569; line-height: 1.7; max-height: 0; overflow: hidden; 
            padding: 0 2rem 0 2.25rem; transform: translateY(-8px); opacity: 0; 
            transition: max-height 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                        opacity 0.4s ease 0.08s, 
                        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.08s, 
                        padding 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
        }
        .faq-answer.show { 
            max-height: 500px; opacity: 1; 
            transform: translateY(0); padding: 0.25rem 2rem 1.75rem 2.25rem; 
        }
        
        /* Reduce motion */
        @media (prefers-reduced-motion: reduce) {
            *, .reveal, .stagger-children > * {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
            .reveal { opacity: 1; transform: none; }
        }
        
        /* Mobile tweaks */
        @media (max-width: 768px) {
            .location-section { padding: 1.75rem 1.25rem; margin: 1rem; border-radius: 16px; }
            .service-grid { grid-template-columns: 1fr; }
            .why-grid { grid-template-columns: 1fr 1fr; }
            .faq-question { padding: 1rem 1.25rem; font-size: 0.95rem; }
        }
        
        @media (max-width: 480px) {
            .why-grid { grid-template-columns: 1fr; }
        }

    
        @media (max-width: 768px) {
            .footer-content { grid-template-columns: 1fr !important; gap: 2rem; }
            .footer-buttons { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
        }
