/* ================================
   CSS DESIGN SYSTEM
   Dr. Navjot Healthcare Center
   ================================ */

/* Custom Properties */
:root {
    /* Primary Colors */
    --primary: #0d9488;
    --primary-light: #0f766e;
    --primary-dark: #115e59;
    --primary-50: rgba(13, 148, 136, 0.06);
    --primary-100: rgba(13, 148, 136, 0.12);
    --primary-200: rgba(13, 148, 136, 0.2);

    /* Accent Colors */
    --accent-purple: #7c3aed;
    --accent-pink: #db2777;
    --accent-amber: #d97706;
    --accent-emerald: #059669;
    --accent-blue: #2563eb;

    /* Light Theme Neutrals */
    --bg-body: #f8fafb;
    --bg-section-alt: #ffffff;
    --bg-section: #f1f5f9;
    --bg-card: #ffffff;
    --bg-footer: #0f2b29;
    --bg-footer-alt: #134e4a;

    /* Text Colors */
    --text-heading: #1e293b;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-light: #cbd5e1;

    /* Borders */
    --border-light: #e2e8f0;
    --border-lighter: #f1f5f9;

    /* Hero (stays dark) */
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.8);
    --white-60: rgba(255, 255, 255, 0.6);
    --white-40: rgba(255, 255, 255, 0.4);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0d9488, #14b8a6, #2dd4bf);
    --gradient-hero: linear-gradient(135deg, #0a0f1a 0%, #0f172a 50%, #0a1628 100%);
    --gradient-card: none;
    --gradient-glow: radial-gradient(circle, rgba(13, 148, 136, 0.15), transparent 70%);
    --gradient-text: linear-gradient(135deg, #0d9488, #0f766e, #115e59);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 30px rgba(13, 148, 136, 0.2);
    --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.06);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1240px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ================================
   RESET & BASE
   ================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-body);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* ================================
   PRELOADER
   ================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heart-icon {
    color: var(--primary);
    animation: heartbeat 1.2s ease-in-out infinite;
    z-index: 1;
}

.pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    top: -20px; /* Offset to stay centered on heart when heart is above text */
    border-radius: 50%;
    border: 2px solid var(--primary-200);
    animation: pulseRing 1.5s ease-out infinite;
}

.pulse-ring:nth-child(2) { animation-delay: 0.3s; }
.pulse-ring:nth-child(3) { animation-delay: 0.6s; }

@keyframes pulseRing {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.15); }
    50% { transform: scale(1); }
    75% { transform: scale(1.1); }
}

.loader-text {
    margin-top: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: fadeIn 0.8s ease-out forwards;
}

.loader-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.5px;
    line-height: 1;
}

.loader-sub {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ================================
   TYPOGRAPHY
   ================================ */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--primary-50);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid var(--primary-200);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-body);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-light {
    background: linear-gradient(135deg, #ffffff, #a7f3d0, #5eead4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ================================
   BUTTONS
   ================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(13, 148, 136, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13, 148, 136, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--white-80);
    border: 1px solid var(--white-20);
}

.btn-ghost:hover {
    background: var(--white-10);
    border-color: var(--white-40);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-white {
    background: var(--white);
    color: var(--dark-800);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white-40);
}

.btn-outline-white:hover {
    background: var(--white-10);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ================================
   NAVBAR
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    will-change: padding, background-color;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    z-index: 1001;
}

.navbar.scrolled .nav-logo {
    color: var(--text-heading);
}

.navbar.scrolled .logo-sub {
    color: var(--primary);
    font-weight: 700;
}

.nav-logo .logo-icon {
    color: var(--primary-light);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--white);
    opacity: 0.9;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 16px;
    color: var(--white-60);
    font-size: 0.88rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
}

.nav-link.active {
    background: var(--white-10);
}

