/*
 * MedKaira RCM — Main Stylesheet
 * Converted from Next.js + Tailwind CSS to vanilla CSS.
 *
 * Color System:
 *   --teal: #00838E (primary brand)
 *   --teal-dark: #00697A (primary hover)
 *   --mint: #DAF5F3 (secondary / light bg)
 *   --navy: #0A1628 (dark sections)
 *   --navy-dark: #0D1126 (footer)
 *   --gold: #D49B28 (eyebrows, badges)
 *   --green: #2E7D32 (success)
 *   --green-light: #F0F7EC (light green bg)
 *   --offwhite: #FAFAF7 (light section bg)
 *   --body: #2D3748 (body text)
 *   --white: #FFFFFF
 *
 * Typography: Poppins (headings) + Montserrat (body)
 */

:root {
    --teal: #00838E;
    --teal-dark: #00697A;
    --teal-15: rgba(0,131,142,0.15);
    --mint: #DAF5F3;
    --navy: #0A1628;
    --navy-dark: #0D1126;
    --gold: #D49B28;
    --green: #2E7D32;
    --green-light: #F0F7EC;
    --offwhite: #FAFAF7;
    --body: #2D3748;
    --white: #FFFFFF;
    --gray-100: #F5F5F5;
    --gray-200: #E5E7EB;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --container-max: 1280px;
    --container-md: 896px;
    --container-sm: 672px;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.16);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--body);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ========== UTILITY CLASSES ========== */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 16px; }
.container-md { max-width: var(--container-md); }
.container-sm { max-width: var(--container-sm); }

.bg-white { background: var(--white); }
.bg-offwhite { background: var(--offwhite); }
.bg-mint { background: var(--mint); }
.bg-navy { background: var(--navy); }
.bg-teal { background: var(--teal); }
.bg-green-light { background: var(--green-light); }

.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-white-60 { color: rgba(255,255,255,0.6); }

.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.uppercase { text-transform: uppercase; }
.tracking-wider { letter-spacing: 0.05em; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-3xl { max-width: 48rem; }
.required { color: #EF4444; }

.gradient-text {
    background: linear-gradient(to right, var(--mint), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    padding: 10px 28px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.btn-primary { background: var(--teal); color: var(--white); box-shadow: 0 4px 14px rgba(0,131,142,0.25); }
.btn-primary:hover { background: var(--teal-dark); box-shadow: 0 6px 20px rgba(0,131,142,0.35); transform: translateY(-1px); }

.btn-white { background: var(--white); color: var(--teal); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-white:hover { background: rgba(255,255,255,0.9); transform: translateY(-1px); }

.btn-outline-white { border: 2px solid rgba(255,255,255,0.3); color: var(--white); background: transparent; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }

.btn-green { background: #528532; color: var(--white); }
.btn-green:hover { background: #3F6E24; }

.btn-lg { padding: 14px 28px; font-size: 0.875rem; min-width: 180px; }
.btn-sm { padding: 8px 20px; font-size: 0.8125rem; }
.btn-block { width: 100%; }

/* ========== TYPOGRAPHY ========== */
.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

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

.section-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--body);
}

.section-header-center {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* ========== HEADER ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 24px;
}

.header-logo img { height: 36px; width: auto; }

.header-nav { display: none; }
@media (min-width: 1024px) {
    .header-nav { display: block; }
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.nav-link:hover { color: var(--teal); background: rgba(0,131,142,0.06); }

.chevron { transition: transform 0.2s; }

/* Mega Dropdown */
.has-mega-dropdown { position: relative; }

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    padding: 20px;
    min-width: 400px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s ease;
}

.has-mega-dropdown:hover .mega-dropdown,
.has-mega-dropdown.open .mega-dropdown {
    opacity: 1; visibility: visible; pointer-events: all; transform: translateX(-50%) translateY(0);
}

.has-mega-dropdown:hover .chevron { transform: rotate(180deg); }

.mega-grid { display: grid; gap: 8px; }
.services-dropdown .mega-grid { grid-template-columns: 1fr; }
.mega-grid-specialties { grid-template-columns: repeat(2, 1fr); }

.mega-item {
    display: block;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
}

.mega-item:hover { background: var(--mint); }

.mega-item-title { display: block; font-weight: 600; font-size: 0.875rem; color: var(--navy); margin-bottom: 2px; }
.mega-item-desc { display: block; font-size: 0.75rem; color: var(--body); opacity: 0.7; }
.mega-item-stat { display: block; font-size: 0.6875rem; color: var(--teal); font-weight: 600; margin-top: 4px; }

.specialty-item { font-size: 0.875rem; font-weight: 500; color: var(--body); }
.specialty-item.view-all { color: var(--teal); font-weight: 600; margin-top: 4px; }

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .header-actions { display: flex; }
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--navy);
}

.header-phone:hover { color: var(--teal); }
.header-cta { white-space: nowrap; }

/* Mobile Toggle */
.mobile-toggle {
    display: flex;
    align-items: center;
    padding: 8px;
    color: var(--navy);
}

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

/* ========== OFF-CANVAS OVERLAY ========== */
.offcanvas-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.55);
    backdrop-filter: blur(2px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

/* ========== OFF-CANVAS PANEL ========== */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100%;
    background: var(--white);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.offcanvas-menu.active {
    transform: translateX(0);
}

/* Panel Header */
.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 2;
}

.offcanvas-logo img { height: 36px; width: auto; }

.offcanvas-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    color: var(--navy);
    transition: background 0.2s, color 0.2s;
}

.offcanvas-close:hover { background: var(--gray-100); color: var(--teal); }

/* Panel Nav */
.offcanvas-nav {
    flex: 1;
    padding: 8px 0;
    overflow-y: auto;
}

/* Accordion Sections */
.offcanvas-section { border-bottom: 1px solid var(--gray-200); }

.offcanvas-section-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: background 0.15s, color 0.15s;
}

