
        /* ===== VARIABLES - Professional Medical Theme ===== */
        :root {
            /* Primary Colors - Trust & Excellence */
            --primary: #0b4f6c;        /* Deep Medical Blue */
            --primary-dark: #083d54;     /* Darker Navy */
            --primary-light: #e6f0f5;     /* Light Ice Blue */
            --primary-soft: #d4e7f0;       /* Soft Blue */
            
            /* Secondary Colors - Prestige & Care */
            --secondary: #2c7a7a;        /* Teal Green - Healing */
            --secondary-dark: #1e5f5f;     /* Dark Teal */
            --secondary-light: #d9f0f0;     /* Light Mint */
            --secondary-soft: #ecf7f7;       /* Soft Mint */
            
            /* Accent Colors - Warmth & Compassion */
            --accent: #c44536;            /* Terracotta - Warmth */
            --accent-dark: #a3372b;         /* Dark Terracotta */
            --accent-light: #fae1dc;         /* Light Peach */
            --accent-soft: #fff0ec;           /* Soft Peach */
            
            /* Gold - Excellence & Achievement */
            --gold: #c9a44c;               /* Warm Gold */
            --gold-light: #f5e7d3;           /* Light Gold */
            
            /* Neutral Colors - Professional */
            --text-dark: #1f2e3a;           /* Dark Slate */
            --text-body: #3a4b5a;            /* Medium Slate */
            --text-light: #5f6f80;            /* Light Slate */
            --bg-white: #ffffff;               /* Pure White */
            --bg-light: #f9fcff;                /* Soft Blue-White */
            --bg-soft: #f2f7fc;                  /* Very Soft Blue */
            
            /* Gradients - Elegant & Smooth */
            --gradient-primary: linear-gradient(145deg, #0b4f6c 0%, #2c7a7a 100%);
            --gradient-secondary: linear-gradient(145deg, #2c7a7a 0%, #0b4f6c 100%);
            --gradient-accent: linear-gradient(145deg, #c44536 0%, #c9a44c 100%);
            --gradient-gold: linear-gradient(145deg, #c9a44c 0%, #e6c27a 100%);
            --gradient-soft: linear-gradient(145deg, #f9fcff 0%, #ecf7f7 100%);
            
            /* Shadows - Depth & Elegance */
            --shadow-sm: 0 5px 20px rgba(11, 79, 108, 0.08);
            --shadow-md: 0 10px 30px rgba(11, 79, 108, 0.12);
            --shadow-lg: 0 20px 40px rgba(11, 79, 108, 0.15);
            --shadow-xl: 0 30px 60px rgba(11, 79, 108, 0.2);
            --shadow-gold: 0 15px 35px rgba(201, 164, 76, 0.2);
            --shadow-inner: inset 0 2px 10px rgba(0, 0, 0, 0.03);
            
            /* Transitions - All SLOW & Elegant */
            --transition-slow: all 1.8s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-medium: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-fast: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-bounce: all 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            
            /* Border Radius - Soft & Elegant */
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
            --radius-xl: 40px;
            --radius-full: 60px;
            --radius-circle: 50%;
            
            /* Spacing */
            --spacing-xs: 10px;
            --spacing-sm: 20px;
            --spacing-md: 30px;
            --spacing-lg: 50px;
            --spacing-xl: 80px;
        }
        
        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-light);
            color: var(--text-body);
            line-height: 1.7;
            overflow-x: hidden;
            width: 100%;
        }
        
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        /* ===== HERO SECTION ===== */
        .hero-section {
            background: var(--gradient-primary);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            isolation: isolate;
        }
        
        /* Animated Background Elements */
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatSlow 25s ease-in-out infinite;
            z-index: 0;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(201,164,76,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatSlow 30s ease-in-out infinite reverse;
            z-index: 0;
        }
        
        @keyframes floatSlow {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-40px, 40px) rotate(5deg); }
            50% { transform: translate(40px, -40px) rotate(-5deg); }
            75% { transform: translate(40px, 40px) rotate(5deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
        }
        
        .hero-badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 12px 35px;
            border-radius: var(--radius-full);
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 3px;
            margin-bottom: 30px;
            text-transform: uppercase;
            border: 1px solid rgba(255,255,255,0.3);
            transform: translateY(40px);
            opacity: 0;
            animation: fadeInUpGold 1.8s ease 0.2s forwards;
        }
        
        .hero-badge i {
            margin-right: 10px;
            color: var(--gold);
        }
        
        .hero-title {
            font-size: 72px;
            font-weight: 700;
            margin-bottom: 25px;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            transform: translateY(40px);
            opacity: 0;
            animation: fadeInUpGold 1.8s ease 0.4s forwards;
        }
        
        .hero-title span {
            display: block;
            font-size: 28px;
            font-weight: 400;
            margin-top: 10px;
            font-family: 'Playfair Display', serif;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #fff, var(--gold-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-description {
            max-width: 700px;
            margin: 0 auto;
            font-size: 19px;
            opacity: 0.95;
            transform: translateY(40px);
            opacity: 0;
            animation: fadeInUpGold 1.8s ease 0.6s forwards;
        }
        
        @keyframes fadeInUpGold {
            0% { opacity: 0; transform: translateY(40px); }
            100% { opacity: 1; transform: translateY(0); }
        }
        
        /* ===== SEARCH & FILTER SECTION ===== */
        .filter-section {
            padding: var(--spacing-lg) 0;
            background: white;
            box-shadow: var(--shadow-sm);
            /* position: sticky; */
            top: 0;
            z-index: 100;
            transform: translateY(-100%);
            opacity: 0;
            animation: slideDown 1.2s ease 0.8s forwards;
        }
        
        @keyframes slideDown {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .filter-container {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        .search-box {
            flex: 1;
            min-width: 300px;
            position: relative;
            transform: scale(0.95);
            opacity: 0;
            animation: scaleIn 1s ease 1.0s forwards;
        }
        
        @keyframes scaleIn {
            to { transform: scale(1); opacity: 1; }
        }
        
        .search-box i {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--primary);
            font-size: 18px;
        }
        
        .search-box input {
            width: 100%;
            padding: 18px 20px 18px 55px;
            border: 2px solid var(--primary-light);
            border-radius: var(--radius-full);
            font-size: 16px;
            transition: var(--transition-medium);
            background: var(--bg-light);
        }
        
        .search-box input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: scale(1.02);
        }
        
        .filter-buttons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        .filter-btn {
            padding: 14px 30px;
            border: 2px solid var(--primary-light);
            background: white;
            border-radius: var(--radius-full);
            color: var(--text-body);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-medium);
            transform: scale(0.95);
            opacity: 0;
            animation: filterBtnIn 1s ease forwards;
        }
        
        .filter-btn:nth-child(1) { animation-delay: 1.2s; }
        .filter-btn:nth-child(2) { animation-delay: 1.3s; }
        .filter-btn:nth-child(3) { animation-delay: 1.4s; }
        .filter-btn:nth-child(4) { animation-delay: 1.5s; }
        .filter-btn:nth-child(5) { animation-delay: 1.6s; }
        .filter-btn:nth-child(6) { animation-delay: 1.7s; }
        
        @keyframes filterBtnIn {
            to { transform: scale(1); opacity: 1; }
        }
        
        .filter-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px) scale(1.05);
            box-shadow: var(--shadow-md);
        }
        
        .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* ===== DOCTORS GRID SECTION ===== */
        .doctors-section {
            padding: var(--spacing-xl) 0;
            background: var(--bg-light);
            position: relative;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1.5s ease 1.8s forwards;
        }
        
        .section-subtitle {
            color: var(--primary);
            font-size: 18px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 4px;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }
        
        .section-subtitle::before,
        .section-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
            animation: pulseWidth 3s ease-in-out infinite;
        }
        
        .section-subtitle::before {
            right: 100%;
            margin-right: 20px;
        }
        
        .section-subtitle::after {
            left: 100%;
            margin-left: 20px;
        }
        
        @keyframes pulseWidth {
            0%, 100% { width: 50px; opacity: 0.5; }
            50% { width: 80px; opacity: 1; }
        }
        
        .section-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .section-title span {
            color: var(--primary);
            position: relative;
            display: inline-block;
        }
        
        .section-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 8px;
            background: rgba(11, 79, 108, 0.1);
            z-index: -1;
            animation: underlineExpand 3s ease-in-out infinite;
        }
        
        @keyframes underlineExpand {
            0%, 100% { width: 100%; left: 0; }
            50% { width: 120%; left: -10%; }
        }
        
        .section-description {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text-light);
            font-size: 18px;
        }
        
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }
        
        /* ===== DOCTOR CARD - ELEGANT DESIGN ===== */
        .doctor-card {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-slow);
            cursor: pointer;
            position: relative;
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            animation: cardEntrance 1.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
            border: 1px solid rgba(11, 79, 108, 0.1);
        }
        
        /* Staggered Animation for Cards */
        .doctor-card:nth-child(1) { animation-delay: 2.0s; }
        .doctor-card:nth-child(2) { animation-delay: 2.2s; }
        .doctor-card:nth-child(3) { animation-delay: 2.4s; }
        .doctor-card:nth-child(4) { animation-delay: 2.6s; }
        .doctor-card:nth-child(5) { animation-delay: 2.8s; }
        .doctor-card:nth-child(6) { animation-delay: 3.0s; }
        .doctor-card:nth-child(7) { animation-delay: 3.2s; }
        .doctor-card:nth-child(8) { animation-delay: 3.4s; }
        
        @keyframes cardEntrance {
            0% { opacity: 0; transform: translateY(50px) scale(0.95); }
            100% { opacity: 1; transform: translateY(0) scale(1); }
        }
        
        .doctor-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-xl);
            border-color: var(--gold);
        }
        
        /* Card Shine Effect */
        .doctor-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            transition: left 0.8s ease;
            z-index: 2;
            pointer-events: none;
        }
        
        .doctor-card:hover::before {
            left: 150%;
        }
        
        /* Image Container */
        .doctor-image {
            position: relative;
            height: 280px;
            overflow: hidden;
        }
        
        .doctor-image img {
            object-position:top;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }
        
        .doctor-card:hover .doctor-image img {
            transform: scale(1.15) rotate(2deg);
        }
        
        /* Status Badge */
        .doctor-status {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--gold);
            color: var(--text-dark);
            padding: 8px 18px;
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            z-index: 3;
            transform: translateX(50px);
            opacity: 0;
            transition: var(--transition-medium);
            box-shadow: var(--shadow-gold);
        }
        
        .doctor-card:hover .doctor-status {
            transform: translateX(0);
            opacity: 1;
        }
        
        /* Overlay with Social Links */
        .doctor-overlay {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(11, 79, 108, 0.95), transparent);
            padding: 25px;
            display: flex;
            justify-content: center;
            gap: 20px;
            transition: var(--transition-medium);
            z-index: 3;
        }
        
        .doctor-card:hover .doctor-overlay {
            bottom: 0;
        }
        
        .doctor-overlay a {
            width: 45px;
            height: 45px;
            background: white;
            border-radius: var(--radius-circle);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition-fast);
            transform: translateY(30px);
            opacity: 0;
            box-shadow: var(--shadow-md);
        }
        
        .doctor-card:hover .doctor-overlay a {
            transform: translateY(0);
            opacity: 1;
        }
        
        .doctor-overlay a:nth-child(1) { transition-delay: 0.1s; }
        .doctor-overlay a:nth-child(2) { transition-delay: 0.2s; }
        .doctor-overlay a:nth-child(3) { transition-delay: 0.3s; }
        
        .doctor-overlay a:hover {
            background: var(--gold);
            color: white;
            transform: translateY(-8px) scale(1.15);
            box-shadow: var(--shadow-lg);
        }
        
        /* Doctor Info */
        .doctor-info {
            padding: 25px;
            text-align: center;
            background: white;
            position: relative;
            z-index: 2;
        }
        
        .doctor-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient-gold);
            transition: var(--transition-medium);
        }
        
        .doctor-card:hover .doctor-info::before {
            width: 80%;
        }
        
        .doctor-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
            transition: var(--transition-fast);
        }
        
        .doctor-card:hover .doctor-name {
            color: var(--primary);
        }
        
        .doctor-specialty {
            color: var(--gold);
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .doctor-specialty::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: var(--transition-medium);
        }
        
        .doctor-card:hover .doctor-specialty::after {
            width: 50%;
        }
        
        .doctor-experience {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }
        
        .doctor-experience i {
            color: var(--gold);
        }
        
        .doctor-rating {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }
        
        .doctor-rating i {
            color: var(--gold);
            font-size: 14px;
            transition: var(--transition-fast);
        }
        
        .doctor-card:hover .doctor-rating i {
            transform: scale(1.2);
            animation: starPulse 1s ease infinite;
        }
        
        @keyframes starPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.3); color: var(--accent); }
        }
        
        .rating-count {
            color: var(--text-light);
            font-size: 13px;
            margin-left: 5px;
        }
        
        .doctor-badge {
            display: inline-block;
            padding: 5px 15px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: var(--radius-full);
            font-size: 12px;
            font-weight: 600;
            transition: var(--transition-medium);
        }
        
        .doctor-card:hover .doctor-badge {
            background: var(--primary);
            color: white;
            transform: scale(1.05);
        }
        
        /* Book Button */
        .book-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 12px 30px;
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition-medium);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .book-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: var(--primary);
            transform: translate(-50%, -50%);
            transition: width 0.8s ease, height 0.8s ease;
            z-index: -1;
        }
        
        .book-btn:hover {
            color: white;
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        
        .book-btn:hover::before {
            width: 300px;
            height: 300px;
        }
        
        /* ===== STATS SECTION ===== */
        .stats-section {
            padding: var(--spacing-xl) 0;
            background: var(--gradient-primary);
            position: relative;
            overflow: hidden;
            margin-top: 50px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .stat-card {
            text-align: center;
            color: white;
            padding: 40px 20px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: var(--radius-lg);
            border: 1px solid rgba(255,255,255,0.2);
            transition: var(--transition-slow);
            transform: translateY(30px);
            opacity: 0;
            animation: statFloat 1.5s ease forwards;
        }
        
        .stat-card:nth-child(1) { animation-delay: 3.6s; }
        .stat-card:nth-child(2) { animation-delay: 3.8s; }
        .stat-card:nth-child(3) { animation-delay: 4.0s; }
        .stat-card:nth-child(4) { animation-delay: 4.2s; }
        
        @keyframes statFloat {
            to { transform: translateY(0); opacity: 1; }
        }
        
        .stat-card:hover {
            transform: translateY(-15px) scale(1.05);
            background: rgba(255,255,255,0.15);
            border-color: var(--gold);
            box-shadow: var(--shadow-xl);
        }
        
        .stat-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--gold);
            transition: var(--transition-slow);
        }
        
        .stat-card:hover .stat-icon {
            transform: rotateY(360deg) scale(1.2);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
            font-family: 'Playfair Display', serif;
            transition: var(--transition-medium);
        }
        
        .stat-card:hover .stat-number {
            transform: scale(1.1);
            color: var(--gold);
        }
        
        .stat-label {
            font-size: 18px;
            text-transform: uppercase;
            letter-spacing: 2px;
            opacity: 0.9;
        }
        
        /* ===== FEATURED DOCTOR SECTION ===== */
        .featured-section {
            padding: var(--spacing-xl) 0;
            background: white;
        }
        
        .featured-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .featured-content {
            transform: translateX(-50px);
            opacity: 0;
            animation: slideInLeft 1.5s ease 4.4s forwards;
        }
        
        @keyframes slideInLeft {
            to { opacity: 1; transform: translateX(0); }
        }
        
        .featured-badge {
            display: inline-block;
            background: var(--gold-light);
            color: var(--gold);
            padding: 8px 25px;
            border-radius: var(--radius-full);
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .featured-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        .featured-title span {
            color: var(--primary);
        }
        
        .featured-text {
            color: var(--text-body);
            margin-bottom: 30px;
            font-size: 18px;
            line-height: 1.8;
        }
        
        .featured-list {
            list-style: none;
            margin-bottom: 30px;
        }
        
        .featured-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            transform: translateX(-20px);
            opacity: 0;
            animation: slideInList 1s ease forwards;
        }
        
        .featured-list li:nth-child(1) { animation-delay: 4.6s; }
        .featured-list li:nth-child(2) { animation-delay: 4.8s; }
        .featured-list li:nth-child(3) { animation-delay: 5.0s; }
        
        @keyframes slideInList {
            to { opacity: 1; transform: translateX(0); }
        }
        
        .featured-list i {
            width: 30px;
            height: 30px;
            background: var(--primary-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 14px;
        }
        
        .featured-image {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transform: translateX(50px);
            opacity: 0;
            animation: slideInRight 1.5s ease 4.4s forwards;
        }
        
        @keyframes slideInRight {
            to { opacity: 1; transform: translateX(0); }
        }
        
        .featured-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition-slow);
        }
        
        .featured-image:hover img {
            transform: scale(1.08);
        }
        
        .featured-quote {
            position: absolute;
            bottom: 30px;
            left: 30px;
            right: 30px;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            padding: 25px;
            border-radius: var(--radius-md);
            border-left: 5px solid var(--gold);
        }
        
        .featured-quote i {
            color: var(--gold);
            font-size: 30px;
            margin-bottom: 10px;
        }
        
        /* ===== CTA SECTION ===== */
        .cta-section {
            padding: var(--spacing-xl) 0;
            background: var(--gradient-soft);
            position: relative;
            overflow: hidden;
        }
        
        .cta-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
            transform: translateY(30px);
            opacity: 0;
            animation: fadeInUp 1.5s ease 5.2s forwards;
        }
        
        .cta-content h2 {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        
        .cta-content h2 span {
            color: var(--primary);
        }
        
        .cta-content p {
            font-size: 18px;
            color: var(--text-body);
            margin-bottom: 40px;
        }
        
        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 18px 45px;
            border-radius: var(--radius-full);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: var(--transition-medium);
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            transform: translate(-50%, -50%);
            transition: width 1s ease, height 1s ease;
            z-index: -1;
        }
        
        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }
        
        .btn-primary:hover::before {
            width: 300px;
            height: 300px;
        }
        
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        
        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-8px) scale(1.05);
            box-shadow: var(--shadow-xl);
        }
        
        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        @keyframes rotateSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        
        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .doctors-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .hero-title {
                font-size: 56px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 992px) {
            .doctors-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .featured-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .hero-title {
                font-size: 48px;
            }
            
            .hero-title span {
                font-size: 22px;
            }
            
            .section-title {
                font-size: 38px;
            }
            
            .filter-container {
                flex-direction: column;
            }
            
            .search-box {
                width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            .doctors-grid {
                grid-template-columns: 1fr;
                max-width: 450px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .hero-title {
                font-size: 36px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .featured-title {
                font-size: 32px;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .filter-buttons {
                width: 100%;
            }
            
            .filter-btn {
                flex: 1;
                min-width: 150px;
                text-align: center;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }
        
        @media (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }
            
            .hero-badge {
                font-size: 12px;
                padding: 8px 20px;
            }
            
            .section-title {
                font-size: 26px;
            }
            
            .doctor-card {
                max-width: 100%;
            }
            
            .filter-btn {
                min-width: 120px;
                padding: 12px 20px;
                font-size: 14px;
            }
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 14px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--primary-light);
            border-radius: 7px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(145deg, var(--primary), var(--gold));
            border-radius: 7px;
            transition: var(--transition-medium);
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(145deg, var(--gold), var(--primary));
            transform: scale(1.1);
        }
        
        /* Loading Animation */
        .loading {
            position: relative;
            overflow: hidden;
        }
        
        .loading::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
            animation: shimmer 2s infinite;
        }
        