.navbar.scrolled .nav-link {
    color: var(--text-body);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.navbar.scrolled .nav-link.active {
    background: var(--primary-50);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(13, 148, 136, 0.3);
    transition: var(--transition-base);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.navbar.scrolled .hamburger span {
    background: var(--text-heading);
}

.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(5px, -5px);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ================================
   HERO SECTION
   ================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,15,26,0.95) 0%, rgba(10,15,26,0.7) 50%, rgba(10,15,26,0.9) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(45, 212, 191, 0.1);
    color: #5eead4;
    border: 1px solid rgba(45, 212, 191, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--white-80);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
}

.stat-item {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #2dd4bf;
    display: inline-block;
    font-family: var(--font-primary);
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.5px;
}

.stat-suffix {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2dd4bf;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--white-80);
    margin-top: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--white-10);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    will-change: transform;
    transform-style: preserve-3d;
    transition: transform 0.2s ease-out;
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 10%;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255,255,255,0.28), rgba(255,255,255,0));
    opacity: 0.45;
    mix-blend-mode: screen;
    transform: translateZ(50px);
    pointer-events: none;
}

.hero-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.55;
    pointer-events: none;
    transform-style: preserve-3d;
}

.hero-aurora-1 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 2%;
    background: radial-gradient(circle, rgba(94, 234, 212, 0.55) 0%, rgba(94, 234, 212, 0) 72%);
    animation: auroraDrift 8s ease-in-out infinite;
}

.hero-aurora-2 {
    width: 220px;
    height: 220px;
    bottom: 8%;
    left: 4%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.34) 0%, rgba(59, 130, 246, 0) 72%);
    animation: auroraDrift 10s ease-in-out infinite reverse;
}

.hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: var(--radius-2xl);
}

.hero-image-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: var(--gradient-glow);
    filter: blur(40px);
}

.hero-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    pointer-events: none;
    transform-style: preserve-3d;
}

.hero-orbit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5eead4, #0d9488);
    box-shadow: 0 0 20px rgba(94, 234, 212, 0.45);
}

.orbit-1 {
    width: 560px;
    height: 560px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(72deg) rotateY(8deg);
    animation: orbitSpin 20s linear infinite;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateX(72deg) rotateY(-12deg);
    animation: orbitSpinReverse 14s linear infinite;
}

/* Floating Cards */
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(40px);
}

.hero-float-card svg {
    color: var(--primary-light);
    flex-shrink: 0;
}

.float-title {
    font-weight: 700;
    font-size: 0.9rem;
    display: block;
}

.float-text {
    font-size: 0.75rem;
    color: var(--dark-300);
    display: block;
}

.card-1 {
    top: 70%;
    right: -40px;
    animation-delay: 0s;
}

.card-2 {
    bottom: 5%;
    left: -40px;
    animation-delay: 3s;
}

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

/* ================================
   ABOUT SECTION
   ================================ */
.about {
    background: var(--bg-section-alt);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 8s ease;
    filter: contrast(1.08) brightness(1.05) saturate(1.05);
    image-rendering: -webkit-optimize-contrast;
}

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

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 24px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-glow);
    border: 3px solid var(--bg-section-alt);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.about-text {
    font-size: 1rem;
    color: var(--text-body);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.highlight-item h4 {
    font-size: 1rem;
    color: var(--text-heading);
    margin-bottom: 4px;
    font-weight: 600;
}

.highlight-item p {
    font-size: 0.88rem;
    color: var(--text-body);
}

/* ================================
   DOCTORS SECTION
   ================================ */
.doctors {
    background: var(--bg-section);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

@media (max-width: 1100px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.doctor-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: var(--transition-slow);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
}

.doctor-card:hover {
    border-color: var(--primary-200);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.doctor-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 400px;
    width: 100%;
    background: var(--bg-section);
    flex-shrink: 0;
}

.doctor-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 20%; /* Standardize head position */
    transition: transform 0.8s ease;
}

.doctor-card:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 118, 110, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-base);
}

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

.doctor-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--white-10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.doctor-badge-exp {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 16px;
    background: rgba(13, 148, 136, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
}

.doctor-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    transform: translateZ(24px);
}

.doctor-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 6px;
    font-weight: 700;
}

.doctor-title {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.tag {
    padding: 4px 12px;
    background: var(--primary-50);
    border: 1px solid var(--primary-200);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 500;
}

.doctor-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
}