.offcanvas-section-toggle:hover { background: var(--gray-100); color: var(--teal); }

.oc-chevron {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.offcanvas-section-toggle[aria-expanded="true"] .oc-chevron {
    transform: rotate(180deg);
}

/* Accordion Sub-menu */
.offcanvas-sub {
    display: none;
    padding: 4px 0 8px 0;
    background: var(--offwhite);
}

.offcanvas-sub.open { display: block; }

.offcanvas-sub a {
    display: block;
    padding: 10px 20px 10px 32px;
    font-size: 0.875rem;
    color: var(--body);
    transition: background 0.15s, color 0.15s;
}

.offcanvas-sub a:hover { background: var(--mint); color: var(--teal); }
.offcanvas-sub .view-all-link { color: var(--teal); font-weight: 600; }

/* Top-level Links */
.offcanvas-link {
    display: block;
    padding: 14px 20px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-200);
    transition: background 0.15s, color 0.15s;
}

.offcanvas-link:hover { background: var(--gray-100); color: var(--teal); }

/* Panel Footer */
.offcanvas-footer {
    padding: 20px;
    border-top: 1px solid var(--gray-200);
    background: var(--white);
    position: sticky;
    bottom: 0;
}

.offcanvas-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    transition: color 0.2s;
}

.offcanvas-phone:hover { color: var(--teal-dark); }

/* Body lock when menu is open */
body.offcanvas-open { overflow: hidden; }

/* ========== HERO ========== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; background: var(--navy); }
.hero-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom right, var(--navy), rgba(10,22,40,0.95), rgba(0,131,142,0.1)); }

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.hero-glow-left { top: 25%; left: -128px; width: 384px; height: 384px; background: rgba(0,131,142,0.1); animation: float 8s ease-in-out infinite; }
.hero-glow-right { bottom: 25%; right: -128px; width: 384px; height: 384px; background: rgba(218,245,243,0.08); animation: float 10s ease-in-out infinite reverse; }
.hero-glow-center { top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: rgba(0,131,142,0.05); filter: blur(120px); animation: pulse 6s ease-in-out infinite; }

.hero-grid-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: linear-gradient(rgba(255,255,255,0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 10; padding: 96px 16px 80px; }

.hero-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 42rem;
}

@media (min-width: 1024px) {
    .hero-subtitle { font-size: 1.125rem; }
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-ctas { margin-bottom: 3rem; }
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Hero Image */
.hero-image { position: relative; display: flex; justify-content: center; }

