:root {
    /* Apollo-Inspired Institutional Palette */
    --brand-blue: #007492;
    /* Institutional Teal */
    --brand-blue-tint: #E8F4FD;
    --brand-navy: #002D39;
    /* Deep Medical Navy */
    --brand-red: #E31E24;
    --brand-red-light: rgba(227, 30, 36, 0.1);
    --brand-red-dark: #C1161B;
    --brand-accent: var(--brand-red);
    --brand-cream: #FEF9F6;
    /* Warm Hospital Beige */
    --brand-white: #FFFFFF;

    /* Functional Colors */
    --text-main: #002D39;
    --text-muted: #5A6A85;
    --text-on-dark: #F8FAFC;
    --bg-white: var(--brand-white);
    --bg-cream: var(--brand-cream);

    /* Premium Radius */
    --border-radius-lg: 32px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    /* Apollo Easing */
    --easing-apollo: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-premium: all 0.4s var(--easing-apollo);
    --transition-slow: all 0.6s var(--easing-apollo);
    --transition-medium: all 0.4s var(--easing-apollo);
    --easing-apple: var(--easing-apollo);

    /* Spacing & Borders */
    --section-padding: 160px;
    --utility-bg: var(--brand-navy);
    --utility-height: 48px;

    /* Premium Shadow System - Multi-layered for depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 79, 158, 0.06);
    --shadow-lg: 0 30px 60px rgba(11, 17, 32, 0.1);
    --shadow-xl: 0 50px 100px rgba(11, 17, 32, 0.15);

}


.blue-line-top {
    border-top: none;
}

.text-blue-accent {
    color: var(--brand-blue) !important;
}

.bg-blue-tint {
    background-color: rgba(165, 201, 237, 0.05) !important;
}

/* â”€â”€ Utility Top Bar & Ticker â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.utility-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--utility-height);
    background: var(--brand-navy);
    z-index: 2100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    overflow: hidden;
}

.utility-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.ticker-container {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: 15px;
    overflow: hidden;
    position: relative;
}

.ticker-label {
    background: var(--brand-red);
    color: white;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(227, 30, 36, 0.3);
}

.ticker-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    contain: paint;
    isolation: isolate;
    mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%);
}

.ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: ticker-scroll 30s linear infinite;
    color: rgba(255, 255, 255, 0.92);
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
    will-change: transform;
}

.ticker-content span {
    margin-right: 60px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.utility-helpline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    flex-shrink: 0;
    padding: 0 18px;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.utility-helpline i {
    color: var(--brand-red);
    font-size: 12px;
}

.utility-helpline span {
    font-weight: 700;
    color: white;
    margin-left: 3px;
}

.member-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
}

.member-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    transition: var(--transition-medium);
    white-space: nowrap;
}

.member-link:hover {
    color: var(--brand-red);
}

.member-link.highlight {
    color: white;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 5px 14px;
    border-radius: 4px;
    backdrop-filter: blur(5px);
}

.member-link.highlight:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    color: white;
}

/* â”€â”€ Apollo-Inspired Floating Sidebar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.medical-floating-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2050;
}

.floating-action {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--brand-navy);
    font-size: 18px;
    text-decoration: none;
    transition: var(--transition-medium);
    border: 1px solid rgba(165, 201, 237, 0.2);
    position: relative;
}

.action-label {
    position: absolute;
    left: 60px;
    background: var(--brand-navy);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition-medium);
    pointer-events: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.action-label::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 6px solid var(--brand-navy);
}

.floating-action:hover {
    background: var(--brand-blue);
    color: white;
    transform: scale(1.02);
}

.floating-action:hover .action-label {
    opacity: 1;
    transform: translateX(0);
}

.utility-helpline {
    color: white;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.utility-helpline i {
    color: var(--brand-red);
}

.utility-helpline span {
    color: white;
    font-weight: 700;
}

/* Top Pill Button */
.top-pill-cta {
    background: #FFF9E6;
    border: 1px solid #FFD8A8;
    padding: 12px 32px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #A67C00;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-medium);
    margin-right: 20px;
}

.top-pill-cta i {
    width: 32px;
    height: 32px;
    background: var(--brand-navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.top-pill-cta:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.7;
    /* Increased for professional editorial look */
    font-weight: 400;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    overflow-x: hidden;
}

/* Custom Selection Theme */
::selection {
    background: var(--brand-red);
    color: var(--brand-navy);
}

/* Custom Scrollbar for Luxury Feel */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-red);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-red-dark);
}

