/* ══════════════════════════════════════════════════════════════════════
   MAIN.CSS  —  Global styles, layout, components
   ══════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

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

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

a { color: var(--color-primary-dk); text-decoration: none; transition: var(--tr-fast); }
a:hover { color: var(--color-primary); }

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

section { position: relative; overflow: hidden; }

::selection { background: var(--mint-200); color: var(--gray-900); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--mint-400); border-radius: 99px; }

/* ── Preloader ───────────────────────────────────────────────────────── */
#preloader {
    position: fixed; inset: 0;
    background: var(--color-dark);
    display: flex; align-items: center; justify-content: center;
    z-index: var(--z-preload);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner  { text-align: center; }
.preloader-inner .heartbeat {
    font-size: 3rem;
    color: var(--pink-500);
    animation: pulse 1s ease infinite;
}
.preloader-text {
    font-family: var(--font-display);
    color: white;
    font-size: 1.5rem;
    margin-top: 12px;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ── Navigation ─────────────────────────────────────────────────────── */
#mainNav {
    height: var(--nav-height);
    top: 36px;
    background: rgba(255,255,255,0.0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: var(--tr-slow);
    z-index: var(--z-nav);
}
#mainNav.scrolled {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom-color: var(--mint-100);
    box-shadow: 0 4px 30px rgba(45,212,191,0.12);
    height: 70px;
}
.navbar-brand .brand-logo   { display: flex; align-items: center; gap: 12px; }
.brand-icon {
    width: 44px; height: 44px;
    background: var(--grad-primary);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.1rem;
    box-shadow: var(--shadow-mint);
    flex-shrink: 0;
}
.brand-name    { display: block; font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--gray-900); line-height: 1.1; }
.brand-tagline { display: block; font-size: 0.65rem; color: var(--mint-600); font-weight: 500; letter-spacing: 0.03em; }

.navbar-nav .nav-link {
    color: var(--gray-700) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--tr);
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute; bottom: 2px; left: 50%; right: 50%;
    height: 2px;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: var(--tr);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { left: 16px; right: 16px; }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--mint-600) !important;
    background: var(--mint-50);
}

/* Mega Menu */
.mega-menu {
    border: none;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-md);
    padding: 24px;
    min-width: 480px;
    gap: 32px;
    border-top: 3px solid var(--mint-400);
}
.mega-menu.show { display: flex; }
@media (min-width: 992px) {
    .nav-item.dropdown:hover > .mega-menu { display: flex; }
}
.mega-column h6 {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--mint-600);
    margin-bottom: 12px;
    font-family: var(--font-sans);
}
.mega-column a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--gray-700);
    transition: var(--tr);
    white-space: nowrap;
}
.mega-column a:hover { background: var(--mint-50); color: var(--mint-600); transform: translateX(4px); }
.mega-column a i { color: var(--mint-400); font-size: 0.8rem; width: 16px; }

/* Services dropdown chevron — lives inside the nav-link so it stays perfectly inline */
.nav-caret-icon {
    font-size: 0.6rem;
    vertical-align: middle;
    margin-left: 3px;
    transition: transform 0.2s ease;
}
@media (min-width: 992px) {
    .nav-item.dropdown:hover .nav-caret-icon { transform: rotate(180deg); }
}

/* Nav Action Buttons */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-outline-nav {
    padding: 8px 18px;
    border: 1.5px solid var(--mint-400);
    border-radius: var(--radius-full);
    color: var(--mint-600);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--tr);
    background: transparent;
}
.btn-outline-nav:hover { background: var(--mint-50); color: var(--mint-700); }
.btn-cta-nav {
    padding: 9px 20px;
    background: var(--grad-cta);
    color: white !important;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--tr-spring);
    box-shadow: var(--shadow-mint);
    display: flex; align-items: center; gap: 6px;
}
.btn-cta-nav:hover { transform: translateY(-2px); box-shadow: 0 12px 35px rgba(45,212,191,0.4); color: white !important; }
.btn-logout { padding: 8px 14px; color: var(--pink-500); font-size: 0.875rem; font-weight: 500; transition: var(--tr); }
.btn-logout:hover { color: var(--pink-600); }

/* Toggler */
.navbar-toggler { border: none; padding: 8px; background: var(--mint-50); border-radius: 8px; }
.navbar-toggler:focus { box-shadow: none; }
.toggler-icon {
    display: block; width: 22px; height: 2px;
    background: var(--gray-700); border-radius: 2px;
    transition: var(--tr);
}
.toggler-icon + .toggler-icon { margin-top: 5px; }

/* ── Section Utilities ───────────────────────────────────────────────── */
.section-padding { padding: var(--section-py) 0; }
.section-padding-sm { padding: var(--section-py-sm) 0; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--mint-50);
    border: 1px solid var(--mint-200);
    color: var(--mint-700);
    font-size: 0.8rem; font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.section-badge i { color: var(--mint-500); }

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.gradient-text {
    background: var(--grad-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.section-desc {
    font-size: 1.05rem;
    color: var(--gray-500);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ── HERO ───────────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--grad-hero);
    display: flex; align-items: center;
    position: relative;
    padding-top: var(--nav-height);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grad-mesh);
    opacity: 0.7;
    z-index: 0;
}

#particles-js {
    position: absolute; inset: 0;
    z-index: 1; pointer-events: none;
}

.hero > .container { position: relative; z-index: 2; }

/* Animated blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: blobFloat 8s ease-in-out infinite;
    pointer-events: none; z-index: 0;
}
.blob-1 { width: 500px; height: 500px; background: var(--mint-300); top: -100px; left: -100px; animation-delay: 0s; }
.blob-2 { width: 400px; height: 400px; background: var(--blue-300); top: 30%; right: -80px; animation-delay: 2.5s; }
.blob-3 { width: 350px; height: 350px; background: var(--pink-300); bottom: -100px; left: 40%; animation-delay: 5s; }

/* Floating medical icons */
.floating-icons { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.float-icon {
    position: absolute;
    width: 50px; height: 50px;
    background: white;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-card);
    animation: floatIcon 6s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
    opacity: 0.85;
}
.float-icon:nth-child(1) { top: 15%; left: 5%;  color: var(--mint-500); }
.float-icon:nth-child(2) { top: 70%; left: 8%;  color: var(--pink-500); }
.float-icon:nth-child(3) { top: 25%; right: 12%;color: var(--blue-500); }
.float-icon:nth-child(4) { top: 60%; right: 5%; color: var(--mint-600); }
.float-icon:nth-child(5) { bottom: 20%; left: 20%; color: var(--pink-400); }
.float-icon:nth-child(6) { top: 40%; left: 50%; color: var(--blue-600); }

/* Hero content */
.hero-content { padding: 40px 0; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--mint-200);
    color: var(--mint-700);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem; font-weight: 600;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}
