/* 
 * Doctors Landing Page - ULTRA PREMIUM 3000x Styles
 * Version: 3.0 - 2026 Futuristic Healthcare UI
 */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;900&family=Poppins:wght@400;600;700;800&display=swap');

:root {
    /* Premium Color Palette - 2026 */
    --doc-primary: #2FA998;
    --doc-primary-dark: #248a7d;
    --doc-primary-light: #e8f7f5;
    --doc-primary-glow: rgba(47, 169, 152, 0.5);
    --doc-secondary: #D4AF37;
    --doc-accent: #3E84F6;
    --doc-dark: #0f0f1a;
    --doc-gray: #6b7280;
    --doc-light-gray: #f3f4f6;
    --doc-white: #ffffff;
    --doc-gradient-1: linear-gradient(135deg, #2FA998 0%, #37c4b0 50%, #2FA998 100%);
    --doc-gradient-neon: linear-gradient(90deg, #2FA998, #3E84F6, #D4AF37, #2FA998);
    
    /* Shadows - Enhanced */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 25px 60px rgba(0,0,0,0.12);
    --shadow-xl: 0 40px 80px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 40px rgba(47, 169, 152, 0.3);
    --shadow-neon: 0 0 20px var(--doc-primary-glow), 0 0 40px var(--doc-primary-glow);
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-elastic: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Keyframe Animations - 2026 */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(2deg); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(47, 169, 152, 0.4); }
    50% { box-shadow: 0 0 0 20px rgba(47, 169, 152, 0); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes scale-in {
    0% { transform: scale(0.9); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes neon-border {
    0%, 100% { border-color: var(--doc-primary); box-shadow: var(--shadow-neon); }
    50% { border-color: var(--doc-accent); box-shadow: 0 0 20px rgba(62, 132, 246, 0.5); }
}

@keyframes particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

@keyframes text-shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes border-dance {
    0%, 100% { clip-path: inset(0 0 98% 0); }
    25% { clip-path: inset(0 98% 0 0); }
    50% { clip-path: inset(98% 0 0 0); }
    75% { clip-path: inset(0 0 0 98%); }
}

@keyframes scroll-indicator {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(10px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--doc-gradient-neon);
    background-size: 300% 100%;
    animation: gradient-shift 3s ease infinite;
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: particle-float linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-duration: 15s; animation-delay: 0s; width: 8px; height: 8px; }
.particle:nth-child(2) { left: 20%; animation-duration: 18s; animation-delay: 2s; width: 12px; height: 12px; }
.particle:nth-child(3) { left: 30%; animation-duration: 12s; animation-delay: 4s; width: 6px; height: 6px; }
.particle:nth-child(4) { left: 40%; animation-duration: 20s; animation-delay: 1s; width: 10px; height: 10px; }
.particle:nth-child(5) { left: 50%; animation-duration: 14s; animation-delay: 3s; width: 14px; height: 14px; }
.particle:nth-child(6) { left: 60%; animation-duration: 16s; animation-delay: 5s; width: 8px; height: 8px; }
.particle:nth-child(7) { left: 70%; animation-duration: 22s; animation-delay: 0s; width: 6px; height: 6px; }
.particle:nth-child(8) { left: 80%; animation-duration: 13s; animation-delay: 2s; width: 12px; height: 12px; }
.particle:nth-child(9) { left: 90%; animation-duration: 17s; animation-delay: 4s; width: 10px; height: 10px; }
.particle:nth-child(10) { left: 95%; animation-duration: 19s; animation-delay: 1s; width: 8px; height: 8px; }

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--doc-white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.fab-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
    transform: translateY(5px) scale(0.9);
}

.fab-btn:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.fab-phone {
    background: linear-gradient(135deg, var(--doc-primary) 0%, var(--doc-primary-dark) 100%);
}

/* Cursor Glow Effect (Desktop only) */
@media (hover: hover) {
    .cursor-glow {
        position: fixed;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(47, 169, 152, 0.15) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: opacity 0.3s ease;
        opacity: 0;
    }
    
    .doctors-page-wrapper:hover .cursor-glow {
        opacity: 1;
    }
}

/* Gradient Border Animation */
.gradient-border {
    position: relative;
    background: var(--doc-white);
    z-index: 1;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--doc-gradient-neon);
    background-size: 300% 300%;
    border-radius: inherit;
    z-index: -1;
    animation: gradient-shift 4s ease infinite;
}

.gradient-border::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--doc-white);
    border-radius: inherit;
    z-index: -1;
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scroll-indicator 2s ease-in-out infinite;
}

.scroll-indicator-inner {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator-dot {
    width: 6px;
    height: 6px;
    background: var(--doc-white);
    border-radius: 50%;
    animation: scroll-indicator 1.5s ease-in-out infinite;
}

/* ========================================
   GLOBAL WRAPPER
   ======================================== */
.doctors-page-wrapper {
    font-family: 'Cairo', sans-serif;
    background: linear-gradient(180deg, #fff 0%, var(--doc-light-gray) 100%);
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   HERO SECTION - 2026 ULTRA PREMIUM
   ======================================== */
.doctors-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 200px;
    background: linear-gradient(135deg, #0d4f5c 0%, var(--doc-primary-dark) 30%, var(--doc-primary) 70%, #1a6b62 100%);
    background-size: 400% 400%;
    animation: gradient-shift 20s ease infinite;
    overflow: hidden;
}

/* Floating Decorative Elements */
.hero-decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.circle-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -150px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
    animation: float 12s infinite ease-in-out;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: 30px;
    left: 3%;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    animation: float 10s infinite ease-in-out reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 25%;
    left: 15%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    animation: float 7s infinite ease-in-out 1s;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 10px 25px;
    border-radius: 50px;
    color: var(--doc-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-badge i {
    color: var(--doc-secondary);
    font-size: 1.1rem;
}

/* Hero Content */
.doctors-hero .container {
    position: relative;
    z-index: 10;
}

/* Text Shimmer Effect */
.text-shimmer {
    background: linear-gradient(120deg, 
        var(--doc-white) 0%, 
        var(--doc-white) 40%, 
        var(--doc-secondary) 50%, 
        var(--doc-white) 60%, 
        var(--doc-white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shimmer 4s linear infinite;
}

.doctors-hero .doctors-title {
    font-size: clamp(2.8rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--doc-white);
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
    letter-spacing: -1px;
}

.doctors-hero .doctors-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 400;
    line-height: 1.8;
}

/* CTA Button */
.hero-cta-wrapper .btn-primary {
    background: var(--doc-white);
    color: var(--doc-primary);
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-cta-wrapper .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: 0.5s;
}

.hero-cta-wrapper .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    color: var(--doc-primary-dark);
}

.hero-cta-wrapper .btn-primary:hover::before {
    animation: shine 0.8s ease;
}

/* Glow Button Effect */
.btn-glow {
    animation: pulse-glow 2s infinite;
}

.btn-glow span {
    position: relative;
    z-index: 2;
}

.btn-glow i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-glow:hover i {
    transform: translateY(3px);
    animation: scroll-indicator 1s ease-in-out infinite;
}

/* Hero Wave Divider */
.custom-shape-divider-bottom {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(140% + 1.3px);
    height: 120px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #FFFFFF;
}

/* ========================================
   FILTER SECTION - GLASSMORPHISM 
   ======================================== */
.doctors-filter-section {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: var(--transition-fast);
}

/* .doctors-filter-section.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
} */

.filter-tabs-wrapper {
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 12px 20px;
    border-radius: 60px;
    box-shadow: var(--shadow-lg);
}

.filter-tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filter-tabs::-webkit-scrollbar {
    display: none;
}

.filter-tab {
    padding: 12px 28px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--doc-dark);
    background: transparent;
    transition: var(--transition-smooth);
    white-space: nowrap;
    border: 2px solid transparent;
    position: relative;
}

.filter-tab::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 30px;
    height: 3px;
    background: var(--doc-primary);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.filter-tab:hover {
    color: var(--doc-primary);
    background: var(--doc-primary-light);
}

.filter-tab:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.filter-tab.active {
    background: linear-gradient(135deg, var(--doc-primary) 0%, var(--doc-primary-dark) 100%);
    color: var(--doc-white);
    box-shadow: 0 8px 25px rgba(47, 169, 152, 0.35);
    transform: scale(1.05);
}

.filter-tab.active::after {
    display: none;
}

/* ========================================
   DOCTORS GRID SECTION
   ======================================== */
.doctors-grid-section {
    padding: 80px 0 120px;
    background: var(--doc-white);
    position: relative;
}

/* ========================================
   DOCTOR CARD - PREMIUM 3D DESIGN
   ======================================== */
.doctor-card {
    background: var(--doc-white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid rgba(0,0,0,0.03);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.doctor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(47,169,152,0.03) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 0;
}

.doctor-card:hover {
    transform: translateY(-20px) rotateX(2deg);
    box-shadow: var(--shadow-xl);
}

.doctor-card:hover::before {
    opacity: 1;
}

/* Card Header */
.card-header-bg {
    background: linear-gradient(135deg, var(--doc-primary) 0%, #37c4b0 100%);
    padding: 50px 25px 60px;
    position: relative;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Animated Background Pattern */
.card-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Shine Effect on Hover */
.card-sweep {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
}

.doctor-card:hover .card-sweep {
    animation: shine 0.6s ease-out;
}

/* Rating Badge */
.rating-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--doc-white);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 5;
    animation: pulse-glow 3s infinite;
}

.rating-badge i {
    color: var(--doc-secondary);
}

/* Doctor Avatar */
.doctor-avatar-wrapper {
    width: 150px;
    height: 150px;
    background: var(--doc-white);
    border-radius: 50%;
    border: 6px solid rgba(255,255,255,0.3);
    overflow: hidden;
    position: relative;
    z-index: 5;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.doctor-card:hover .doctor-avatar-wrapper {
    transform: scale(1.08);
    border-color: rgba(255,255,255,0.6);
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--doc-primary);
    font-size: 4rem;
}

/* Card Body */
.card-body {
    padding: 35px 25px 30px;
    position: relative;
    z-index: 1;
}

.doctor-name {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--doc-dark);
    margin-bottom: 8px;
    transition: var(--transition-fast);
}

.doctor-card:hover .doctor-name {
    color: var(--doc-primary);
}

.doctor-role {
    color: var(--doc-accent);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0;
    display: inline-block;
    padding: 5px 15px;
    background: rgba(62, 132, 246, 0.1);
    border-radius: 20px;
}

/* Card Divider */
.card-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--doc-primary-light), transparent);
    margin: 25px 0;
}

/* Info Groups */
.doctor-info-group {
    margin-bottom: 20px;
}

.info-group-title {
    font-size: 1rem;
    font-weight: 800;
    color: var(--doc-accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-group-title i {
    font-size: 1.1rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    font-size: 0.9rem;
    color: var(--doc-gray);
    margin-bottom: 10px;
    position: relative;
    padding-right: 22px;
    line-height: 1.6;
}

.info-list li::before {
    content: "";
    position: absolute;
    right: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--doc-secondary);
    border-radius: 50%;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.doctors-features-section {
    padding: 100px 0;
    background: var(--doc-white);
    position: relative;
}

.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(130% + 1.3px);
    height: 100px;
}

.custom-shape-divider-top .shape-fill {
    fill: var(--doc-light-gray);
}

.feature-card {
    background: var(--doc-white);
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
    border-color: var(--doc-primary-light);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--doc-primary-light) 0%, rgba(47,169,152,0.15) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--doc-primary) 0%, var(--doc-primary-dark) 100%);
    transform: rotateY(360deg);
}