/* Custom Selection Theme */
::selection {
    background: var(--brand-red);
    color: var(--brand-navy);
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--brand-navy);
}

h1 {
    font-size: clamp(40px, 8vw, 84px);
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: -0.02em;
}

h3 {
    font-size: 1.75rem;
    letter-spacing: -0.01em;
}

.hero-label {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: #ffffff;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* â”€â”€ Global Institutional Motif â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body::before {
    content: '';
    position: fixed;
    top: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--motif-gold) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: fixed;
    bottom: 5%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--motif-navy) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Page entrance animation handled by GSAP for better sync */
body {
    opacity: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 100px;
}

.grid {
    display: grid;
    gap: 30px;
}

@media (max-width: 991px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 767px) {
    .grid {
        grid-template-columns: 1fr !important;
    }
}

section {
    padding: var(--section-padding) 0;
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }
}

/* Editorial Card Style */
.glass-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 79, 158, 0.06);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
    border-color: var(--brand-red);
}

/* ── Premium Navigation ────────────────────────────────────────────── */

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    /* Never shrink the logo */
    margin-right: 20px;
}

.logo-container a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-container img {
    height: 60px;
    width: 60px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--brand-red-light);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Subtle depth */
    transition: var(--transition-medium);
    flex-shrink: 0;
}

.logo-container img:hover {
    transform: scale(1.02);
    border-color: var(--brand-red);
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

/* — Global Header (Codapress-Style Floating Dock / Pill Header) ── */
#main-nav {
    position: fixed;
    top: var(--utility-height);
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0, 45, 57, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 2000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

#main-nav.scrolled {
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: calc(100vw - 40px);
    height: 62px;
    padding: 0 32px;
    border-radius: 999px;
    background: rgba(0, 35, 51, 0.95);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(252, 211, 77, 0.3);
    border: 1px solid rgba(252, 211, 77, 0.5);
    gap: 32px;
}

#main-nav.scrolled.utility-hidden {
    top: 14px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

#main-nav.scrolled .logo-container {
    color: white;
}

.logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

#main-nav.scrolled .logo-name {
    font-size: 22px;
}

.logo-container img {
    height: 54px;
    width: 54px;
    object-fit: cover;
    border-radius: 12px;
    background: #ffffff;
    padding: 3px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 0 2px #fcd34d;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-container:hover img {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(252, 211, 77, 0.5), 0 0 0 3px #fcd34d;
}

#main-nav.scrolled .logo-container img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 0 2px #fcd34d;
}

/* Featured Hero Logo Highlight Emblem */
.hero-logo-emblem {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid #fcd34d;
    padding: 8px 24px 8px 12px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 20px rgba(252, 211, 77, 0.35);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.hero-logo-emblem:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(252, 211, 77, 0.55);
}

.hero-logo-emblem img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    border: 2px solid var(--brand-navy);
    object-fit: cover;
    background: white;
    padding: 2px;
}

.hero-logo-emblem-text {
    text-align: left;
}

.hero-logo-emblem-text h5 {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--brand-navy);
    margin: 0;
    line-height: 1.1;
}

.hero-logo-emblem-text span {
    font-family: 'Inter', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--brand-red);
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    max-width: 280px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-tagline {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    white-space: normal;
}

#main-nav.scrolled .logo-tagline {
    color: var(--brand-red);
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-medium);
    position: relative;
    padding: 10px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-red);
    transition: var(--transition-medium);
}

.nav-links a:hover {
    color: var(--brand-red);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--brand-red);
}