.doctor-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.meta-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.doctor-cta {
    width: 100%;
    justify-content: center;
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    background: var(--bg-section-alt);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    padding: 36px;
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
}

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

.service-card:hover {
    border-color: var(--primary-200);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-base);
    transform: translateZ(24px);
}

.service-card:hover .service-icon {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.service-icon.icon-purple {
    background: rgba(139, 92, 246, 0.1);
    color: var(--accent-purple);
}
.service-card:hover .icon-purple {
    background: var(--accent-purple);
    color: var(--white);
}

.service-icon.icon-pink {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent-pink);
}
.service-card:hover .icon-pink {
    background: var(--accent-pink);
    color: var(--white);
}

.service-icon.icon-amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-amber);
}
.service-card:hover .icon-amber {
    background: var(--accent-amber);
    color: var(--white);
}

.service-icon.icon-emerald {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-emerald);
}
.service-card:hover .icon-emerald {
    background: var(--accent-emerald);
    color: var(--white);
}

.service-icon.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
}
.service-card:hover .icon-blue {
    background: var(--accent-blue);
    color: var(--white);
}

.service-title {
    font-size: 1.2rem;
    color: var(--text-heading);
    margin-bottom: 12px;
    font-weight: 700;
}

.service-desc {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.service-features span {
    font-size: 0.82rem;
    color: var(--primary-dark);
    font-weight: 500;
}

/* ================================
   FACILITIES SECTION
   ================================ */
.facilities {
    background: var(--bg-section);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.facility-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: var(--transition-slow);
    position: relative;
    box-shadow: var(--shadow-sm);
    transform-style: preserve-3d;
    will-change: transform;
}

.facility-card:hover {
    border-color: var(--primary-200);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.facility-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
    transition: var(--transition-base);
    transform: translateZ(22px);
}

.facility-card:hover .facility-number {
    opacity: 0.8;
}

.facility-card h3 {
    font-size: 1.15rem;
    color: var(--text-heading);
    margin-bottom: 12px;
    font-weight: 700;
}

.facility-card p {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.7;
}

/* ================================
   TESTIMONIALS SECTION
   ================================ */
.testimonials {
    background: var(--bg-section-alt);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: 100%;
    padding: 48px;
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    margin: 0 auto;
    max-width: 720px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .testimonials-track {
        gap: 28px;
    }
    .testimonial-card {
        min-width: calc(50% - 14px);
    }
}

.testimonial-stars {
    font-size: 1.3rem;
    color: var(--accent-amber);
    margin-bottom: 20px;
    letter-spacing: 4px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-heading);
    font-size: 0.95rem;
}

.author-role {
    display: block;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    color: var(--text-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--border-light);
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot.active {
    background: var(--primary);
    width: 32px;
}

/* ================================
   CTA SECTION
   ================================ */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-bg-effects {
    position: absolute;
    inset: 0;
    overflow: hidden;
    perspective: 1200px;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    left: -80px;
}

.cta-orbit {
    position: absolute;
    inset: auto;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    transform-style: preserve-3d;
    pointer-events: none;
}

.cta-orbit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 0 20px rgba(255,255,255,0.35);
}

.orbit-a {
    width: 520px;
    height: 520px;
    top: -120px;
    right: -110px;
    transform: rotateX(74deg) rotateZ(0deg);
    animation: ctaOrbitSpin 22s linear infinite;
}

.orbit-b {
    width: 340px;
    height: 340px;
    bottom: -120px;
    left: -40px;
    transform: rotateX(74deg) rotateZ(0deg);
    animation: ctaOrbitSpinReverse 18s linear infinite;
}

.cta-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.92), rgba(255,255,255,0.18) 45%, rgba(255,255,255,0.02) 80%);
    box-shadow: inset -20px -20px 40px rgba(13, 148, 136, 0.18), 0 25px 50px rgba(0,0,0,0.12);
    backdrop-filter: blur(4px);
    animation: sphereFloat 7s ease-in-out infinite;
}

.sphere-a {
    width: 88px;
    height: 88px;
    top: 18%;
    left: 12%;
}