.hero-badge i { color: var(--mint-500); }
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--gray-900);
}
.text-greeting { display: block; font-size: 0.9em; color: var(--gray-500); font-weight: 500; font-family: var(--font-sans); }
.hero-name { display: block; background: var(--grad-brand); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-typewriter { display: block; font-size: 0.6em; font-family: var(--font-sans); color: var(--mint-600); font-weight: 600; min-height: 1.5em; }
.cursor { display: inline-block; width: 2px; height: 1em; background: var(--mint-500); animation: blink 0.8s step-end infinite; vertical-align: text-bottom; }
.hero-subtitle {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.hero-desc {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 520px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.btn-hero-primary {
    padding: 14px 32px;
    background: var(--grad-cta);
    color: white;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    box-shadow: var(--shadow-mint);
    transition: var(--tr-spring);
    display: inline-flex; align-items: center; gap: 8px;
    border: none;
}
.btn-hero-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(45,212,191,0.45); color: white; }
.btn-hero-outline {
    padding: 13px 30px;
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--tr);
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-outline:hover { border-color: var(--mint-300); background: var(--mint-50); color: var(--mint-700); transform: translateY(-2px); }

/* Hero Stats */
.hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.stat-number {
    font-size: 2rem; font-weight: 800;
    background: var(--grad-brand);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 4px;
}
.stat-label { font-size: 0.8rem; color: var(--gray-500); font-weight: 500; }

/* Hero Image */
.hero-image-wrapper {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    padding: 0px 0px 55px;
}
.hero-image-bg {
    position: absolute;
    width: 540px; height: 440px;
    background: var(--grad-primary);
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
}
.hero-image-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(45,212,191,0.25);
    animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 520px; height: 440px; animation-delay: 0s; }
.ring-2 { width: 580px; height: 495px; animation-delay: 0.8s; opacity: 0.6; }
.ring-3 { width: 640px; height: 550px; animation-delay: 1.6s; opacity: 0.3; }

.hero-image {
    width: 340px;
    height: 420px;
    object-fit: cover;
    object-position: top center;
    border-radius: var(--radius-xl);
    position: relative; z-index: 2;
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}
/* Hero floating info cards */
.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    box-shadow: var(--shadow-md);
    display: flex; align-items: center; gap: 10px;
    z-index: 3;
    border: 1px solid rgba(255,255,255,0.8);
    animation: cardFloat 4s ease-in-out infinite;
}
.card-1 { top: 12%; left: -18px; animation-delay: 0s; }
.card-2 { bottom: 28%; right: -18px; animation-delay: 1.5s; }
.card-3 { bottom: -10px; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.hero-card .card-icon {
    width: 36px; height: 36px;
    background: var(--grad-cta);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 0.9rem;
    flex-shrink: 0;
}
.hero-card .card-info strong { display: block; font-size: 0.82rem; font-weight: 700; color: var(--gray-900); }
.hero-card .card-info span   { display: block; font-size: 0.72rem; color: var(--gray-500); }

/* ── Hero Image Scroller ─────────────────────────────────────────────── */
.hero-scroller {
    position: relative;
    width: 100%; max-width: 100%;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    margin-top: -155px;
    perspective: 1400px;
    box-shadow: 0 30px 70px rgba(45,212,191,0.28), 0 0 0 4px white, 0 0 0 8px rgba(45,212,191,0.12);
    cursor: pointer;
}
.hs-slide {
    position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.4,0,0.2,1),
                opacity   0.8s cubic-bezier(0.4,0,0.2,1),
                box-shadow 0.8s ease;
    will-change: transform, opacity;
}
.hs-slide img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block;
}
/* Active: full size, front */
.hs-slide.hs-active {
    transform: translateZ(0) translateX(0) scale(1) rotateY(0deg);
    opacity: 1; z-index: 3;
    box-shadow: 0 20px 50px rgba(45,212,191,0.3);
}
.hs-slide.hs-active img {
    animation: hsKenBurns 8s ease-in-out infinite alternate;
}
/* Next: peeking from behind-right */
.hs-slide.hs-next {
    transform: translateZ(-60px) translateX(28px) scale(0.93) rotateY(-7deg);
    opacity: 0.55; z-index: 2;
    pointer-events: none;
}
/* Previous: sweeping out left */
.hs-slide.hs-prev {
    transform: translateZ(-120px) translateX(-110%) scale(0.85) rotateY(14deg);
    opacity: 0; z-index: 1;
    pointer-events: none;
}
/* Hidden: tucked away */
.hs-slide.hs-hidden {
    transform: translateZ(-160px) scale(0.8);
    opacity: 0; z-index: 0;
    pointer-events: none;
}
/* Ken Burns pan */
@keyframes hsKenBurns {
    from { transform: scale(1.0) translateX(0);   }
    to   { transform: scale(1.07) translateX(-8px); }
}
/* Caption overlay */
.hs-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 28px 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
    color: white;
    transform: translateY(6px);
    opacity: 0;
    transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
}
.hs-slide.hs-active .hs-caption { transform: translateY(0); opacity: 1; }
.hs-caption strong { display: block; font-size: .9rem; font-weight: 700; text-shadow: 0 1px 3px rgba(0,0,0,.4); }
.hs-caption span   { display: block; font-size: .78rem; opacity: .88; margin-top: 3px; }
/* Controls */
.hs-controls {
    position: absolute;
    bottom: -28px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 4;
}
.hs-dots { display: flex; gap: 6px; }
.hs-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(45,212,191,0.3);
    border: 1.5px solid rgba(45,212,191,0.6);
    cursor: pointer; padding: 0;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.hs-dot.active {
    background: var(--mint-400);
    width: 26px; border-radius: 4px;
    border-color: var(--mint-400);
    box-shadow: 0 0 8px rgba(45,212,191,0.5);
}
.hs-progress {
    width: 110px; height: 3px;
    background: rgba(45,212,191,0.15);
    border-radius: 2px; overflow: hidden;
}
.hs-progress-bar {
    height: 100%; width: 0%;
    background: var(--grad-primary);
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* ── Mega Menu Wide (3-col) ──────────────────────────────────────────── */
.mega-menu-wide { min-width: 760px !important; gap: 0 !important; }
.mega-menu-wide .mega-column { flex: 1; padding: 0 18px; border-right: 1px solid var(--gray-100); }
.mega-menu-wide .mega-column:last-child { border-right: none; }
.mega-quick-col a { color: var(--gray-700) !important; }
.mega-cta-link { font-weight: 500 !important; }
.mega-cta-link:hover { color: var(--mint-600) !important; }
.mega-emergency-box {
    margin-top: 12px; padding: 12px 14px;
    background: var(--gray-900); border-radius: var(--radius-md);
    display: flex !important; align-items: center; gap: 10px;
    text-decoration: none !important; cursor: default;
    transform: none !important; background: var(--gray-900) !important;
}

/* ── Floating SOS Button ─────────────────────────────────────────────── */
.sos-float {
    position: fixed; bottom: 90px; right: 24px;
    z-index: calc(var(--z-modal) - 1);
    display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.sos-btn {
    position: relative;
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg,#EF4444,#B91C1C);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.3rem;
    box-shadow: 0 8px 30px rgba(239,68,68,.5);
    text-decoration: none; transition: transform .3s var(--ease-spring);
}
.sos-btn:hover { transform: scale(1.12); color: white; }
.sos-ripple {
    position: absolute; inset: -6px; border-radius: 50%;
    border: 3px solid rgba(239,68,68,.45);
    animation: sosRipple 2s ease-out infinite;
}
.sos-ripple::after {
    content: ''; position: absolute; inset: -8px; border-radius: 50%;
    border: 2px solid rgba(239,68,68,.25);
    animation: sosRipple 2s ease-out .6s infinite;
}
@keyframes sosRipple {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.55); opacity: 0; }
}
.sos-popup {
    background: var(--gray-900);
    border-radius: var(--radius-lg);
    padding: 16px; min-width: 200px;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
    border: 1px solid rgba(255,255,255,.08);
    display: none; flex-direction: column; gap: 8px;
    transform-origin: bottom right;
    animation: popupIn .25s var(--ease-spring);
}
@keyframes popupIn { from { transform:scale(.85); opacity:0; } to { transform:scale(1); opacity:1; } }
.sos-float:hover .sos-popup { display: flex; }
.sos-popup-title { font-size:.72rem; font-weight:800; color:white; text-transform:uppercase; letter-spacing:.06em; }
.sos-popup-number {
    display: flex; align-items: center; gap: 8px;
    color: var(--mint-300); font-weight: 700; font-size: .9rem;
    text-decoration: none; padding: 6px 10px;
    background: rgba(255,255,255,.05); border-radius: 8px;
    transition: background .2s;
}
.sos-popup-number:hover { background: rgba(45,212,191,.15); color: var(--mint-200); }
.sos-popup-number::before { content:'\f095'; font-family:'Font Awesome 6 Free'; font-weight:900; color:var(--mint-500); }
.sos-popup-book {
    display: flex; align-items: center; justify-content: center; gap: 6px;
    margin-top: 4px; padding: 8px;
    background: var(--grad-primary); color: white; border-radius: 8px;
    text-decoration: none; font-size: .82rem; font-weight: 700;
    transition: opacity .2s;
}
.sos-popup-book:hover { opacity: .9; color: white; }