.mobile-toggle {
    display: none;
}

/* ── Mobile Menu Overlay ────────────────────────────────────────────── */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: linear-gradient(165deg, rgba(0, 35, 51, 0.98) 0%, rgba(0, 45, 57, 0.99) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(16px + var(--safe-top, 0px)) calc(24px + var(--safe-right, 0px)) 16px calc(24px + var(--safe-left, 0px));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
}

.mobile-menu-header .logo-container {
    margin-right: 0;
}

.mobile-menu-header .logo-name {
    font-size: 22px;
    color: #ffffff;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    line-height: 1;
    color: #ffffff;
    cursor: pointer;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-medium);
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
    color: var(--brand-red);
    background: rgba(227, 30, 36, 0.15);
    border-color: var(--brand-red);
    transform: rotate(90deg);
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 30px calc(24px + var(--safe-right, 0px)) calc(30px + var(--safe-bottom, 0px)) calc(24px + var(--safe-left, 0px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu-links a {
    color: rgba(255, 255, 255, 0.88);
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(15px);
    display: block;
    letter-spacing: 0.02em;
}

.mobile-menu-overlay.active .mobile-menu-links a {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-menu-links a:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(8) { transition-delay: 0.40s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(9) { transition-delay: 0.45s; }
.mobile-menu-overlay.active .mobile-menu-links a:nth-child(10) { transition-delay: 0.50s; }

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    color: var(--brand-red);
    transform: translateX(6px);
}

.mobile-menu-links a.cta-button {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    background: var(--brand-red);
    color: #ffffff;
    margin-top: 10px;
    letter-spacing: 0.1em;
    transform: none !important;
}

.mobile-menu-links a.cta-button:hover {
    background: var(--brand-red-dark);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.4);
}

.mobile-menu-footer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.phone-link {
    color: #fcd34d;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.05em;
}

.phone-link:hover {
    color: #ffffff;
}

.mobile-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

.mobile-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-medium);
}

.mobile-socials a:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: translateY(-2px);
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* â”€â”€ Hero Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    padding-top: 160px;
    /* Stronger offset for fixed header */
    padding-bottom: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(11, 17, 32, 0.85) 0%,
            rgba(11, 17, 32, 0.6) 50%,
            rgba(11, 17, 32, 0.9) 100%);
    z-index: 1;
}

/* Subtle bottom vignette for text legibility */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* Hero content layout */
.hero>* {
    position: relative;
    z-index: 2;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 80px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative;
    z-index: 10;
}

.hero-content .hero-label,
.hero-content .hero-title,
.hero-content .hero-sub,
.hero-content .hero-actions,
.hero-content .heartbeat-accent {
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-label {
    display: inline-block;
    color: var(--brand-red) !important;
    font-size: 11px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 25px;
    padding: 10px 24px;
    background: var(--brand-red-light);
    border: 1px solid var(--brand-red);
    border-radius: 50px;
    transition: var(--transition-premium);
}

.hero .hero-label,
.site-footer .hero-label,
[style*="background: var(--brand-navy)"] .hero-label,
[style*="background:var(--brand-navy)"] .hero-label {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.hero-title {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 700;
    color: #ffffff !important;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin: 0 auto 24px;
    max-width: 900px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: #ffffff !important;
    font-style: italic;
}

.heartbeat-accent {
    width: 60px;
    height: 4px;
    background: var(--brand-red);
    position: relative;
    border-radius: 2px;
}

.heartbeat-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-red);
    box-shadow: 0 0 15px var(--brand-red);
    opacity: 0.6;
}