@media (min-width: 1024px) {
    .hero-image { justify-content: flex-end; }
}

.hero-image-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(to bottom right, rgba(0,131,142,0.2), rgba(218,245,243,0.1));
    border-radius: var(--radius-xl);
    filter: blur(20px);
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,131,142,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    max-width: 560px;
    animation: float 5s ease-in-out infinite;
}

.hero-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,131,142,0.3), transparent, rgba(10,22,40,0.2));
}

.hero-image-overlay-right {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(10,22,40,0.15), transparent, transparent);
}

.hero-floating-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: rgba(10,22,40,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,131,142,0.3);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse-dot 2s ease-in-out infinite;
}

.pulse-dot-red { background: #EF4444; }

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 0;
}

.wave-divider svg { width: 100%; height: auto; display: block; }

/* ========== CHALLENGE SECTION ========== */
.section-challenge { padding: 80px 0; background: var(--offwhite); }

@media (min-width: 1024px) {
    .section-challenge { padding: 112px 0; }
}

.two-col-grid {
    display: grid;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .two-col-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
}

.pain-points { display: flex; flex-wrap: wrap; gap: 12px; }

.pain-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: #FEF2F2;
    border: 1px solid #FEE2E2;
    font-size: 0.875rem;
    color: #B91C1C;
    font-weight: 500;
}

.image-glow-wrapper { position: relative; }

.image-glow {
    position: absolute;
    inset: -16px;
    background: linear-gradient(to bottom right, rgba(0,131,142,0.2), rgba(218,245,243,0.1));
    border-radius: var(--radius-xl);
    filter: blur(20px);
}

.image-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.floating-stat-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--radius-md);
    background: rgba(10,22,40,0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,131,142,0.3);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
}

/* ========== ACHIEVE SECTION ========== */
.section-achieve { padding: 80px 0; }

.achieve-grid {
    display: grid;
    gap: 20px;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .achieve-grid { grid-template-columns: repeat(2, 1fr); }
}

.achieve-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.achieve-item:hover {
    border-color: rgba(0,131,142,0.2);
    background: rgba(218,245,243,0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.achieve-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(0,131,142,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.achieve-text { font-weight: 500; }

/* ========== ABOUT SECTION ========== */
.section-about { padding: 80px 0; }

.about-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 768px) {
    .about-grid { grid-template-columns: repeat(3, 1fr); }
}

.about-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s;
}

.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.about-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card-title { font-size: 1.125rem; margin-bottom: 12px; }
.about-card-text { font-size: 0.875rem; line-height: 1.7; }

.commitment-list { display: flex; flex-direction: column; gap: 8px; }

.commitment-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========== SERVICES GRID ========== */
.section-services { padding: 80px 0; }

.services-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-decoration: none;
}

.service-card:hover {
    border-color: rgba(0,131,142,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-card:hover .service-card-title { color: var(--teal); }

.service-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: rgba(0,131,142,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card-title { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; transition: color 0.3s; }
.service-card-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }

.service-card-link {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--teal);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover .service-card-link { opacity: 1; }

/* ========== WHY CHOOSE US ========== */
.section-why { padding: 80px 0; }

.why-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s;
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.why-card-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-md);
    background: rgba(0,131,142,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--teal);
    transition: all 0.3s;
}

.why-card:hover .why-card-icon { background: var(--teal); color: var(--white); }

.why-card-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
.why-card-desc { font-size: 0.875rem; line-height: 1.7; }

/* ========== RCM PROCESS ========== */
.section-rcm { padding: 80px 0; overflow: hidden; }

.rcm-timeline-desktop { display: none; position: relative; max-width: 56rem; margin: 0 auto; }
@media (min-width: 1024px) { .rcm-timeline-desktop { display: block; } }