/* ── Clinic Facilities ───────────────────────────────────────────────── */
.facilities-section { background: var(--color-bg-alt); }
.facility-card {
    background: white; border-radius: var(--radius-lg);
    padding: 28px 20px; text-align: center;
    border: 1px solid var(--gray-100); height: 100%;
    transition: var(--tr); position: relative; overflow: hidden;
}
.facility-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; background: var(--grad-primary);
    transform: scaleX(0); transition: transform .3s var(--ease);
}
.facility-card:hover::before { transform: scaleX(1); }
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--mint-100); }
.facility-icon {
    width: 68px; height: 68px; border-radius: var(--radius-md);
    background: var(--mint-50); border: 2px solid var(--mint-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--mint-500);
    margin: 0 auto 16px; transition: var(--tr);
}
.facility-card:hover .facility-icon { background: var(--grad-primary); color: white; border-color: transparent; }
.facility-card h6 { font-family: var(--font-sans); font-size: .92rem; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.facility-card p  { font-size: .78rem; color: var(--gray-500); margin: 0; line-height: 1.6; }
.facility-avail {
    display: inline-block; margin-top: 10px;
    font-size: .68rem; font-weight: 700; padding: 2px 10px;
    border-radius: 99px; text-transform: uppercase; letter-spacing: .05em;
}
.avail-24h { background: var(--mint-50); color: var(--mint-700); border: 1px solid var(--mint-200); }
.avail-appt { background: var(--blue-50); color: var(--blue-700); border: 1px solid var(--blue-200); }

/* ── Treatment Process ───────────────────────────────────────────────── */
.treatment-process-section { background: var(--grad-dark); }
.tp-step {
    text-align: center; position: relative;
    padding: 0 12px;
}
.tp-step::after {
    content: '';
    position: absolute; top: 38px; left: calc(50% + 44px);
    width: calc(100% - 88px); height: 2px;
    background: linear-gradient(90deg, rgba(45,212,191,.5), rgba(45,212,191,.1));
    display: none;
}
@media (min-width: 768px) { .tp-step:not(:last-child)::after { display: block; } }
.tp-number {
    width: 76px; height: 76px; border-radius: 50%;
    background: rgba(45,212,191,.12);
    border: 2px solid rgba(45,212,191,.3);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px; position: relative; transition: var(--tr);
}
.tp-number:hover { background: rgba(45,212,191,.2); border-color: var(--mint-400); }
.tp-num-label {
    font-size: 1.2rem; font-weight: 900; color: var(--mint-400);
    font-family: var(--font-display);
}
.tp-icon {
    position: absolute; top: -8px; right: -8px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--grad-primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: .72rem; box-shadow: 0 4px 10px rgba(45,212,191,.4);
}
.tp-step h5 { font-family: var(--font-sans); font-size: .95rem; font-weight: 700; color: white; margin-bottom: 6px; }
.tp-step p  { font-size: .78rem; color: var(--gray-400); margin: 0; line-height: 1.6; }

/* ── FAQ Accordion ───────────────────────────────────────────────────── */
.faq-section { background: var(--color-bg); }
.faq-item {
    background: white; border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-card);
    overflow: hidden; margin-bottom: 12px;
    transition: var(--tr);
}
.faq-item:hover { border-color: var(--mint-200); box-shadow: var(--shadow-md); }
.faq-item.faq-open { border-color: var(--mint-300); }
.faq-question {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 22px; cursor: pointer; gap: 16px;
    user-select: none;
}
.faq-q-text { font-family: var(--font-sans); font-size: .95rem; font-weight: 600; color: var(--gray-900); line-height: 1.4; }
.faq-item.faq-open .faq-q-text { color: var(--mint-700); }
.faq-icon {
    width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
    background: var(--mint-50); border: 1px solid var(--mint-200);
    display: flex; align-items: center; justify-content: center;
    color: var(--mint-600); font-size: .8rem;
    transition: transform .3s var(--ease), background .2s;
}
.faq-item.faq-open .faq-icon { transform: rotate(45deg); background: var(--mint-500); color: white; border-color: var(--mint-500); }
.faq-answer {
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    padding: 0 22px;
}
.faq-item.faq-open .faq-answer { max-height: 400px; padding: 0 22px 18px; }
.faq-answer p { margin: 0; font-size: .88rem; color: var(--gray-600); line-height: 1.8; }