.hero-sub {
    font-size: clamp(16px, 1.8vw, 20px);
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6;
    margin: 0 auto 40px;
    max-width: 800px;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.img-interactive {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(20%);
}

.img-interactive:hover {
    transform: scale(1.02);
    filter: grayscale(0%);
}



.glass-panel:hover {
    border-color: var(--brand-primary);
    box-shadow: 0 40px 100px rgba(0, 118, 189, 0.1);
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: 80px;
    box-shadow: var(--shadow-premium);
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .glass-panel {
        padding: 40px 25px;
        backdrop-filter: blur(10px);
    }
}

.bg-pattern-dots {
    background-image: radial-gradient(var(--brand-primary) 0.5px, transparent 0.5px);
    background-size: 20px 20px;
}





/* Pulse Line Animation */
.pulse-line {
    position: absolute;
    bottom: 10%;
    width: 100%;
    height: 100px;
    overflow: hidden;
    opacity: 0.2;
}

.ecg-svg {
    width: 200%;
    height: 100%;
    stroke: var(--brand-red);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 5px rgba(105, 178, 255, 0.2));
}

@keyframes pulse-flow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.ecg-svg path {
    animation: pulse-flow 15s linear infinite;
}

/* Initiative Cards */
.initiative-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-md);
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition-medium);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.initiative-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 60px rgba(11, 17, 32, 0.08);
    border-color: var(--brand-blue);
}

.initiative-card h3 {
    transition: var(--transition-medium);
}

.initiative-card:hover h3 {
    color: var(--brand-blue);
}

.medical-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: var(--bg-cream);
    color: var(--brand-blue);
    border-left: 3px solid var(--brand-blue);
    margin-bottom: 20px;
}

.medical-badge.active {
    background: var(--brand-red);
    color: white;
    border-left: none;
}

/* â”€â”€ Executive Spotlight â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.leadership-spotlight {
    background: var(--bg-cream);
    padding: 100px 0;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.leader-card {
    display: flex;
    gap: 30px;
    background: var(--bg-white);
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition-medium);
    border-radius: var(--border-radius-md);
}

.leader-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 40px 80px rgba(11, 17, 32, 0.1);
    border-color: var(--brand-red-light);
}

.leader-img {
    width: 200px;
    height: 250px;
    object-fit: cover;
    object-position: center top;
    flex-shrink: 0;
    transition: var(--transition-slow);
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.leader-card:hover .leader-img {
    transform: scale(1.02);
}

.leader-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--brand-navy);
}

.leader-role {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-red);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.leader-quote {
    font-style: italic;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* â”€â”€ New Editorial Leadership Style â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.leadership-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.editorial-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    transition: var(--transition-medium);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.editorial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 40px 80px rgba(11, 17, 32, 0.1);
    border-color: var(--brand-red-light);
}

.editorial-img-wrapper {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--bg-cream);
    position: relative;
}

.editorial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-slow);
}

.editorial-card:hover .editorial-img-wrapper img {
    transform: scale(1.02);
}

.editorial-content {
    padding: 30px;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    background: linear-gradient(to bottom, #ffffff, var(--bg-cream));
}

.editorial-name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.editorial-role {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
}

/* â”€â”€ Badge System â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.medical-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 4px 12px;
    border-radius: 2px;
    background: var(--bg-cream);
    color: var(--text-muted);
    margin-bottom: 15px;
    transition: var(--transition-medium);
}

.medical-badge.active {
    background: var(--brand-red);
    color: var(--brand-navy);
}

/* â”€â”€ Event Management â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.upcoming-events {
    padding: 100px 0;
}

.event-portal-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
}

.event-featured-card {
    position: relative;
    height: 100%;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.event-featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.event-featured-content {
    position: relative;
    z-index: 2;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--bg-cream);
    border-left: 4px solid var(--brand-red);
    transition: var(--transition-medium);
    cursor: pointer;
}

.event-item:hover {
    background: var(--bg-white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.event-date-box {
    text-align: center;
    min-width: 70px;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition-medium);
}

.event-date-box .day {
    display: block;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    color: var(--brand-navy);
}

.event-date-box .month {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--brand-red);
    font-weight: 600;
    margin-top: 2px;
}

/* Featured Date Box (Red Background) */
.event-date-box.featured {
    background: var(--brand-red) !important;
}

.event-date-box.featured .day,
.event-date-box.featured .month {
    color: #ffffff !important;
}