.rcm-timeline-mobile { display: flex; flex-direction: column; gap: 16px; max-width: 32rem; margin: 0 auto; }
@media (min-width: 1024px) { .rcm-timeline-mobile { display: none; } }

.rcm-timeline-line {
    position: absolute;
    left: 32px; top: 0; bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), rgba(0,131,142,0.5), var(--mint));
}

.rcm-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
}

.rcm-step-circle {
    flex-shrink: 0;
    width: 64px; height: 64px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 14px rgba(0,131,142,0.2);
}

.rcm-step-card {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.rcm-step-card:hover { box-shadow: var(--shadow-md); border-color: rgba(0,131,142,0.15); }
.rcm-step-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 8px; }
.rcm-step-card p { font-size: 0.875rem; line-height: 1.7; }

.rcm-step-mobile { display: flex; gap: 16px; }
.rcm-step-circle-mobile {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 0.75rem;
}

.rcm-step-card-mobile {
    flex: 1;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px;
    border: 1px solid var(--gray-200);
}

.rcm-step-card-mobile h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.rcm-step-card-mobile p { font-size: 0.875rem; line-height: 1.7; }

/* ========== SPECIALTIES SECTION ========== */
.section-specialties { padding: 80px 0; position: relative; overflow: hidden; }

.specialties-glow-left { position: absolute; top: 0; right: 0; width: 500px; height: 500px; border-radius: 50%; background: rgba(0,131,142,0.05); filter: blur(120px); }
.specialties-glow-right { position: absolute; bottom: 0; left: 0; width: 400px; height: 400px; border-radius: 50%; background: rgba(218,245,243,0.03); filter: blur(100px); }

.specialties-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 64rem;
    margin: 0 auto 2.5rem;
}

.specialty-tag {
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(0,131,142,0.3);
    color: rgba(255,255,255,0.8);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s;
}

.specialty-tag:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

/* ========== TECH & SECURITY ========== */
.section-tech { padding: 80px 0; }

.tech-grid {
    display: grid;
    gap: 32px;
    max-width: 64rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .tech-grid { grid-template-columns: repeat(2, 1fr); }
}

.tech-card {
    background: var(--offwhite);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.tech-card-hipaa {
    background: rgba(218,245,243,0.5);
    border-color: rgba(0,131,142,0.1);
}

.tech-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.tech-card-icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    background: rgba(0,131,142,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.tech-card-header h3 { font-size: 1.25rem; font-weight: 700; }
.tech-card p { font-size: 1rem; line-height: 1.7; }

.tech-focus-list { display: flex; flex-direction: column; gap: 12px; }

.tech-focus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: var(--radius-sm);
    background: var(--white);
    border: 1px solid var(--gray-100);
    font-size: 0.875rem;
    font-weight: 500;
}

.tech-hipaa-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,131,142,0.1);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green);
}

/* ========== FAQ ========== */
.section-faq { padding: 80px 0; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active { border-color: rgba(0,131,142,0.15); box-shadow: var(--shadow-md); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--teal); }

.faq-item.active .faq-question { color: var(--teal); }

.faq-chevron { transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer { max-height: 300px; padding: 0 24px 20px; }

.faq-answer p { font-size: 0.875rem; line-height: 1.7; }

/* ========== CTA SECTION ========== */
.section-cta { padding: 80px 0; position: relative; overflow: hidden; }

@media (min-width: 1024px) { .section-cta { padding: 96px 0; } }

.cta-glow-left { position: absolute; top: 0; left: 25%; width: 256px; height: 256px; border-radius: 50%; background: rgba(255,255,255,0.05); filter: blur(80px); }
.cta-glow-right { position: absolute; bottom: 0; right: 25%; width: 320px; height: 320px; border-radius: 50%; background: rgba(218,245,243,0.1); filter: blur(80px); }

.cta-title { font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.cta-subtitle { font-size: 1.25rem; font-weight: 600; color: rgba(255,255,255,0.9); margin-bottom: 1.5rem; }
.cta-text { font-size: 1rem; color: rgba(255,255,255,0.8); line-height: 1.7; margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; }

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

/* ========== CONTACT SECTION ========== */
.section-contact { padding: 80px 0; }

.contact-grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 1024px) {
    .contact-grid { grid-template-columns: 3fr 2fr; gap: 48px; }
}

.contact-form-wrapper {
    background: var(--offwhite);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

@media (min-width: 640px) {
    .contact-form-wrapper { padding: 32px; }
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
    display: grid;
    gap: 20px;
}

@media (min-width: 640px) {
    .form-row { grid-template-columns: repeat(2, 1fr); }
}

.form-group { display: flex; flex-direction: column; }

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 0.875rem;
    color: var(--body);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0,131,142,0.1);
}