/* ── Emergency Bar ───────────────────────────────────────────────────── */
.emergency-bar {
    position: fixed; top: 0; left: 0; right: 0;
    height: 36px; z-index: 600;
    background: var(--gray-950);
    display: flex; align-items: center;
}
.eb-emergency {
    display: flex; align-items: center; gap: 6px;
    color: var(--pink-400); font-weight: 800;
    font-size: .72rem; letter-spacing: .04em; text-transform: uppercase;
}
.eb-emergency i { animation: pulse 1.5s ease infinite; }
.eb-divider { width: 1px; height: 16px; background: rgba(255,255,255,.15); flex-shrink: 0; }
.eb-link {
    display: flex; align-items: center; gap: 5px;
    color: rgba(255,255,255,.8); text-decoration: none;
    font-size: .75rem; transition: color .2s;
}
.eb-link:hover { color: var(--mint-300); }
.eb-link i { font-size: .7rem; color: var(--mint-400); }
.eb-hours { color: var(--gray-400); font-size: .72rem; display: flex; align-items: center; gap: 5px; }
.eb-hours i { color: var(--mint-500); }

/* ── Quick Action Strip ───────────────────────────────────────────────── */
.quick-actions-strip {
    background: white;
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
    position: relative; z-index: 5;
    border-bottom: 1px solid var(--gray-100);
}
.qa-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.qa-card {
    display: flex; align-items: center; gap: 16px;
    padding: 22px 24px; text-decoration: none;
    color: var(--gray-800); transition: var(--tr);
    border-right: 1px solid var(--gray-100);
    position: relative; overflow: hidden;
}
.qa-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 3px; transform: scaleX(0); transition: transform .3s var(--ease);
}
.qa-card-1::before { background: var(--grad-primary); }
.qa-card-2::before { background: linear-gradient(90deg,#EF4444,#DC2626); }
.qa-card-3::before { background: linear-gradient(90deg,var(--blue-500),var(--blue-700)); }
.qa-card-4::before { background: linear-gradient(90deg,#8B5CF6,#6D28D9); }
.qa-card:hover::before { transform: scaleX(1); }
.qa-card:last-child { border-right: none; }
.qa-card:hover { background: var(--gray-50); color: var(--gray-900); }
.qa-icon {
    width: 52px; height: 52px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white; flex-shrink: 0;
    transition: transform .3s var(--ease-spring);
}
.qa-card:hover .qa-icon { transform: scale(1.1) rotate(-8deg); }
.qa-icon-1 { background: var(--grad-primary); }
.qa-icon-2 { background: linear-gradient(135deg,#EF4444,#B91C1C); }
.qa-icon-3 { background: linear-gradient(135deg,var(--blue-500),var(--blue-700)); }
.qa-icon-4 { background: linear-gradient(135deg,#8B5CF6,#6D28D9); }
.qa-text strong { display: block; font-size: .9rem; font-weight: 700; color: var(--gray-900); }
.qa-text span   { display: block; font-size: .73rem; color: var(--gray-500); margin-top: 2px; }

/* ── Specialities Grid ───────────────────────────────────────────────── */
.specialities-section { background: var(--grad-mesh); }
.spec-tabs { display:flex; gap:10px; justify-content:center; margin-bottom:40px; flex-wrap:wrap; }
.spec-tab {
    padding:8px 22px; border-radius:var(--radius-full); font-weight:600; font-size:.85rem;
    cursor:pointer; transition:var(--tr); border:2px solid var(--gray-200);
    background:white; color:var(--gray-600);
}
.spec-tab.active,.spec-tab:hover { background:var(--grad-primary); border-color:transparent; color:white; box-shadow:var(--shadow-mint); }
.spec-card {
    background: white; border-radius: var(--radius-lg);
    padding: 22px 16px; text-align: center;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-card);
    transition: var(--tr); cursor: pointer;
    text-decoration: none; display: block; color: inherit; height: 100%;
}
.spec-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:var(--mint-200); color:inherit; }
.spec-icon {
    width: 58px; height: 58px; border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: white; margin: 0 auto 12px;
    transition: transform .3s var(--ease-spring);
}
.spec-card:hover .spec-icon { transform: scale(1.12) rotate(-6deg); }
.spec-icon-o { background: linear-gradient(135deg,var(--mint-500),var(--mint-700)); }
.spec-icon-p { background: linear-gradient(135deg,var(--blue-500),var(--blue-700)); }
.spec-card h6 { font-family:var(--font-sans); font-size:.82rem; font-weight:700; color:var(--gray-900); margin-bottom:3px; line-height:1.3; }
.spec-card small { font-size:.72rem; color:var(--gray-400); }

/* ── Why Choose Us ───────────────────────────────────────────────────── */
.why-us-section { background: white; }
.why-card {
    background: var(--gray-50); border-radius: var(--radius-lg);
    padding: 32px 24px; text-align: center;
    border: 1px solid var(--gray-100); height: 100%;
    transition: var(--tr);
}
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); background:white; border-color:var(--mint-200); }
.why-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--mint-50); border: 2px solid var(--mint-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--mint-500);
    margin: 0 auto 20px; transition: var(--tr);
}
.why-card:hover .why-icon { background:var(--grad-primary); color:white; border-color:transparent; transform:rotate(-10deg) scale(1.1); }
.why-card h5 { font-family:var(--font-sans); font-size:1rem; font-weight:700; color:var(--gray-900); margin-bottom:8px; }
.why-card p { font-size:.84rem; color:var(--gray-600); line-height:1.7; margin:0; }

/* ── Health Packages ─────────────────────────────────────────────────── */
.packages-section { background: var(--color-bg-alt); }
.pkg-card {
    background: white; border-radius: var(--radius-xl);
    border: 2px solid var(--gray-100);
    box-shadow: var(--shadow-card);
    overflow: hidden; transition: var(--tr); height: 100%;
    display: flex; flex-direction: column;
}
.pkg-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.pkg-card.pkg-featured { border-color: var(--mint-400); box-shadow: var(--shadow-mint); }
.pkg-header { padding: 28px 24px 20px; text-align: center; position: relative; }
.pkg-header-1 { background: linear-gradient(135deg,var(--mint-50),var(--blue-50)); }
.pkg-header-2 { background: var(--grad-primary); }
.pkg-header-2 * { color: white !important; }
.pkg-header-3 { background: linear-gradient(135deg,#F3E8FF,#EDE9FE); }
.pkg-popular-badge {
    position: absolute; top: 12px; right: 12px;
    background: white; color: var(--mint-600);
    font-size: .65rem; font-weight: 800; padding: 3px 10px;
    border-radius: 99px; text-transform: uppercase; letter-spacing: .06em;
    box-shadow: var(--shadow-sm);
}
.pkg-icon { font-size: 2.4rem; display: block; margin-bottom: 10px; }
.pkg-name { font-family:var(--font-sans); font-size:1.1rem; font-weight:800; color:var(--gray-900); margin-bottom:4px; }
.pkg-tagline { font-size:.78rem; color:var(--gray-500); margin-bottom:12px; }
.pkg-price { font-size:2.2rem; font-weight:900; color:var(--mint-600); line-height:1; }
.pkg-price sub { font-size:.75rem; font-weight:500; color:var(--gray-400); }
.pkg-body { padding: 20px 24px 24px; flex: 1; display: flex; flex-direction: column; }
.pkg-features { list-style:none; padding:0; margin:0 0 24px; flex:1; }
.pkg-features li {
    display:flex; align-items:center; gap:10px;
    padding:7px 0; font-size:.84rem; color:var(--gray-700);
    border-bottom:1px solid var(--gray-100);
}
.pkg-features li:last-child { border:none; }
.pkg-features li i { color:var(--mint-500); font-size:.8rem; flex-shrink:0; width:14px; }

/* ── Photo Gallery Scroller ──────────────────────────────────────────── */
.gallery-scroller-section { background: var(--gray-50); padding: 70px 0 0; overflow: hidden; }
.gallery-section-head { margin-bottom: 40px; }
.gallery-track-wrap { display: flex; flex-direction: column; gap: 16px; overflow: hidden; padding-bottom: 16px; }
.gallery-track {
    display: flex; gap: 16px;
    width: max-content;
    animation: galScroll 40s linear infinite;
}
.gallery-track.gal-right { animation-direction: reverse; animation-duration: 45s; }
.gallery-track:hover { animation-play-state: paused; }
@keyframes galScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.gal-item {
    position: relative; flex-shrink: 0;
    width: 280px; height: 190px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    cursor: pointer;
}
.gal-item img { width:100%; height:100%; object-fit:cover; transition: transform .5s ease; display:block; }
.gal-item:hover img { transform: scale(1.06); }
.gal-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 14px 10px;
    background: linear-gradient(to top, rgba(0,0,0,.65), transparent);
    color: white; font-size: .76rem; font-weight: 600;
    transform: translateY(4px); opacity: 0; transition: all .3s;
}
.gal-item:hover .gal-caption { transform: translateY(0); opacity: 1; }

/* ── Latest Video ─────────────────────────────────────────────────────── */
.latest-video-section { background: var(--color-bg); }
.lv-player-wrap {
    position: relative; padding-bottom: 56.25%; /* 16:9 */
    height: 0; border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,.18), 0 0 0 6px rgba(45,212,191,.15);
}
.lv-player-wrap iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; }
.lv-meta {
    display: flex; gap: 16px; flex-wrap: wrap;
    margin-top: 8px;
}
.lv-meta span {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .82rem; color: var(--gray-500); font-weight: 500;
}
.lv-meta span i { color: var(--mint-500); }

/* ── Video Gallery ─────────────────────────────────────────────────────── */
.video-gallery-section { background: var(--gray-950); }
.video-gallery-section .section-badge { background:rgba(45,212,191,.12); border-color:rgba(45,212,191,.25); color:var(--mint-300); }
.video-gallery-section .section-title { color: white; }
.video-gallery-section .section-desc  { color: var(--gray-400); }
.vg-wrapper { position: relative; }
.vg-track {
    display: flex; gap: 20px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    padding: 8px 4px 20px;
    scrollbar-width: thin; scrollbar-color: var(--mint-700) var(--gray-800);
}
.vg-track::-webkit-scrollbar { height: 4px; }
.vg-track::-webkit-scrollbar-track { background: var(--gray-800); border-radius: 2px; }
.vg-track::-webkit-scrollbar-thumb { background: var(--mint-700); border-radius: 2px; }
.vg-card {
    flex-shrink: 0; width: 300px;
    background: var(--gray-800); border-radius: var(--radius-lg);
    overflow: hidden; scroll-snap-align: start;
    cursor: pointer; transition: var(--tr);
    border: 1px solid rgba(255,255,255,.06);
}
.vg-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.4); border-color: rgba(45,212,191,.3); }
.vg-thumb {
    position: relative; width: 100%;
    padding-bottom: 56.25%; overflow: hidden; background: var(--gray-900);
}
.vg-thumb img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; transition: transform .5s; }
.vg-card:hover .vg-thumb img { transform: scale(1.06); }
.vg-play-btn {
    position: absolute; top:50%; left:50%;
    transform: translate(-50%,-50%) scale(1);
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(255,255,255,.92);
    display: flex; align-items: center; justify-content: center;
    color: var(--mint-700); font-size: 1.1rem;
    transition: transform .3s var(--ease-spring), background .2s;
    padding-left: 4px;
}
.vg-card:hover .vg-play-btn { transform: translate(-50%,-50%) scale(1.15); background: white; }
.vg-duration {
    position:absolute; bottom:8px; right:8px;
    background:rgba(0,0,0,.75); color:white;
    font-size:.68rem; font-weight:700; padding:2px 7px; border-radius:4px;
}
.vg-source-badge {
    position:absolute; top:8px; left:8px;
    font-size:.65rem; font-weight:800; padding:2px 8px; border-radius:4px;
}
.vg-badge-yt    { background:#EF4444; color:white; }
.vg-badge-vimeo { background:#1AB7EA; color:white; }
.vg-badge-other { background:rgba(0,0,0,.6); color:white; }
.vg-info { padding: 14px 16px 16px; }
.vg-info h6 {
    font-family: var(--font-sans); font-size:.88rem; font-weight:700;
    color: white; margin:0; line-height:1.4;
    display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
}
.vg-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(45,212,191,.15); border: 1px solid rgba(45,212,191,.3);
    color: var(--mint-300); font-size: 1rem;
    cursor: pointer; transition: var(--tr); z-index: 2;
    display: flex; align-items: center; justify-content: center;
}
.vg-arrow:hover { background: var(--mint-600); color: white; border-color: var(--mint-600); }
.vg-prev { left: -22px; }
.vg-next { right: -22px; }

/* Video Modal */
.vg-modal {
    position: fixed; inset: 0;
    z-index: var(--z-modal);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.vg-modal-overlay { position:absolute; inset:0; background:rgba(0,0,0,.85); backdrop-filter:blur(6px); }
.vg-modal-box {
    position: relative; width: 100%; max-width: 900px;
    background: var(--gray-900); border-radius: var(--radius-xl);
    overflow: hidden; z-index: 1;
    box-shadow: 0 40px 100px rgba(0,0,0,.6);
}
.vg-modal-close {
    position:absolute; top:14px; right:14px; z-index:2;
    width:38px; height:38px; border-radius:50%;
    background:rgba(255,255,255,.1); border:none; color:white;
    font-size:1.1rem; cursor:pointer; transition:var(--tr);
    display:flex; align-items:center; justify-content:center;
}
.vg-modal-close:hover { background:var(--pink-500); }
.vg-modal-title {
    padding:14px 56px 14px 20px;
    color:white; font-size:.9rem; font-weight:700;
    font-family:var(--font-sans); background:var(--gray-800);
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.vg-modal-player { position:relative; padding-bottom:56.25%; height:0; }
.vg-modal-player iframe { position:absolute; top:0; left:0; width:100%; height:100%; border:none; }

/* ── Awards & Accreditations ─────────────────────────────────────────── */
.awards-section { background: var(--gray-950); padding: 70px 0; }
.awards-heading { text-align:center; margin-bottom:50px; }
.awards-heading h2 { color:white; font-size:clamp(1.6rem,3vw,2.2rem); margin-bottom:8px; }
.awards-heading p { color:var(--gray-400); font-size:.9rem; }
.award-item {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; padding: 24px 16px; text-align: center;
}
.award-icon-ring {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(45,212,191,.1);
    border: 2px solid rgba(45,212,191,.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--mint-400);
    transition: var(--tr);
}
.award-item:hover .award-icon-ring { background:rgba(45,212,191,.2); border-color:var(--mint-400); transform:rotate(-8deg) scale(1.08); }
.award-item strong { display:block; font-size:.88rem; font-weight:700; color:white; line-height:1.3; }
.award-item span   { display:block; font-size:.72rem; color:var(--gray-500); margin-top:2px; }
.awards-divider { width:1px; background:rgba(255,255,255,.07); align-self:stretch; margin:20px 0; }
.accred-strip {
    margin-top:40px; padding-top:32px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap;
}
.accred-badge {
    display:inline-flex; align-items:center; gap:7px;
    padding:8px 18px; border-radius:var(--radius-full);
    background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12);
    color:var(--gray-300); font-size:.78rem; font-weight:600;
    transition: var(--tr);
}
.accred-badge:hover { background:rgba(45,212,191,.12); border-color:rgba(45,212,191,.3); color:var(--mint-300); }
.accred-badge i { color:var(--mint-400); }

/* ── Press & Media ───────────────────────────────────────────────────── */
.press-media-section {
    background: var(--gray-950);
    padding: 80px 0 60px;
    overflow: hidden;
}
.press-head {
    display: flex; align-items: flex-end; justify-content: space-between;
    flex-wrap: wrap; gap: 20px; margin-bottom: 48px;
}
.press-head .section-title { color: white; margin: 0; }
.press-head .section-badge { background:rgba(45,212,191,.12); border-color:rgba(45,212,191,.25); color:var(--mint-300); }
.press-as-seen {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.press-as-seen > span:first-child { font-size:.72rem; color:var(--gray-500); font-weight:600; text-transform:uppercase; letter-spacing:.06em; white-space:nowrap; }
.press-source-chip {
    background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
    color: var(--gray-300); font-size: .72rem; font-weight: 700;
    padding: 4px 12px; border-radius: 99px; white-space: nowrap;
}

/* track */
.press-track-wrap { overflow: hidden; }
.press-track {
    display: flex; gap: 24px; width: max-content;
    animation: pressScroll 40s linear infinite;
    padding: 8px 0 16px;
}
.press-track:hover { animation-play-state: paused; }
@keyframes pressScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* card */
.pm-card {
    flex-shrink: 0; width: 320px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius-lg);
    overflow: hidden; text-decoration: none;
    display: flex; flex-direction: column;
    transition: var(--tr); cursor: pointer;
}
.pm-card:hover {
    background: rgba(255,255,255,.07);
    border-color: rgba(45,212,191,.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.pm-card-img {
    position: relative; height: 160px; overflow: hidden;
    background: var(--gray-800);
}
.pm-card-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.pm-card:hover .pm-card-img img { transform: scale(1.05); }
.pm-card-img-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,.5));
}
.pm-card-no-img {
    height: 120px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(45,212,191,.08), rgba(56,189,248,.05));
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 2.4rem; color: rgba(45,212,191,.25);
}
.pm-card-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pm-source-row {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.pm-logo { height: 20px; max-width: 80px; object-fit: contain; filter: brightness(0) invert(1); opacity: .7; }
.pm-source-name {
    font-size: .72rem; font-weight: 800; color: var(--mint-400);
    text-transform: uppercase; letter-spacing: .06em;
}
.pm-date { font-size: .68rem; color: var(--gray-500); margin-left: auto; white-space: nowrap; }
.pm-headline {
    font-family: var(--font-display);
    font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.85);
    line-height: 1.55; margin: 0; flex: 1;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pm-read-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: .75rem; font-weight: 700; color: var(--mint-400);
    margin-top: 4px; transition: gap .2s;
}
.pm-card:hover .pm-read-link { gap: 8px; }