/* Services Grid */
.services {
    padding: 5rem 5%;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    transition: transform 0.3s;
    border-radius: var(--border-radius-lg);
}

.service-card:hover {
    transform: translateY(-2px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-size: 2rem;
}

/* â”€â”€ Premium Button System â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: var(--brand-red);
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--brand-red);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-medium);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.2);
    z-index: 1;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: var(--brand-red);
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    /* Apollo Pill Shape */
    transition: var(--transition-premium);
    border: 2px solid var(--brand-red);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
}

.cta-button:hover {
    background: white;
    color: var(--brand-red);
    transform: translateY(-1px);
    box-shadow: 0 15px 35px rgba(227, 30, 36, 0.25);
}

.nav-cta {
    padding: 10px 24px;
    font-size: 11px;
}

.nav-login-btn {
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    backdrop-filter: blur(5px);
}

.nav-login-btn:hover {
    background: #fcd34d;
    border-color: #fcd34d;
    color: var(--brand-navy);
    box-shadow: 0 4px 15px rgba(252, 211, 77, 0.4);
}

#main-nav.scrolled .nav-login-btn {
    color: #ffffff;
    background: rgba(252, 211, 77, 0.15);
    border: 1px solid rgba(252, 211, 77, 0.5);
}

#main-nav.scrolled .nav-login-btn:hover {
    background: #fcd34d;
    color: var(--brand-navy);
}

/* ── Secondary / Outline Button ────────────────────────────────────────── */

.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    background: transparent;
    border: 2px solid var(--brand-navy);
    border-radius: 50px;
    color: var(--brand-navy);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-premium);
}

.btn-soft:hover {
    background: var(--brand-navy);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 10px 25px rgba(0, 45, 57, 0.15);
}

/* ── Ghost Button (dark bg contexts) ────────────────────────────────── */

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 42px;
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition-premium);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.btn-ghost:hover {
    background: white;
    border-color: white;
    color: var(--brand-navy);
    transform: translateY(-1px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.section-divider {
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.05);
}

/* ── Elite Flagship Footer (Apollo Platinum Standard) ──────────────── */
.site-footer {
    background: #001A23; /* Deepest Navy */
    color: white;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red) 0%, var(--brand-blue) 100%);
    z-index: 5;
}

/* Sophisticated Geometric Mesh Background */
.footer-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
    pointer-events: none;
}

.footer-top-cta {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 0;
}

.footer-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-cta-text h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-cta-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-newsletter {
    display: flex;
    gap: 15px;
    flex-grow: 1;
    max-width: 500px;
}

.footer-newsletter input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 15px 30px;
    color: white;
    font-size: 14px;
    outline: none;
    transition: var(--transition-premium);
}

.footer-newsletter input:focus {
    border-color: var(--brand-red);
    background: rgba(255, 255, 255, 0.08);
}

.footer-main {
    padding: 90px 0 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr 1.2fr 1.8fr;
    gap: 60px;
}

.footer-brand .footer-logo {
    height: 110px;
    width: 110px;
    object-fit: contain;
    border-radius: 50%;
    background: #ffffff;
    padding: 6px;
    border: 3px solid #fcd34d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(252, 211, 77, 0.35);
    margin-bottom: 24px;
    transition: all 0.35s ease;
}

.footer-brand .footer-logo:hover {
    transform: scale(1.06) rotate(3deg);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(252, 211, 77, 0.6);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: #fcd34d;
    border-color: #fcd34d;
    color: var(--brand-navy);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(252, 211, 77, 0.35);
}

.footer-links h4 {
    color: white;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 2px solid #fcd34d;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 22px;
    letter-spacing: 0.08em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 11px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 13.5px;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: #fcd34d;
    transform: translateX(4px);
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 22px;
    align-items: flex-start;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(252, 211, 77, 0.12);
    border: 1px solid rgba(252, 211, 77, 0.25);
    color: #fcd34d;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-contact-item div h5 {
    color: white;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.06em;
}