.feature-card:hover .feature-icon i {
    color: var(--doc-white) !important;
}

.feature-card h3 {
    font-weight: 800;
    color: var(--doc-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--doc-gray);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIALS SECTION - NEW DESIGN
   ======================================== */
.testimonials-section {
    background: var(--doc-white);
    padding: 80px 0;
}

/* Decorated Section Title */
.section-title-decorated {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--doc-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.section-title-decorated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--doc-secondary), #f5d76e);
    border-radius: 10px;
}

/* New Testimonial Card */
.testimonial-card-new {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0,0,0,0.04);
}

.testimonial-card-new:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--doc-white);
}

.testimonial-rating {
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    color: #FFB800;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--doc-gray);
    margin-bottom: 20px;
    text-align: right;
}

.testimonial-author {
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 15px;
}

.author-name {
    font-weight: 700;
    color: var(--doc-dark);
    font-size: 0.95rem;
    filter: blur(4px);
    transition: filter 0.3s ease;
    cursor: default;
    user-select: none;
}

.testimonial-card-new:hover .author-name {
    filter: blur(3px);
}

/* Old testimonial card (fallback) */
.testimonial-card {
    border: none;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg) !important;
}

.testimonial-card p {
    position: relative;
    z-index: 1;
    font-style: italic;
    color: var(--doc-dark);
    line-height: 1.8;
}