/* ── News Ticker ─────────────────────────────────────────────────────── */
.news-ticker {
    background: var(--grad-cta);
    color: white;
    display: flex; align-items: center;
    height: 46px;
    overflow: hidden;
    position: relative; z-index: 10;
}
.ticker-label {
    flex-shrink: 0; height: 100%;
    padding: 0 22px;
    background: rgba(0,0,0,.22);
    display: flex; align-items: center; gap: 8px;
    font-weight: 800; font-size: .72rem;
    letter-spacing: 0.1em; text-transform: uppercase;
    white-space: nowrap;
}
.ticker-label i { font-size: .85rem; animation: pulse 2s infinite; }
.ticker-track { flex: 1; overflow: hidden; position: relative; }
.ticker-content {
    display: flex; align-items: center;
    white-space: nowrap;
    animation: tickerRoll 28s linear infinite;
    width: max-content;
}
.ticker-item {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 0 32px; font-size: .82rem; font-weight: 500;
}
.ticker-sep {
    width: 5px; height: 5px; border-radius: 50%;
    background: rgba(255,255,255,.5); flex-shrink: 0;
}
.ticker-more {
    flex-shrink: 0; height: 100%;
    padding: 0 22px;
    background: rgba(0,0,0,.15);
    font-size: .76rem; font-weight: 700;
    color: white; text-decoration: none;
    display: flex; align-items: center; gap: 7px;
    transition: background .2s;
    white-space: nowrap;
}
.ticker-more:hover { background: rgba(0,0,0,.3); color: white; }
@keyframes tickerRoll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── News & Updates Section ──────────────────────────────────────────── */
.news-updates-section { background: var(--mint-50); }
.news-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: var(--tr);
    height: 100%;
    display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--mint-200); }