.form-group textarea { resize: vertical; }

.form-heading { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }

.form-status {
    display: none;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

.form-status.success { display: block; background: rgba(46,125,50,0.1); color: var(--green); }
.form-status.error { display: block; background: rgba(220,38,38,0.1); color: #DC2626; }

/* Contact Info Cards */
.contact-info-wrapper { display: flex; flex-direction: column; gap: 16px; }

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--offwhite);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.contact-info-card:hover { border-color: rgba(0,131,142,0.15); box-shadow: var(--shadow-sm); }

.contact-info-icon {
    flex-shrink: 0;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(0,131,142,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 2px; }
.contact-info-value { font-size: 0.875rem; font-weight: 500; }
.contact-info-sub { font-size: 0.75rem; opacity: 0.6; }

/* ========== FOOTER ========== */
.site-footer {
    background: var(--navy-dark);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
}

.footer-logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }

.footer-desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }

.footer-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.footer-contact-links { display: flex; flex-direction: column; gap: 8px; }

.footer-contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.footer-contact-links a:hover { color: var(--mint); }

.footer-heading {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: color 0.3s; }
.footer-links a:hover { color: var(--mint); }

.footer-assessment-btn { margin-top: 24px; }

.footer-locations {
    display: grid;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
    margin-bottom: 32px;
}

@media (min-width: 640px) {
    .footer-locations { grid-template-columns: repeat(2, 1fr); }
}

.footer-location {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.location-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-location p { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.4); }

/* ========== PAGE HERO ========== */
.page-hero {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .page-hero { padding: 112px 0; }
}

.page-hero-title {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.page-hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 42rem;
    margin: 0 auto;
}

.service-hero-metric {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(0,131,142,0.2);
    border: 1px solid rgba(0,131,142,0.3);
}

.metric-value { font-size: 1.25rem; font-weight: 700; color: var(--white); }
.metric-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); }

/* ========== ALL SERVICES/SPECIALTIES GRID ========== */
.section-all-services,
.section-all-specialties { padding: 80px 0; }

.all-services-grid,
.all-specialties-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .all-services-grid,
    .all-specialties-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .all-services-grid { grid-template-columns: repeat(3, 1fr); }
    .all-specialties-grid { grid-template-columns: repeat(2, 1fr); }
}

.all-service-card,
.all-specialty-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    text-decoration: none;
}

.all-service-card:hover,
.all-specialty-card:hover {
    border-color: rgba(0,131,142,0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.all-service-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(0,131,142,0.1);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.all-service-title { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.all-service-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 20px; }

.all-service-metric {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.all-service-metric .metric-value { font-size: 1.5rem; color: var(--teal); }
.all-service-metric .metric-label { font-size: 0.75rem; color: var(--body); opacity: 0.7; }

.all-service-link,
.specialty-link { font-size: 0.875rem; font-weight: 600; color: var(--teal); }

.specialty-eyebrow { font-size: 0.75rem; color: var(--teal); font-weight: 600; margin-bottom: 8px; }
.specialty-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 16px; }
.all-specialty-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }

/* ========== FEATURES / BENEFITS / STATS ========== */
.section-overview,
.section-features,
.section-benefits,
.section-challenges { padding: 80px 0; }

.features-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.875rem; line-height: 1.7; }

.benefits-list,
.challenges-list { display: flex; flex-direction: column; gap: 12px; max-width: 42rem; margin: 0 auto; }