.footer-contact-item div p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
    line-height: 1.55;
    margin: 0;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.35);
    padding: 26px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-nav {
    display: flex;
    gap: 24px;
}

.footer-bottom-nav a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.25s ease;
    letter-spacing: 0.08em;
}

.footer-bottom-nav a:hover {
    color: #fcd34d;
}



/* Remove generic footer styles that override site-footer */
.footer-logo {
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    filter: brightness(0.95) drop-shadow(0 10px 20px rgba(0,0,0,0.2));
    transition: var(--transition-medium);
}

.footer-logo:hover {
    transform: scale(1.03);
}

/* Stats Section */
.stats {
    padding: 6rem 5%;
    background: var(--brand-navy);
    color: var(--text-on-dark);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    color: var(--brand-red);
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
}

/* Event Cards */
.events {
    padding: 6rem 5%;
    background: #fdfdfd;
}

/* â”€â”€ Advanced Reveal Animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
    opacity: 1;
    transform: none;
}

.reveal.active {
    opacity: 1;
    transform: none;
}

.stagger-container>* {
    opacity: 1;
    transform: none;
}

.stagger-container.active>* {
    opacity: 1;
    transform: none;
}


/* â”€â”€ Depth-Shift Cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.initiative-card,
.editorial-card,
.event-item,
.glass-card,
.leader-card,
.service-card {
    transition: var(--transition-premium);
    border: 1px solid rgba(0, 45, 57, 0.06);
    background: var(--bg-white);
    padding: 60px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.initiative-card:hover,
.editorial-card:hover,
.glass-card:hover,
.leader-card:hover,
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--brand-blue);
    background: white;
}

.editorial-img-wrapper {
    width: 100%;
    height: 360px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    /* Remove padding for immersive look */
    position: relative;
    transition: var(--transition-premium);
}

.editorial-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.8s ease;
    filter: grayscale(30%) brightness(0.95);
}

.editorial-card:hover .editorial-img-wrapper img {
    transform: scale(1.08);
    filter: grayscale(0%) brightness(1);
}

.editorial-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    background: var(--brand-red);
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
    transform: translateY(0);
    transition: var(--transition-premium);
}

.editorial-card:hover .editorial-badge {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(227, 30, 36, 0.3);
}


.editorial-content {
    padding: 30px;
    background: white;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.editorial-role {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
    font-weight: 600;
    margin-bottom: 10px;
}

.editorial-name {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: var(--brand-navy);
    line-height: 1.3;
}

/* â”€â”€ Institutional Accents â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.heartbeat-accent {
    width: 60px;
    height: 2px;
    background: var(--brand-red);
    position: relative;
    margin: 20px 0;
}

.heartbeat-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--easing-apple);
}

section:hover .heartbeat-accent::after {
    transform: scaleX(1);
}

.editorial-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--brand-red);
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 16px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    z-index: 5;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(227, 30, 36, 0.3);
}


/* WhatsApp Floating Button */
/* Gallery Preview Styles */
.gallery-preview-item {
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-slow);
}

.gallery-preview-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(227, 30, 36, 0.15);
}

.gallery-preview-item:hover img {
    transform: scale(1.1);
}

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s var(--easing-apple);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #128C7E;
    /* Darker WhatsApp green on hover */
    box-shadow: 0 15px 35px rgba(18, 140, 126, 0.4);
}

/* Pulsing Map Markers */
.map-marker {
    fill: var(--brand-red);
    filter: drop-shadow(0 0 5px rgba(165, 201, 237, 0.5));
    animation: marker-pulse 2s infinite;
}

@keyframes marker-pulse {
    0% {
        r: 4;
        opacity: 1;
    }

    50% {
        r: 8;
        opacity: 0.6;
    }

    100% {
        r: 4;
        opacity: 1;
    }
}