.sphere-b {
    width: 132px;
    height: 132px;
    bottom: 12%;
    right: 15%;
    animation-delay: 1.6s;
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    background: var(--bg-section);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.contact-card:hover {
    border-color: var(--primary-200);
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card h4 {
    color: var(--text-heading);
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-card p {
    font-size: 0.88rem;
    color: var(--text-body);
    line-height: 1.6;
}

.contact-map {
    margin-top: 8px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-heading);
    margin-bottom: 28px;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-heading);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-section);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-heading);
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-100);
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239ca3af' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-group select option {
    background: var(--white);
    color: var(--text-heading);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--bg-footer);
    padding: 80px 0 0;
    border-top: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo .logo-icon {
    color: #2dd4bf;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--white-60);
    line-height: 1.7;
}

.footer-links-group h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group a {
    font-size: 0.9rem;
    color: var(--white-60);
    transition: var(--transition-base);
}

.footer-links-group a:hover {
    color: #2dd4bf;
    padding-left: 8px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: var(--white-60);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: var(--white-40);
}

/* ================================
   BACK TO TOP
   ================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-glow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ================================
   ANIMATIONS
   ================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="float"] {
    opacity: 1;
    transform: none;
}

[data-animate].in-view {
    opacity: 1;
    transform: none;
}

/* ================================
   PARTICLES
   ================================ */
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0;
    animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

@keyframes auroraDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -20px, 40px) scale(1.08); }
}

@keyframes orbitSpin {
    from { transform: translate(-50%, -50%) rotateX(72deg) rotateY(8deg) rotateZ(0deg); }
    to { transform: translate(-50%, -50%) rotateX(72deg) rotateY(8deg) rotateZ(360deg); }
}

@keyframes orbitSpinReverse {
    from { transform: translate(-50%, -50%) rotateX(72deg) rotateY(-12deg) rotateZ(360deg); }
    to { transform: translate(-50%, -50%) rotateX(72deg) rotateY(-12deg) rotateZ(0deg); }
}

@keyframes sphereFloat {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -16px, 30px); }
}

@keyframes ctaOrbitSpin {
    from { transform: rotateX(74deg) rotateZ(0deg); }
    to { transform: rotateX(74deg) rotateZ(360deg); }
}

@keyframes ctaOrbitSpinReverse {
    from { transform: rotateX(74deg) rotateZ(360deg); }
    to { transform: rotateX(74deg) rotateZ(0deg); }
}

[data-tilt] {
    transform-style: preserve-3d;
    transform: perspective(1200px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(var(--tilt-lift, 0));
    transition: transform 0.18s ease-out, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

[data-tilt]::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255,255,255,0.18), transparent 42%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

[data-tilt].is-tilting::after {
    opacity: 1;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 24px 60px;
    }

    .hero-subtitle { margin: 0 auto 36px; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }

    .hero-image {
        height: 300px;
    }

    .orbit-1 {
        width: 420px;
        height: 420px;
    }

    .orbit-2 {
        width: 320px;
        height: 320px;
    }

    .card-1 { top: 10%; right: 0; }
    .card-2 { bottom: 10%; left: 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-img-main img { height: 350px; }

    .doctors-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        transition: var(--transition-slow);
        z-index: 1000;
        border-left: 1px solid var(--border-light);
        gap: 4px;
        box-shadow: -8px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        font-size: 1rem;
        color: var(--text-body);
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--primary);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .hero-float-card {
        display: none;
    }

    .hero-orbit,
    .hero-aurora,
    .cta-orbit,
    .cta-sphere {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .testimonial-card {
        padding: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-aurora,
    .hero-orbit,
    .cta-orbit,
    .cta-sphere,
    .hero-float-card,
    .particle,
    [data-tilt] {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 90px 16px 40px;
    }

    .container {
        padding: 0 16px;
    }

    .service-card,
    .facility-card {
        padding: 24px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
    }
}

/* ================================
   SMOOTH SCROLL BAR
   ================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Selection */
::selection {
    background: var(--primary);
    color: var(--white);
}