.news-card-top {
    height: 5px;
    background: var(--grad-primary);
}
.news-cat-announcement { background: var(--mint-50); color: var(--mint-700); }
.news-cat-news         { background: var(--blue-50); color: var(--blue-700); }
.news-cat-event        { background: var(--pink-50); color: var(--pink-700); }
.news-cat-achievement  { background: #FFFBEB; color: #92400E; }
.news-cat-notice       { background: var(--gray-100); color: var(--gray-600); }
.news-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-cat-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 12px; border-radius: var(--radius-full);
    font-size: .68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .07em;
    margin-bottom: 14px;
}
.news-date {
    font-size: .74rem; color: var(--gray-400);
    display: flex; align-items: center; gap: 5px;
    margin-bottom: 8px;
}
.news-card h5 {
    font-family: var(--font-sans);
    font-size: .97rem; font-weight: 700;
    color: var(--gray-900); line-height: 1.45;
    margin-bottom: 10px;
}
.news-card p {
    font-size: .84rem; color: var(--gray-600);
    line-height: 1.65; flex: 1; margin: 0;
    overflow: hidden;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
}
.news-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 16px; font-size: .8rem; font-weight: 700;
    color: var(--mint-600); transition: all .2s;
}
.news-read-more:hover { gap: 10px; color: var(--mint-700); }
.news-empty {
    text-align: center; padding: 60px 20px; color: var(--gray-400);
}
.news-empty i { font-size: 2.5rem; display: block; margin-bottom: 12px; opacity: .35; }