/* â”€â”€ Horizontal Scroll Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.horizontal-scroll-container {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 40px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    align-items: stretch;
}

.horizontal-scroll-container::-webkit-scrollbar {
    display: none;
}

.horizontal-scroll-container:active {
    cursor: grabbing;
}

.impact-item {
    flex: 0 0 min(580px, 85vw);
    display: flex;
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 79, 158, 0.08);
    transition: var(--transition-medium);
    min-height: 280px;
}

.impact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0, 79, 158, 0.1);
}

.impact-img-card {
    flex: 0 0 220px;
    background-size: cover;
    background-position: center 20%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.impact-img-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0%, transparent 100%);
}

.play-overlay {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-red);
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    z-index: 2;
    transition: var(--transition-medium);
}

.impact-item:hover .play-overlay {
    background: var(--brand-red);
    color: white;
    transform: scale(1.1);
}

.impact-content-card {
    flex: 1;
    padding: 30px 32px;
    background: #F8FBFE;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.impact-content-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--brand-navy);
    font-family: 'Playfair Display', serif;
    line-height: 1.35;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.impact-content-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 18px;
    font-style: italic;
}

.impact-author {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--brand-red);
    display: flex;
    align-items: center;
    gap: 10px;
}

.impact-author::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--brand-red);
}

.scroll-nav {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(0, 79, 158, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    cursor: pointer;
    transition: var(--transition-medium);
    background: white;
}

.scroll-nav:hover {
    background: var(--brand-navy);
    color: white;
    border-color: var(--brand-navy);
    transform: translateY(-2px);
}

/* â”€â”€ Final Polish â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
    max-width: 1400px;
}

/* Character Split for GSAP */
.char {
    display: inline-block;
    perspective: 1000px;
}

/* ── Poll Popup Styles ────────────────────────── */
.poll-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 320px;
    padding: 25px;
    z-index: 2500;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 45, 57, 0.15);
}

.poll-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.poll-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-medium);
}

.poll-close:hover {
    color: var(--brand-red);
}

.poll-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-blue-tint);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue);
    font-size: 18px;
    margin-bottom: 15px;
}

.poll-popup h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.poll-popup p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.poll-actions {
    display: flex;
    gap: 10px;
}

.poll-btn {
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-medium);
    border: 1px solid transparent;
}

.btn-yes {
    background: var(--brand-red);
    color: white;
}

.btn-yes:hover {
    background: var(--brand-red-dark);
}

.btn-no {
    background: transparent;
    border-color: rgba(0, 45, 57, 0.2);
    color: var(--brand-navy);
}

.btn-no:hover {
    background: rgba(0, 45, 57, 0.05);
}

/* ── Dynamic Animations & Visual Flourish System ─────────────────── */

