        :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: #F5F3FF;         /* Pastel purple-blue tint */
            --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(53, 202, 164, 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;
        }
        
        [data-theme="dark"] .stats-bar {
            background: #1A1A1A;
        }
        
        [data-theme="dark"] .stat-number {
            color: #FF6B35;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            font-size: 1.0625rem;
            line-height: 1.8;
            letter-spacing: 0.01em;
            color: var(--text-gray);
            background: linear-gradient(180deg, #F8F7FF 0%, #F0EDFF 30%, #F5F3FF 60%, #FAFAFA 100%);
            background-attachment: fixed;
            transition: all 0.3s ease;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 clamp(20px, 4vw, 40px);
        }

        /* Emergency Sticky Bar */
        .emergency-sticky {
            position: relative;
            top: 0;
            background: #dc2626;
            color: white;
            text-align: center;
            padding: 8px 16px;
            z-index: 1000;
            font-size: 0.8rem;
            font-weight: 600;
            box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .emergency-sticky a {
            color: white !important;
            text-decoration: underline;
        }
        
        .emergency-alert-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
            flex-shrink: 0;
        }
        
        .emergency-sticky .close-btn {
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            width: 44px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s ease;
        }
        
        .emergency-sticky .close-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        
        .emergency-sticky.hidden {
            display: none;
        }
        
        /* Header */
        .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);
        }
        
        .theme-toggle { display: none !important; 
            background: none;
            border: 2px solid var(--border-color);
            padding: 10px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            min-height: 56px;
            min-width: 44px;
            margin-left: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .theme-toggle:hover {
            border-color: var(--primary-color);
            color: var(--primary-color);
        }
        
        .theme-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        /* Dropdown Navigation */
        .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 Menu */
        .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);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #1E1B4B 0%, #6B46C1 60%, #FF6B35 100%);
            position: relative;
            overflow: hidden;
            padding: 6rem 0 2.5rem;
            color: white;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 20%;
            left: 20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            top: 60%;
            right: 30%;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            animation: float 8s ease-in-out infinite reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }
        
        .floating-dots {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }
        
        .floating-dots::before,
        .floating-dots::after {
            content: '';
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255,255,255,0.15);
            border-radius: 50%;
        }
        
        .floating-dots::before {
            top: 30%;
            left: 10%;
            animation: float 4s ease-in-out infinite;
        }
        
        .floating-dots::after {
            top: 70%;
            right: 20%;
            animation: float 7s ease-in-out infinite reverse;
        }
        
        .hero-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: clamp(2rem, 4vw, 4rem);
            align-items: center;
            min-height: clamp(350px, 40vw, 500px);
        }
        
        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            font-style: normal;
            line-height: 1.1;
            letter-spacing: -0.03em;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .hero-content .subtitle {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.7;
            color: rgba(255,255,255,0.85);
            margin-bottom: 2.5rem;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
        }
        
        .btn-primary {
            background: #FF6B35;
            color: white;
            border-radius: 50px;
            padding: 1rem 2rem;
            font-weight: 600;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-soft);
            min-height: 56px;
            display: flex;
            align-items: center;
            border: 2px solid #FF6B35;
            gap: 8px;
        }
        
        .btn-primary:hover {
            background: #e55a2b;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        
        .btn-secondary {
            background: transparent;
            border: 2px solid rgba(255,255,255,0.6);
            color: white;
            border-radius: 8px;
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            min-height: 56px;
            display: flex;
            align-items: center;
        }
        
        .btn-secondary:hover {
            background: var(--secondary);
            color: white;
        }
        
        .hero-image {
            text-align: center;
            position: relative;
        }
        
        .hero-doctors {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            justify-content: center;
        }
        
        .hero-doctor {
            text-align: center;
        }
        
        .hero-doctor-photo {
            width: clamp(140px, 15vw, 250px);
            height: clamp(140px, 15vw, 250px);
            border-radius: 50%;
            object-fit: cover;
            object-position: center 15%;
            border: 4px solid var(--primary-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
            position: relative;
            z-index: 2;
        }
        
        .hero-doctor-name {
            color: white;
            font-weight: 700;
            margin-top: 0.75rem;
            font-size: 1rem;
            letter-spacing: 0.05em;
        }
        
        /* Trust Bar */
        .trust-bar {
            background: #f3f4f6;
            padding: 1.5rem 0;
            text-align: center;
            border-top: 1px solid #e5e7eb;
        }
        
        [data-theme="dark"] .trust-bar {
            background: #374151;
            border-color: #4b5563;
        }
        
        .trust-content {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }
        
        .trust-institutions {
            font-weight: 700;
            color: var(--text-dark);
        }
        
        /* Stats Bar */
        .stats-bar {
            background: linear-gradient(135deg, #1E1B4B 0%, #1A1A1A 50%, #1A1A1A 100%);
            padding: 3rem 0;
            color: white;
            border-top: 3px solid #6B46C1;
            position: relative;
        }
        
        .stats-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            text-align: center;
        }
        
        .stat-item {
            padding: 1rem;
        }
        
        .stat-number {
            font-size: clamp(2rem, 4vw, 2.75rem);
            font-weight: 800;
            color: #FF6B35;
            display: block;
            letter-spacing: -0.02em;
            line-height: 1.2;
            margin-bottom: 0.25rem;
        }
        
        .stat-label {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.75);
            font-weight: 400;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        
        /* Section Styles */
        .section {
            padding: 5rem 0;
        }
        
        .section-doctors {
            padding: 6rem 0;
        }
        
        .section-alt {
            background-color: var(--bg-light);
        }
        
        .section-title {
            text-align: center;
            font-size: clamp(1.75rem, 3.5vw, 2.5rem);
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 3rem;
            color: var(--text-dark);
            position: relative;
        }
        
        .section-title::before {
            content: '';
            display: block;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            margin-bottom: 1rem;
            margin-left: auto;
            margin-right: auto;
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        
        .service-card {
            background-color: #FFFFFF !important; -webkit-appearance: none; backdrop-filter: none;
            padding: 2rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-color);
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .service-card h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .service-icon {
            width: 28px;
            height: 28px;
            color: var(--primary-color);
            flex-shrink: 0;
        }
        
        .service-card p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .service-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }
        
        .service-card a:hover {
            gap: 1rem;
        }
        
        .arrow-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        
        /* Doctors Section */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .doctor-card {
            background-color: #FFFFFF !important; -webkit-appearance: none; backdrop-filter: none;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            text-align: center;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .doctor-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }
        
        .doctor-photo {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            object-position: center 15%;
            margin: 0 auto 1rem;
            display: block;
            transition: transform 0.3s ease;
            border: 4px solid var(--bg-blue-soft);
        }
        
        .doctor-accent-line {
            width: 60px;
            height: 2px;
            background: var(--primary-color);
            margin: 0 auto 2rem;
        }
        
        .doctor-card:hover .doctor-photo {
            transform: scale(1.05);
        }
        
        .doctor-name {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: 0.03em;
            color: var(--primary-color);
        }
        
        .doctor-credentials {
            font-size: 1rem;
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            line-height: 1.5;
        }
        
        .doctor-specialties {
            font-size: 0.95rem;
            margin-bottom: 2rem;
            line-height: 1.6;
            color: var(--text-gray);
        }
        
        .doctor-link {
            background: transparent;
            border: 2px solid var(--primary-color);
            color: var(--primary-color);
            border-radius: 8px;
            padding: 10px 28px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }
        
        .doctor-link:hover {
            background: var(--primary-color);
            color: white;
        }
        
        /* Patient Resources */
        .resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        
        .resource-card {
            background-color: #FFFFFF !important; -webkit-appearance: none; backdrop-filter: none;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: var(--shadow-soft);
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .resource-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        .resource-card a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        /* Locations */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
            gap: 2rem;
        }
        
        .location-card {
            background-color: #FFFFFF !important; -webkit-appearance: none; backdrop-filter: none;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
            border-left: 6px solid var(--primary-color);
            transition: all 0.3s ease;
        }
        
        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }
        
        .location-card h3 {
            color: var(--primary-color);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .location-icon {
            width: 20px;
            height: 20px;
            fill: currentColor;
        }
        
        .location-card p {
            margin-bottom: 0.75rem;
            line-height: 1.5;
        }
        
        .location-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
            flex-wrap: wrap;
        }
        
        .location-links a {
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            padding: 10px 18px;
            border: 1px solid var(--secondary);
            border-radius: 50px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .location-links a:hover {
            background: var(--secondary);
            color: white;
        }
        
        .phone-icon,
        .map-icon {
            width: 16px;
            height: 16px;
            fill: currentColor;
        }
        
        /* Emergency Section */
        .emergency-section {
            padding: 4rem 0;
        }
        
        .emergency-content {
            background: white;
            border-top: 4px solid #dc2626;
            border-radius: 12px;
            padding: 2rem 2.5rem;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            margin: 2rem auto;
            max-width: 1200px;
        }
        
        .emergency-title {
            color: #dc2626;
            font-family: 'Lora', serif;
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .emergency-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .emergency-card {
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            padding: 1.5rem;
            border-radius: 8px;
        }
        
        .emergency-card h3 {
            color: #dc2626;
            font-family: 'Lora', serif;
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .emergency-card ul {
            padding-left: 1.5rem;
        }
        
        .emergency-card li {
            margin-bottom: 0.5rem;
            line-height: 1.6;
        }
        
        .emergency-contact {
            text-align: center;
            font-size: clamp(0.85rem, 2.5vw, 1rem);
            font-weight: 600;
            color: #dc2626;
            background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
            padding: 1.25rem 1.5rem;
            border-radius: 12px;
            border: 1px solid #fecaca;
            max-width: 800px;
            margin: 0 auto 2rem;
            word-break: break-word;
            overflow-wrap: break-word;
        }
        
        .emergency-contact a {
            color: #dc2626;
            text-decoration: none;
        }
        
        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background-color: #FFFFFF !important; -webkit-appearance: none; backdrop-filter: none;
            margin-bottom: 1rem;
            border-radius: 16px;
            overflow: hidden;
            border-bottom: 1px solid var(--border-color);
            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:last-child {
            border-bottom: none;
        }
        
        .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: var(--text-dark);
            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: var(--primary-color);
        }
        .faq-toggle {
            font-size: 1.5rem;
            font-weight: 300;
            color: var(--primary-color);
            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: var(--text-gray);
            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;
        }
        
        /* Footer */
        .footer {
            background: var(--text-dark);
            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 .social-icons, .footer .follow-us {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.06);
        }

        .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;
        }
        
        /* Nav Overlay for Mobile */
        .nav-overlay {
            display: none !important;
        }
        
        .nav-overlay.active {
            display: none !important;
        }

        /* Float Buttons */
        .whatsapp-float {
            position: fixed;
            bottom: 80px;
            right: 20px;
            background: #25D366;
            color: white;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
        }
        
        .whatsapp-icon {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }
        
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: none;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: var(--shadow-soft);
            z-index: 999;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .back-to-top:hover {
            transform: scale(1.1);
            background: var(--primary-light);
        }
        
        .back-to-top.show {
            display: flex;
        }
        
        /* Tablet Responsiveness */
        .logo-text { font-family: 'Lora', Georgia, serif; font-size: clamp(1.05rem, 3.5vw, 1.6rem); white-space: nowrap; }
        @media (max-width: 1024px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 2rem;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .hero-doctors {
                justify-content: center;
            }
            
            .services-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .doctors-grid {
                max-width: 100%;
            }
            
            .locations-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 0 20px;
            }
            
            .nav {
                padding: 0.75rem 20px;
            }
            
            .logo {
                font-size: 1.1rem;
                max-width: 220px;
                line-height: 1.25;
            }
            
            .logo-img {
                height: 52px;
            }
            
            .theme-toggle {
                display: none;
            }
            
            .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;
            }
            
            /* Mobile Dropdown Styles */
            .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;
            }
            
            .hero {
                padding: 3rem 0 4rem;
            }
            
            .hero-container {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
                padding: 0;
            }
            
            .hero-content .subtitle {
                font-size: 1rem;
                padding: 0 1rem;
            }
            
            .hero-doctors {
                flex-direction: row;
                gap: 1.5rem;
                justify-content: center;
            }
            
            .hero-doctor-photo {
                width: clamp(110px, 28vw, 140px) !important;
                height: clamp(110px, 28vw, 140px) !important;
            }
            
            .hero-doctor-name {
                font-size: 0.85rem;
            }

            .hero-doctors {
                gap: 1rem;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-primary {
                width: 100%;
                max-width: 320px;
                justify-content: center;
                padding: 18px 32px;
                font-size: 1.1rem;
                font-weight: 700;
                box-shadow: 0 8px 25px rgba(255,255,255,0.2);
            }
            
            .btn-secondary {
                width: 100%;
                max-width: 320px;
                justify-content: center;
                padding: 16px 32px;
                font-size: 1rem;
                border-width: 2px;
            }
            
            .section {
                padding: 4rem 0;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.25rem;
                padding: 0 0.5rem;
            }
            
            .service-card {
                padding: 2rem 1.5rem;
                border-radius: 16px;
                box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            }
            
            .doctors-grid,
            .locations-grid {
                grid-template-columns: 1fr;
            }
            
            .doctor-card {
                padding: 2rem 1.5rem;
            }
            
            .section {
                padding: 3rem 0;
            }
            
            .section-subtitle {
                padding: 0 1rem;
                margin-bottom: 2.5rem;
            }
            
            .emergency-grid {
                grid-template-columns: 1fr;
            }
            
            .location-card {
                padding: 2rem 1.5rem;
            }
            
            .faq-question {
                padding: 1.25rem 1.5rem;
                font-size: 1rem;
            }
            
            .faq-answer {
                padding: 0 1.5rem 1.25rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-buttons {
                grid-template-columns: 1fr 1fr;
                gap: 0.6rem;
            }
            
            .emergency-desktop {
                display: none;
            }
            
            .emergency-mobile {
                display: inline;
            }
        }
        
        @media (min-width: 769px) {
            .emergency-desktop {
                display: inline;
            }
            
            .emergency-mobile {
                display: none;
            }
        }
        
        /* Medical Disclaimer */
        .medical-disclaimer {
            background-color: #FFFFFF !important; -webkit-appearance: none; backdrop-filter: none;
            border-top: 1px solid var(--border-color);
            padding: 2rem 0;
        }
        
        .medical-disclaimer p {
            font-size: 0.9rem;
            color: var(--text-gray);
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        /* ===== SMOOTH TRANSITIONS & ANIMATIONS ===== */
        
        /* Global smooth transitions */
        * {
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        a, button, .service-card, .doctor-card, .faq-item, .footer-btn, .location-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Scroll-triggered 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);
        }
        
        .reveal-left {
            opacity: 0;
            transform: translateX(-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-left.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        .reveal-right {
            opacity: 0;
            transform: translateX(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-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
        
        /* Staggered children animation */
        .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);
        }
        
        /* Small mobile */
        @media (max-width: 480px) {
            .hero {
                padding: 2rem 0 3rem;
            }
            .hero-content h1 {
                font-size: 1.75rem;
            }
            .hero-content .subtitle {
                font-size: 0.9rem;
            }
            .hero-doctor-photo {
                width: 100px !important;
                height: 100px !important;
                border-width: 3px;
            }
            .hero-doctor-name {
                font-size: 0.8rem;
            }
            .hero-doctors {
                gap: 0.75rem;
            }
            .hero-buttons {
                gap: 0.75rem;
            }
            .btn-primary, .btn-secondary {
                max-width: 280px;
                padding: 14px 24px;
                font-size: 0.95rem;
            }
        }

        /* Parallax hero */
        .hero {
            overflow: hidden;
            position: relative;
        }
        
        .hero-bg-parallax {
            position: absolute;
            inset: -20% 0;
            z-index: 0;
            will-change: transform;
        }
        
        .hero > .container,
        .hero > .hero-container {
            position: relative;
            z-index: 1;
        }
        
        /* Parallax floating dots enhancement */
        .floating-dot {
            transition: transform 0.1s linear;
        }
        
        /* Card hover micro-interactions */
        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
        }
        
        .location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
        }
        
        .faq-item:hover {
            border-color: var(--primary-color);
        }
        
        /* Stats counter animation */
        .stat-number {
            transition: color 0.3s ease;
        }
        
        /* Smooth page scroll */
        html {
            scroll-behavior: smooth;
        }
        
        /* Reduce motion for accessibility */
        @media (prefers-reduced-motion: reduce) {
            *, .reveal, .reveal-left, .reveal-right, .stagger-children > * {
                transition-duration: 0.01s !important;
                animation-duration: 0.01s !important;
            }
            .reveal, .reveal-left, .reveal-right {
                opacity: 1 !important;
                transform: none !important;
            }
            .stagger-children > * {
                opacity: 1 !important;
                transform: none !important;
            }
        }
    
        /* Logo Watermark - Parallax */
        .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;
        }
        
        @media (max-width: 768px) {
            .logo-watermark {
                width: 300px;
                height: 300px;
            }
        }