/* Scroll indicator */
.scroll-indicator {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 3;
    color: var(--gray-400); font-size: 0.75rem;
    animation: fadeInUp 1s ease 2s both;
}
.scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid var(--gray-300);
    border-radius: 20px;
    display: flex; justify-content: center;
    padding-top: 6px;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--mint-400);
    border-radius: 4px;
    animation: scrollWheel 2s ease-in-out infinite;
}

/* ── Services ─────────────────────────────────────────────────────────── */
.services-section { background: var(--color-bg-alt); }
.category-tabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 48px; flex-wrap: wrap; }
.category-tab {
    padding: 10px 28px;
    border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.9rem;
    cursor: pointer; transition: var(--tr);
    border: 2px solid var(--gray-200);
    background: white; color: var(--gray-600);
}
.category-tab.active,
.category-tab:hover {
    background: var(--grad-primary);
    color: white; border-color: transparent;
    box-shadow: var(--shadow-mint);
    transform: translateY(-2px);
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    height: 100%;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-card);
    transition: var(--tr-spring);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }
.service-card-bg {
    position: absolute; top: -30px; right: -30px;
    font-size: 6rem; opacity: 0.04;
    color: var(--mint-500);
    transition: var(--tr-slow);
    pointer-events: none;
}
.service-card:hover .service-card-bg { transform: scale(1.2) rotate(10deg); opacity: 0.07; }
.service-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    background: var(--grad-card);
    border: 1px solid var(--mint-100);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: var(--mint-600);
    margin-bottom: 20px;
    transition: var(--tr-spring);
}
.service-card:hover .service-icon {
    background: var(--grad-primary);
    color: white;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: var(--shadow-mint);
}
.service-card h4 { font-size: 1.05rem; margin-bottom: 10px; color: var(--gray-900); }
.service-card p  { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }
.service-link {
    font-size: 0.875rem; font-weight: 600;
    color: var(--mint-600);
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--tr);
}
.service-link i { transition: transform 0.3s var(--ease-spring); }
.service-link:hover i { transform: translateX(4px); }

/* ── Stats ────────────────────────────────────────────────────────────── */
.stats-section {
    background: var(--grad-dark);
    color: white;
    position: relative;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2314b8a6' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card {
    text-align: center; padding: 40px 20px;
    position: relative; z-index: 1;
}
.stat-card .stat-icon {
    width: 70px; height: 70px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--mint-400);
    margin: 0 auto 20px;
}
.stat-card .count-number {
    font-size: 3rem; font-weight: 800;
    background: var(--grad-primary);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1; margin-bottom: 8px;
}
.stat-card .count-label { font-size: 0.9rem; color: rgba(255,255,255,0.65); font-weight: 400; }

/* ── About Section ────────────────────────────────────────────────────── */
.about-image-wrapper { position: relative; }
.about-image {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}
.about-experience-badge {
    position: absolute;
    bottom: 30px; right: -20px;
    background: var(--grad-cta);
    color: white; padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-mint);
}
.about-experience-badge .years { font-size: 2.5rem; font-weight: 800; line-height: 1; }
.about-experience-badge span   { font-size: 0.78rem; display: block; opacity: 0.85; }

.about-qual-list { list-style: none; padding: 0; margin: 24px 0; }
.about-qual-list li {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.92rem;
}
.about-qual-list li:last-child { border-bottom: none; }
.qual-icon { color: var(--mint-500); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.membership-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.member-badge {
    padding: 6px 14px;
    background: var(--mint-50);
    border: 1px solid var(--mint-200);
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--mint-700);
}

/* ── Appointment CTA ─────────────────────────────────────────────────── */
.appt-cta-section {
    background: var(--grad-cta);
    color: white;
    position: relative;
    overflow: hidden;
}
.appt-cta-section::after {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    pointer-events: none;
}
.availability-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.day-badge {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem; font-weight: 600;
    background: rgba(255,255,255,0.15);
    color: white; border: 1px solid rgba(255,255,255,0.25);
}
.day-badge.closed { opacity: 0.4; text-decoration: line-through; }

/* ── Testimonials ─────────────────────────────────────────────────────── */
.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    position: relative;
    transition: var(--tr-spring);
    height: 100%;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.testimonial-card::before {
    content: '\201C';
    position: absolute; top: 20px; right: 28px;
    font-size: 5rem; font-family: Georgia, serif;
    color: var(--mint-100);
    line-height: 1;
}
.stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.925rem; color: var(--gray-600); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    object-fit: cover;
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.2rem;
    flex-shrink: 0;
    overflow: hidden;
}
.author-avatar-placeholder {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 700; font-size: 1.1rem;
    flex-shrink: 0;
}
.author-name  { font-size: 0.9rem; font-weight: 700; color: var(--gray-900); }
.author-loc   { font-size: 0.78rem; color: var(--gray-400); }
.treatment-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--mint-50);
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    color: var(--mint-700);
    font-weight: 600;
    margin-top: 4px;
}

/* ── Blog Cards ──────────────────────────────────────────────────────── */
.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    transition: var(--tr-spring);
    height: 100%;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}