/* 1. Scroll Reveal Animations & Smooth Fade-In System (Safety Fallback: Default Visible) */
.reveal {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.stagger-container > * {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-container.active > * {
    opacity: 1 !important;
    transform: translateY(0);
}

.stagger-container.active > *:nth-child(1) { transition-delay: 0.04s; }
.stagger-container.active > *:nth-child(2) { transition-delay: 0.08s; }
.stagger-container.active > *:nth-child(3) { transition-delay: 0.12s; }
.stagger-container.active > *:nth-child(4) { transition-delay: 0.16s; }
.stagger-container.active > *:nth-child(5) { transition-delay: 0.20s; }
.stagger-container.active > *:nth-child(6) { transition-delay: 0.24s; }
.stagger-container.active > *:nth-child(7) { transition-delay: 0.28s; }
.stagger-container.active > *:nth-child(8) { transition-delay: 0.32s; }

/* 2. Heartbeat ECG Pulse Line */
.heartbeat-accent {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-red) 0%, #fcd34d 50%, var(--brand-blue) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.heartbeat-accent::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.9), transparent);
    animation: heartbeat-shine 2.5s infinite ease-in-out;
}

@keyframes heartbeat-shine {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* 3. Official Crest Pulsing Glow */
@keyframes crest-pulse {
    0%, 100% {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(252, 211, 77, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 25px 85px rgba(0, 0, 0, 0.65), 0 0 75px rgba(252, 211, 77, 0.65);
        transform: scale(1.015);
    }
}

.official-seal-glow {
    animation: crest-pulse 4s infinite ease-in-out !important;
}

/* 4. Interactive Card Micro-Animations */
.glass-card, .leader-card, .initiative-card, .event-featured-card, .gallery-preview-item {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover, .leader-card:hover, .initiative-card:hover, .gallery-preview-item:hover {
    transform: translateY(-8px) scale(1.015) !important;
    box-shadow: 0 20px 45px rgba(0, 45, 57, 0.12) !important;
}

/* 5. Smooth Image Zoom on Hover */
.img-interactive, .leader-img, .gallery-preview-item img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover .img-interactive,
.leader-card:hover .leader-img,
.gallery-preview-item:hover img {
    transform: scale(1.06) !important;
}

/* 6. Button Shimmer Animation */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transform: rotate(30deg);
    transition: 0.6s;
}

.cta-button:hover::after {
    left: 130%;
}

/* 7. Extra Entrance Animation Utilities (Default Visible Safety Fallback) */
.fade-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.slide-in-left {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-left.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.slide-in-right {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right.active {
    opacity: 1 !important;
    transform: translateX(0) !important;
}
    transform: translateX(0);
}

/* Hero Section Entrance Delays */
.hero-content .hero-label {
    animation: heroFadeUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .hero-title {
    animation: heroFadeUp 0.8s 0.25s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .heartbeat-accent {
    animation: heroFadeUp 0.8s 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .hero-sub {
    animation: heroFadeUp 0.8s 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content .hero-actions {
    animation: heroFadeUp 0.8s 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroFadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Premium SOPPA Popup System & Modals ─────────────────────────── */
.soppa-modal-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: rgba(0, 25, 36, 0.82);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}

.soppa-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.soppa-modal-card {
    background: #ffffff;
    width: 100%;
    max-width: 580px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 35px rgba(252, 211, 77, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.9);
    position: relative;
    overflow: hidden;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

.soppa-modal-overlay.active .soppa-modal-card {
    transform: scale(1) translateY(0);
}

.soppa-modal-accent {
    height: 5px;
    width: 100%;
    background: linear-gradient(90deg, #002333 0%, #E31E24 50%, #fcd34d 100%);
}

.soppa-modal-header {
    padding: 24px 28px 16px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    border-bottom: 1px solid #f1f5f9;
}

.soppa-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197, 160, 89, 0.15);
    color: #b48a3c;
    font-size: 10.5px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.soppa-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #002333;
    margin: 0 0 4px;
}

.soppa-modal-subtitle {
    font-size: 12.5px;
    color: #64748b;
    margin: 0;
}

.soppa-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.soppa-modal-close:hover {
    background: #E31E24;
    color: #ffffff;
    border-color: #E31E24;
    transform: rotate(90deg);
}

.soppa-modal-body {
    padding: 24px 28px;
    font-size: 14.5px;
    color: #334155;
    line-height: 1.7;
    max-height: 65vh;
    overflow-y: auto;
}

.soppa-modal-footer {
    padding: 16px 28px 22px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    background: #f8fafc;
}

.soppa-modal-btn-cancel {
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: #475569;
    font-weight: 600;
    font-size: 12.5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.soppa-modal-btn-cancel:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.soppa-modal-btn-confirm {
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    background: #002333;
    color: #ffffff;
    font-weight: 700;
    font-size: 12.5px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(0, 35, 51, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.soppa-modal-btn-confirm:hover {
    background: #E31E24;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.35);
}

/* ── Universal Soft Button Hover Fix ────────────────────────────── */
.btn-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--brand-navy);
    color: var(--brand-navy);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.btn-soft:hover, a.btn-soft:hover, button.btn-soft:hover {
    background-color: var(--brand-navy) !important;
    color: #ffffff !important;
    border-color: var(--brand-navy) !important;
    box-shadow: 0 6px 18px rgba(0, 35, 51, 0.25);
}

.btn-soft:hover i, a.btn-soft:hover i, button.btn-soft:hover i {
    color: #ffffff !important;
}