/* ========================================
   STATS SECTION
   ======================================== */
.doctors-stats-section {
    background: linear-gradient(135deg, var(--doc-dark) 0%, #0f0f1a 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.doctors-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.stat-item {
    position: relative;
    z-index: 2;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--doc-secondary);
    display: block;
    margin-bottom: 10px;
    direction: ltr;
    unicode-bidi: bidi-override;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
}

/* ========================================
   BOOKING CTA SECTION
   ======================================== */
.booking-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--doc-primary) 0%, var(--doc-primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.booking-cta-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 50%;
}

.booking-cta-content h2 {
    color: var(--doc-white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
}

.booking-cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--doc-white);
    color: var(--doc-primary);
    padding: 20px 45px;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-lg);
}

.btn-book-now:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl);
    color: var(--doc-primary-dark);
}

.btn-book-now i {
    font-size: 1.4rem;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .doctors-hero {
        min-height: 60vh;
        padding: 100px 0 150px;
    }
}

@media (max-width: 991px) {
    .doctors-hero .doctors-title {
        font-size: 2.8rem;
    }
    
    .filter-tabs-wrapper {
        border-radius: 30px;
        padding: 10px 15px;
    }
    
    .filter-tab {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .doctor-card:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .doctors-hero {
        min-height: auto;
        padding: 80px 0 120px;
    }
    
    .doctors-hero .doctors-title {
        font-size: 2.2rem;
    }
    
    .hero-cta-wrapper .btn-primary {
        padding: 15px 35px;
        font-size: 1rem;
    }
    
    .custom-shape-divider-bottom svg {
        height: 60px;
    }
    
    .doctors-filter-section {
        top: 0;
    }
    
    .doctors-grid-section,
    .doctors-features-section,
    .testimonials-section,
    .doctors-stats-section {
        padding: 60px 0;
    }
    
    .doctor-card {
        border-radius: 20px;
    }
    
    .card-header-bg {
        padding: 40px 20px 50px;
    }
    
    .doctor-avatar-wrapper {
        width: 120px;
        height: 120px;
    }
    
    .card-body {
        padding: 25px 20px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .filter-tabs {
        justify-content: flex-start;
        gap: 5px;
    }
    
    .filter-tab {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

/* ========================================
   ACCESSIBILITY & FOCUS STATES
   ======================================== */
.filter-tab:focus-visible,
.btn-primary:focus-visible,
.btn-book-now:focus-visible {
    outline: 3px solid var(--doc-secondary);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   FOOTER SECTION - ENHANCED
   ======================================== */
.landing-footer-section {
    background: linear-gradient(135deg, #0d4f5c 0%, #0a3640 50%, #051d24 100%);
    padding: 80px 0 40px;
    color: var(--doc-white);
    position: relative;
    overflow: hidden;
}

.landing-footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
    pointer-events: none;
}

.footer-logo-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-logo {
    max-width: 160px;
    margin-bottom: 25px;
    filter: brightness(1.1);
}

.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: var(--doc-white);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background: var(--doc-primary);
    border-color: var(--doc-primary);
    color: var(--doc-white);
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(47, 169, 152, 0.4);
}

.social-icon.twitter:hover {
    background: #1DA1F2;
    border-color: #1DA1F2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}

.glass-card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 24px;
    padding: 30px;
    height: 100%;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.footer-icon-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--doc-primary) 0%, #37c4b0 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--doc-white);
    box-shadow: 0 8px 20px rgba(47, 169, 152, 0.3);
}

.footer-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--doc-white);
    margin-bottom: 6px;
}

.footer-subtitle {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0;
    font-weight: 400;
}

.footer-details {
    margin-bottom: 20px;
    padding-right: 63px;
}

.footer-phone,
.footer-email,
.footer-address {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    margin-bottom: 8px;
    line-height: 1.7;
}

.footer-phone {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--doc-white);
    letter-spacing: 0.5px;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding-right: 63px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-cta i {
    font-size: 1rem;
}

.btn-call {
    background: linear-gradient(135deg, var(--doc-primary) 0%, #37c4b0 100%);
    color: var(--doc-white);
    box-shadow: 0 6px 20px rgba(47, 169, 152, 0.35);
}

.btn-call:hover {
    background: linear-gradient(135deg, #37c4b0 0%, var(--doc-primary) 100%);
    color: var(--doc-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(47, 169, 152, 0.5);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--doc-white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: var(--doc-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

.btn-map {
    background: rgba(255,255,255,0.08);
    color: var(--doc-white);
    border: 1px solid rgba(255,255,255,0.25);
}

.btn-map:hover {
    background: var(--doc-primary);
    color: var(--doc-white);
    border-color: var(--doc-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(47, 169, 152, 0.4);
}

.footer-copyright {
    text-align: center;
    padding-top: 35px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 2;
}

.footer-copyright p {
    color: rgba(255,255,255,0.45);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .landing-footer-section {
        padding: 60px 0 30px;
    }
    
    .footer-col {
        margin-bottom: 25px;
    }
    
    .footer-details,
    .footer-actions {
        padding-right: 0;
    }
}

@media (max-width: 767px) {
    .glass-card {
        padding: 25px 20px;
    }
    
    .footer-icon-box {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-icon {
        margin: 0 auto 15px;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-actions {
        justify-content: center;
    }
    
    .footer-details {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .btn-cta {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
    
    .btn-cta span {
        display: none;
    }
    
    .btn-cta i {
        margin: 0;
    }
}


.copyright-wrapper {
    display: none !important;
}

#header,.header_contact {
    display: none !important;
}