.blog-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-cat {
    position: absolute; top: 16px; left: 16px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem; font-weight: 700;
    color: white;
    text-transform: uppercase; letter-spacing: 0.04em;
}
.blog-card-body { padding: 24px; }
.blog-meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 0.78rem; color: var(--gray-400);
    margin-bottom: 12px;
}
.blog-meta i { color: var(--mint-400); }
.blog-card h4 { font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card h4 a { color: var(--gray-900); transition: var(--tr); }
.blog-card h4 a:hover { color: var(--mint-600); }
.blog-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.read-more {
    font-size: 0.85rem; font-weight: 600;
    color: var(--mint-600);
    display: inline-flex; align-items: center; gap: 6px;
    transition: var(--tr);
}
.read-more i { transition: transform 0.3s var(--ease-spring); }
.read-more:hover i { transform: translateX(4px); }

/* ── Contact Strip ───────────────────────────────────────────────────── */
.contact-strip {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}
.contact-item {
    display: flex; align-items: center; gap: 16px;
    padding: 28px 0;
}
.contact-item-icon {
    width: 54px; height: 54px;
    border-radius: var(--radius-md);
    background: var(--grad-primary);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-mint);
}
.contact-item-label { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 3px; }
.contact-item-value { font-size: 0.95rem; font-weight: 600; color: var(--gray-800); }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer {
    background: var(--gray-900);
    color: rgba(255,255,255,0.75);
    padding: 70px 0 0;
}
.footer-brand .brand-name { color: white; font-size: 1.3rem; }
.footer-brand .brand-tagline { color: var(--mint-400); }
.footer-desc { font-size: 0.875rem; line-height: 1.8; margin: 16px 0; max-width: 300px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    width: 38px; height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.9rem;
    transition: var(--tr-spring);
}
.social-btn:hover { background: var(--mint-500); color: white; transform: translateY(-3px); border-color: transparent; }
.footer h5 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 20px; font-family: var(--font-sans); position: relative; }
.footer h5::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 30px; height: 2px; background: var(--mint-400); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li + li { margin-top: 10px; }
.footer-links a {
    font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--tr);
    display: flex; align-items: center; gap: 6px;
}
.footer-links a::before { content: '→'; color: var(--mint-500); font-size: 0.8rem; transition: transform 0.2s; }
.footer-links a:hover { color: var(--mint-400); padding-left: 4px; }
.footer-hours li { font-size: 0.875rem; padding: 4px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0; margin-top: 50px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
    font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--mint-400); }

/* ── Back to Top ─────────────────────────────────────────────────────── */
#backToTop {
    position: fixed; bottom: 30px; right: 30px;
    width: 46px; height: 46px;
    background: var(--grad-cta);
    color: white; border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    cursor: pointer;
    box-shadow: var(--shadow-mint);
    opacity: 0; visibility: hidden;
    transition: var(--tr-spring);
    z-index: 999;
    display: flex; align-items: center; justify-content: center;
}
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(45,212,191,0.45); }

/* ── Alert / Flash ────────────────────────────────────────────────────── */
.alert-success-custom {
    background: #ECFDF5; border: 1px solid #A7F3D0;
    color: #065F46; border-radius: var(--radius-md);
    padding: 14px 20px; display: flex; align-items: center; gap: 10px;
}
.alert-error-custom {
    background: var(--pink-50); border: 1px solid var(--pink-200);
    color: var(--pink-700); border-radius: var(--radius-md);
    padding: 14px 20px; display: flex; align-items: center; gap: 10px;
}

/* ── Form Controls ───────────────────────────────────────────────────── */
.form-control-custom {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 0.925rem;
    font-family: var(--font-sans);
    color: var(--gray-800);
    background: white;
    transition: var(--tr);
    outline: none;
}
.form-control-custom:focus {
    border-color: var(--mint-400);
    box-shadow: 0 0 0 4px rgba(45,212,191,0.12);
}
.form-control-custom::placeholder { color: var(--gray-400); }

.form-label-custom {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-primary-custom {
    padding: 13px 32px;
    background: var(--grad-cta);
    color: white; border: none;
    border-radius: var(--radius-full);
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer;
    transition: var(--tr-spring);
    display: inline-flex; align-items: center; gap: 8px;
    box-shadow: var(--shadow-mint);
    font-family: var(--font-sans);
    text-decoration: none;
}
.btn-primary-custom:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(45,212,191,0.4); color: white; }
.btn-secondary-custom {
    padding: 12px 30px;
    background: transparent;
    color: var(--mint-600);
    border: 2px solid var(--mint-400);
    border-radius: var(--radius-full);
    font-size: 0.95rem; font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-sans);
    text-decoration: none;
}
.btn-secondary-custom:hover { background: var(--mint-50); color: var(--mint-700); }
.btn-danger-custom {
    padding: 10px 24px;
    background: transparent; color: var(--pink-500);
    border: 1.5px solid var(--pink-300); border-radius: var(--radius-full);
    font-size: 0.875rem; font-weight: 600; cursor: pointer;
    transition: var(--tr); font-family: var(--font-sans);
}
.btn-danger-custom:hover { background: var(--pink-50); color: var(--pink-600); }

/* ── Page hero (inner pages) ─────────────────────────────────────────── */
.page-hero {
    background: var(--grad-hero);
    padding: calc(var(--nav-height) + 50px) 0 60px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grad-mesh); opacity: 0.7;
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.breadcrumb-custom {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.875rem; color: var(--gray-500);
}
.breadcrumb-custom a { color: var(--mint-600); }
.breadcrumb-custom .sep { color: var(--gray-300); }

/* ── Patient Dashboard ───────────────────────────────────────────────── */
.dashboard-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-100);
    height: 100%;
}
.dash-stat-card {
    border-radius: var(--radius-md);
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}
.dash-stat-card::after {
    content: '';
    position: absolute; right: -20px; top: -20px;
    width: 100px; height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.dash-stat-card .ds-icon { font-size: 2rem; margin-bottom: 12px; opacity: 0.85; }
.dash-stat-card .ds-value { font-size: 2rem; font-weight: 800; line-height: 1; }
.dash-stat-card .ds-label { font-size: 0.85rem; opacity: 0.8; margin-top: 4px; }

.status-badge {
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.75rem; font-weight: 700;
    text-transform: capitalize;
}
.status-pending   { background: #FEF9C3; color: #854D0E; }
.status-confirmed { background: #D1FAE5; color: #065F46; }
.status-cancelled { background: var(--pink-100); color: var(--pink-700); }
.status-completed { background: var(--blue-100); color: var(--blue-700); }
.status-no_show   { background: var(--gray-100); color: var(--gray-600); }

/* ── Table ────────────────────────────────────────────────────────────── */
.table-custom { width: 100%; border-collapse: collapse; }
.table-custom th {
    padding: 14px 16px;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.04em;
    color: var(--gray-500);
    border-bottom: 2px solid var(--gray-100);
    background: var(--gray-50);
    white-space: nowrap;
}
.table-custom td {
    padding: 14px 16px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--gray-100);
    vertical-align: middle;
}
.table-custom tr:hover td { background: var(--mint-50); }

/* ── Pagination ──────────────────────────────────────────────────────── */
.pagination-custom { display: flex; justify-content: center; gap: 6px; margin-top: 32px; flex-wrap: wrap; }
.page-btn {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-200);
    font-size: 0.875rem; font-weight: 500;
    color: var(--gray-700); background: white;
    transition: var(--tr); text-decoration: none;
}
.page-btn.active, .page-btn:hover { background: var(--mint-400); color: white; border-color: var(--mint-400); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }
