:root {
    --bg: #f6f9ff;
    --surface: #ffffff;
    --surface-2: #eef5ff;
    --text: #0d1b2a;
    --muted: #637083;
    --line: rgba(13, 27, 42, 0.09);
    --primary: #0b5cff;
    --primary-2: #00b7ff;
    --green: #0fb981;
    --red: #f04438;
    --amber: #f59e0b;
    --shadow: 0 24px 70px rgba(20, 52, 94, 0.16);
    --shadow-soft: 0 18px 40px rgba(20, 52, 94, 0.10);
    --radius: 28px;
    --radius-sm: 18px;
    --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.app-shell { min-height: 100vh; overflow: hidden; }
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: rgba(246, 249, 255, 0.78);
    border-bottom: 1px solid rgba(13, 27, 42, 0.06);
}
.nav-wrap {
    width: min(1180px, calc(100% - 32px));
    height: 76px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    font-size: 26px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    box-shadow: 0 14px 32px rgba(11, 92, 255, 0.24);
}
.brand strong { display: block; font-size: 16px; letter-spacing: -0.03em; }
.brand small { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: #344054; font-weight: 650; font-size: 14px; }
.desktop-nav a { position: relative; }
.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width .22s ease;
}
.desktop-nav a:hover::after { width: 100%; }
.nav-cta {
    border: 1px solid rgba(11, 92, 255, 0.16);
    background: rgba(255,255,255,0.8);
    color: var(--primary);
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 800;
    box-shadow: 0 10px 26px rgba(11, 92, 255, 0.08);
}
.hero-section {
    position: relative;
    padding: 74px 0 52px;
    background:
        radial-gradient(circle at 18% 16%, rgba(0, 183, 255, 0.18), transparent 28%),
        radial-gradient(circle at 82% 26%, rgba(11, 92, 255, 0.14), transparent 30%);
}
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.7fr);
    gap: 56px;
    align-items: center;
}
.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(2px);
    opacity: .75;
    pointer-events: none;
}
.hero-orb-one { width: 340px; height: 340px; right: -120px; top: 110px; background: rgba(11, 92, 255, .08); }
.hero-orb-two { width: 220px; height: 220px; left: -80px; bottom: 40px; background: rgba(15, 185, 129, .11); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary);
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: 12px;
}
.eyebrow span {
    width: 9px;
    height: 9px;
    border-radius: 99px;
    background: var(--green);
    box-shadow: 0 0 0 8px rgba(15,185,129,.12);
}
h1, h2, h3, p { margin-top: 0; }
h1 {
    font-size: clamp(42px, 6vw, 74px);
    line-height: .95;
    letter-spacing: -0.075em;
    margin: 18px 0 22px;
}
.hero-lead {
    max-width: 660px;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
    margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button {
    border: 0;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), #0647c8);
    box-shadow: 0 18px 38px rgba(11, 92, 255, 0.28);
}
.button-soft {
    color: var(--primary);
    background: #fff;
    border: 1px solid rgba(11, 92, 255, .12);
    box-shadow: 0 12px 28px rgba(20, 52, 94, 0.08);
}
.button.full { width: 100%; }
.trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
    max-width: 730px;
}
.trust-row div {
    padding: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.74);
    border-radius: 20px;
    box-shadow: 0 10px 24px rgba(20, 52, 94, .05);
}
.trust-row strong { display: block; font-size: 14px; }
.trust-row span { display: block; color: var(--muted); font-size: 12px; margin-top: 5px; }
.hero-phone { display: flex; justify-content: center; }
.phone-shell {
    width: min(360px, 100%);
    min-height: 610px;
    border-radius: 44px;
    background: #0d1b2a;
    padding: 18px;
    box-shadow: 0 35px 80px rgba(13, 27, 42, .28);
    position: relative;
    overflow: hidden;
}
.phone-shell::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 0%, rgba(0,183,255,.4), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 32%);
}
.phone-status {
    position: relative;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.phone-status::before {
    content: "";
    width: 90px;
    height: 24px;
    border-radius: 99px;
    background: rgba(0,0,0,.35);
}
.phone-card, .doctor-mini-card, .map-preview { position: relative; z-index: 1; }
.live-card {
    margin: 18px 0;
    padding: 16px;
    border-radius: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(20px);
}
.pulse-dot {
    width: 11px;
    height: 11px;
    background: var(--green);
    border-radius: 99px;
    box-shadow: 0 0 0 0 rgba(15,185,129,.65);
    animation: pulse 1.6s infinite;
}
.doctor-mini-card {
    margin-top: 12px;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    display: grid;
    grid-template-columns: 48px 1fr auto;
    gap: 12px;
    align-items: center;
    transform: translateY(0);
    animation: floatCard 4s ease-in-out infinite;
}
.doctor-mini-card.active { background: #fff; }
.doctor-mini-card:nth-child(4) { animation-delay: .45s; opacity: .86; }
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.avatar.alt { background: linear-gradient(135deg, var(--green), #14d9a1); }
.doctor-mini-card strong { display: block; font-size: 13px; }
.doctor-mini-card small { color: var(--muted); display: block; margin-top: 4px; }
.doctor-mini-card b { color: var(--primary); }
.map-preview {
    margin-top: 18px;
    height: 248px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(135deg, #13365e, #0b5cff);
    background-size: 34px 34px, 34px 34px, auto;
    overflow: hidden;
}
.map-pin {
    position: absolute;
    width: 26px;
    height: 26px;
    border-radius: 99px 99px 99px 0;
    background: #fff;
    transform: rotate(-45deg);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.map-pin::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--primary);
    left: 9px;
    top: 9px;
}
.pin-a { left: 74px; bottom: 78px; }
.pin-b { right: 70px; top: 60px; background: #dff9ef; }
.map-route {
    position: absolute;
    left: 94px;
    top: 108px;
    width: 150px;
    height: 90px;
    border: 3px dashed rgba(255,255,255,.65);
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 60px 0 0;
}
.search-section { padding: 76px 0; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.06em;
    margin: 14px 0;
}
.section-heading p { color: var(--muted); line-height: 1.7; font-size: 17px; }
.setup-alert {
    background: #fff7ed;
    color: #9a3412;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    padding: 16px 18px;
    margin-bottom: 18px;
}
.setup-alert code { background: rgba(154,52,18,.1); padding: 2px 6px; border-radius: 7px; }
.finder-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}
.finder-panel {
    position: sticky;
    top: 96px;
    border-radius: var(--radius);
    padding: 22px;
    background: rgba(255,255,255,.86);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(20px);
}
.panel-header, .results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}
.panel-header small, .results-header small { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.panel-header h3, .results-header h3 { margin: 4px 0 0; font-size: 24px; letter-spacing: -0.04em; }
.icon-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 15px;
    color: var(--primary);
    font-size: 20px;
    font-weight: 900;
}
.input-label { display: flex; justify-content: space-between; color: #24364b; font-size: 13px; font-weight: 900; margin: 18px 0 9px; }
.location-input-wrap {
    display: flex;
    gap: 8px;
    padding: 6px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(20,52,94,.05);
}
.location-input-wrap input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 12px 10px;
    min-width: 0;
}
.location-input-wrap button {
    border: 0;
    background: var(--surface-2);
    color: var(--primary);
    border-radius: 13px;
    font-weight: 900;
    padding: 0 12px;
    white-space: nowrap;
}
.microcopy { color: var(--muted); font-size: 12px; line-height: 1.5; margin: 8px 4px 0; }
.filter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 18px; }
.chip {
    min-height: 42px;
    border: 1px solid var(--line);
    background: #fff;
    color: #344054;
    border-radius: 999px;
    font-weight: 850;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.chip.active, .chip:hover { background: var(--primary); color: #fff; transform: translateY(-1px); }
input[type="range"] { width: 100%; accent-color: var(--primary); }
.button-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border-radius: 99px;
    border: 2px solid rgba(255,255,255,.5);
    border-top-color: #fff;
    animation: spin .75s linear infinite;
}
.loading .button-spinner { display: inline-block; }
.result-summary {
    margin-top: 18px;
    padding: 15px;
    border-radius: 20px;
    background: var(--surface-2);
    color: var(--muted);
    display: grid;
    gap: 4px;
}
.result-summary strong { color: var(--text); }
.map-results-wrap { min-width: 0; }
.map-card {
    position: relative;
    height: 430px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255,255,255,.8);
    background: #dbeafe;
}
#map { width: 100%; height: 100%; }
.map-floating-card {
    position: absolute;
    left: 18px;
    top: 18px;
    max-width: calc(100% - 36px);
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(255,255,255,.9);
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 30px rgba(20,52,94,.12);
}
.map-floating-card strong, .map-floating-card span { display: block; }
.map-floating-card span { color: var(--muted); font-size: 12px; margin-top: 3px; }
.results-header { margin: 22px 2px 14px; }
.results-header select {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 14px;
    padding: 11px 12px;
    color: #344054;
    font-weight: 800;
}
.results-list { display: grid; gap: 14px; }
.empty-state, .doctor-card, .skeleton-card {
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(20,52,94,.07);
}
.empty-state { text-align: center; padding: 38px 20px; color: var(--muted); }
.empty-state strong { color: var(--text); display: block; font-size: 19px; margin: 8px 0; }
.empty-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 22px; margin: 0 auto; color: var(--primary); background: var(--surface-2); font-size: 28px; }
.doctor-card {
    padding: 18px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    animation: cardIn .32s ease both;
}
.doctor-card-top { display: flex; align-items: flex-start; gap: 13px; }
.doctor-badge {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    color: #fff;
    font-weight: 900;
}
.doctor-card h4 { margin: 0; font-size: 18px; letter-spacing: -0.03em; }
.meta-line { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 9px; color: var(--muted); font-size: 13px; }
.meta-pill { display: inline-flex; align-items: center; gap: 4px; padding: 5px 9px; background: var(--surface-2); border-radius: 999px; }
.meta-pill.open { color: #057a55; background: #e8fff4; }
.meta-pill.closed { color: #b42318; background: #fff1f0; }
.doctor-address { color: var(--muted); margin: 12px 0 0; line-height: 1.55; font-size: 14px; }
.score-box {
    min-width: 78px;
    text-align: center;
    padding: 10px;
    border-radius: 18px;
    background: #f7fbff;
    border: 1px solid var(--line);
    align-self: start;
}
.score-box strong { display: block; color: var(--primary); font-size: 22px; }
.score-box span { color: var(--muted); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.card-actions { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 9px; }
.card-actions a, .card-actions button {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    min-height: 40px;
    padding: 0 13px;
    display: inline-flex;
    align-items: center;
    font-weight: 850;
}
.card-actions .primary-action { color: #fff; background: var(--primary); border-color: var(--primary); }
.skeleton-card { height: 118px; overflow: hidden; position: relative; }
.skeleton-card::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(11,92,255,.09), transparent);
    animation: shimmer 1s infinite;
}
.how-section { padding: 74px 0; background: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step-card {
    padding: 26px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, #fff, #f8fbff);
    border: 1px solid var(--line);
    box-shadow: 0 16px 32px rgba(20,52,94,.07);
}
.step-card span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--primary);
    background: var(--surface-2);
    font-weight: 900;
}
.step-card h3 { margin: 22px 0 10px; font-size: 22px; letter-spacing: -0.04em; }
.step-card p { color: var(--muted); line-height: 1.7; }
.reviews-section { padding: 76px 0; }
.review-slider { display: grid; grid-template-columns: 48px 1fr 48px; gap: 14px; align-items: center; }
.slider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--primary);
    font-size: 32px;
    line-height: 1;
    box-shadow: 0 10px 22px rgba(20,52,94,.08);
}
.review-window { overflow: hidden; border-radius: var(--radius); }
.review-track { display: flex; transition: transform .45s cubic-bezier(.2,.85,.25,1); }
.review-card {
    min-width: 100%;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(24px, 4vw, 42px);
    box-shadow: var(--shadow-soft);
}
.stars { color: var(--amber); letter-spacing: 4px; margin-bottom: 18px; }
.review-card p { font-size: clamp(20px, 3vw, 30px); line-height: 1.45; letter-spacing: -0.04em; }
.review-card strong { color: var(--primary); }
.safety-section { padding: 40px 0 86px; }
.safety-card {
    border-radius: 34px;
    color: #fff;
    padding: clamp(28px, 5vw, 52px);
    background:
        radial-gradient(circle at 90% 10%, rgba(0,183,255,.24), transparent 28%),
        linear-gradient(135deg, #0d1b2a, #0b3f93);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(13,27,42,.22);
}
.safety-card p { color: rgba(255,255,255,.72); line-height: 1.7; max-width: 760px; }
.safety-card .eyebrow { color: #9ee7ff; }
.safety-card .button-soft { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.18); color: #fff; }
.site-footer { padding: 36px 0 92px; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 32px; border-top: 1px solid var(--line); padding-top: 30px; }
.footer-grid p { max-width: 520px; line-height: 1.6; }
.footer-grid span { display: block; margin-top: 8px; }
.footer-brand { margin-bottom: 12px; }
.mobile-tabbar {
    display: none;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + var(--safe-bottom));
    z-index: 60;
    height: 64px;
    border-radius: 24px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(255,255,255,.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 48px rgba(13,27,42,.18);
    align-items: center;
    justify-content: space-around;
}
.mobile-tabbar a { font-size: 12px; font-weight: 900; color: #344054; }
.details-sheet { position: fixed; inset: 0; z-index: 100; display: none; }
.details-sheet.open { display: block; }
.sheet-backdrop { position: absolute; inset: 0; background: rgba(13,27,42,.42); backdrop-filter: blur(10px); }
.sheet-panel {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    width: min(720px, calc(100% - 24px));
    max-height: min(760px, calc(100vh - 38px));
    overflow: auto;
    border-radius: 34px;
    background: #fff;
    padding: 26px;
    box-shadow: 0 30px 90px rgba(13,27,42,.35);
    animation: sheetUp .26s ease both;
}
.sheet-close {
    position: sticky;
    top: 0;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 16px;
    background: var(--surface-2);
    color: var(--primary);
    font-size: 26px;
    display: grid;
    place-items: center;
}
.sheet-title { margin: 4px 0 8px; font-size: 30px; letter-spacing: -0.05em; }
.sheet-meta { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0 20px; }
.hours-list { margin: 18px 0; padding: 0; list-style: none; display: grid; gap: 8px; color: var(--muted); }
.google-reviews { display: grid; gap: 12px; margin-top: 20px; }
.google-review {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fbfdff;
}
.google-review p { color: var(--muted); line-height: 1.6; margin-bottom: 8px; }
.google-review strong { display: block; }
.google-review small { color: var(--muted); }
.reveal-up { opacity: 0; transform: translateY(24px); transition: opacity .72s ease, transform .72s cubic-bezier(.2,.8,.2,1); }
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
@keyframes pulse { 70% { box-shadow: 0 0 0 12px rgba(15,185,129,0); } 100% { box-shadow: 0 0 0 0 rgba(15,185,129,0); } }
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { to { transform: translateX(100%); } }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes sheetUp { from { transform: translate(-50%, 20px); opacity: 0; } to { transform: translate(-50%, 0); opacity: 1; } }
@media (max-width: 980px) {
    .desktop-nav, .nav-cta { display: none; }
    .hero-grid, .finder-layout, .steps-grid, .safety-card { grid-template-columns: 1fr; }
    .hero-section { padding-top: 42px; }
    .finder-panel { position: relative; top: 0; }
    .hero-phone { order: -1; }
    .phone-shell { min-height: 520px; }
    .map-preview { height: 186px; }
    .steps-grid { gap: 14px; }
    .safety-card { text-align: left; }
}
@media (max-width: 720px) {
    body { padding-bottom: 86px; }
    .container, .nav-wrap { width: min(100% - 24px, 1180px); }
    .nav-wrap { height: 68px; }
    .brand-mark { width: 38px; height: 38px; border-radius: 14px; }
    h1 { font-size: 44px; }
    .hero-lead { font-size: 16px; }
    .hero-actions .button { width: 100%; }
    .trust-row { grid-template-columns: 1fr; }
    .hero-phone { display: none; }
    .search-section, .how-section, .reviews-section { padding: 54px 0; }
    .finder-panel { padding: 18px; border-radius: 24px; }
    .filter-grid { grid-template-columns: repeat(2, 1fr); }
    .map-card { height: 360px; border-radius: 24px; }
    .results-header { align-items: flex-start; flex-direction: column; }
    .results-header select { width: 100%; }
    .doctor-card { grid-template-columns: 1fr; }
    .score-box { width: 100%; display: flex; align-items: center; justify-content: space-between; }
    .review-slider { grid-template-columns: 1fr; }
    .slider-arrow { display: none; }
    .mobile-tabbar { display: flex; }
    .footer-grid { flex-direction: column; }
}