.benefit-item,
.challenge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.section-stats { padding: 64px 0; }

.stats-grid {
    display: grid;
    gap: 32px;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item { text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
.stat-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* ========== ABOUT PAGE SECTIONS ========== */
.section-story,
.section-vision,
.section-values,
.section-results,
.section-testimonials { padding: 64px 0; }

@media (min-width: 1024px) {
    .section-story,
    .section-vision,
    .section-values,
    .section-results,
    .section-testimonials { padding: 96px 0; }
}

/* Timeline */
.story-timeline { position: relative; }

.timeline-line {
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(0,131,142,0.2);
}

@media (min-width: 640px) {
    .timeline-line { left: 50%; transform: translateX(-50%); }
}

.timeline-item { position: relative; margin-bottom: 40px; padding-left: 48px; }

@media (min-width: 640px) {
    .timeline-item { padding-left: 0; }
}

.timeline-dot {
    position: absolute;
    left: 12px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--teal);
    border: 2px solid var(--offwhite);
}

@media (min-width: 640px) {
    .timeline-dot { left: 50%; transform: translateX(-50%); }
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(0,131,142,0.1);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.timeline-content h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.timeline-content p { font-size: 0.875rem; color: rgba(26,33,79,0.6); line-height: 1.7; }

/* Values */
.values-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    border: 1px solid var(--green-light);
    transition: box-shadow 0.3s;
}

.value-card:hover { box-shadow: var(--shadow-lg); }
.value-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: rgba(26,33,79,0.6); line-height: 1.7; }

/* Results */
.results-grid {
    display: grid;
    gap: 32px;
    max-width: 56rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .results-grid { grid-template-columns: repeat(3, 1fr); }
}

.result-item { text-align: center; }
.result-value { font-size: 2.5rem; font-weight: 700; color: var(--teal); margin-bottom: 4px; }
.result-label { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* Testimonials */
.testimonials-grid {
    display: grid;
    gap: 24px;
}

@media (min-width: 640px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--green-light);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover { box-shadow: var(--shadow-lg); }

.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.testimonial-quote { font-size: 0.875rem; color: rgba(26,33,79,0.7); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.875rem; }
.testimonial-title { color: rgba(26,33,79,0.5); font-size: 0.75rem; }

/* ========== CASE STUDIES ========== */
.section-case-studies { padding: 80px 0; }

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-200);
    margin-bottom: 32px;
    transition: box-shadow 0.3s;
}

.case-study-card:hover { box-shadow: var(--shadow-lg); }

.case-study-specialty {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    background: rgba(0,131,142,0.1);
    color: var(--teal);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.case-study-title { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }

.case-study-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .case-study-grid { grid-template-columns: repeat(2, 1fr); }
}

.case-study-before { padding: 16px; border-radius: var(--radius-sm); background: #FEF2F2; }
.case-study-after { padding: 16px; border-radius: var(--radius-sm); background: #F0F7EC; }
.case-study-before h3 { font-size: 0.875rem; font-weight: 700; color: #B91C1C; margin-bottom: 8px; }
.case-study-after h3 { font-size: 0.875rem; font-weight: 700; color: var(--green); margin-bottom: 8px; }

.case-study-quote {
    padding: 16px;
    border-left: 3px solid var(--teal);
    background: var(--offwhite);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}

.case-study-quote p { font-size: 0.875rem; line-height: 1.7; margin-bottom: 8px; }
.case-study-quote cite { font-size: 0.8125rem; font-style: normal; color: var(--teal); font-weight: 600; }

/* ========== AUDIT FORM ========== */
.section-audit-form { padding: 80px 0; }

/* ========== SCROLL REVEAL ANIMATION ========== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ========== KEYFRAME ANIMATIONS ========== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%,-50%) scale(1.2); opacity: 0.5; }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes glow-pulse {
    0%, 100% { box-shadow: 0 0 8px rgba(0,131,142,0.2); }
    50% { box-shadow: 0 0 16px rgba(0,131,142,0.4); }
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--teal-dark); }
