/* New Chandigarh Cab Service — Brand Styles */
:root {
    --blue: #1a56c4;
    --blue-dark: #0d3a8a;
    --blue-light: #4a8ef0;
    --sky: #c8e4ff;
    --sky-mid: #a8d4ff;
    --yellow: #f5c518;
    --red: #e31c23;
    --black: #111111;
    --ink: #1a1a1a;
    --muted: #5a6570;
    --white: #ffffff;
    --surface: rgba(255, 255, 255, 0.72);
    --radius: 14px;
    --radius-pill: 999px;
    --shadow: 0 12px 40px rgba(13, 58, 138, 0.12);
    --font: 'DM Sans', system-ui, sans-serif;
    --display: 'Bebas Neue', Impact, sans-serif;
    --max: 1140px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--ink);
    background:
        radial-gradient(ellipse 120% 80% at 10% -10%, #dff0ff 0%, transparent 50%),
        radial-gradient(ellipse 90% 60% at 100% 0%, #b8daff 0%, transparent 45%),
        linear-gradient(180deg, #e8f4ff 0%, #d0e8ff 40%, #eef6ff 100%);
    min-height: 100vh;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red); }
ul { list-style: none; }

.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); }

.top-bar {
    background: var(--black);
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.45rem 0;
}

.top-bar-inner { display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-link { color: var(--white); opacity: 0.9; }
.top-link:hover { color: var(--yellow); }
.top-sep { opacity: 0.4; }
.top-spacer { flex: 1; }

.main-nav {
    background: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(26, 86, 196, 0.12);
    box-shadow: 0 4px 20px rgba(13, 58, 138, 0.06);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 1rem;
}

.brand { display: flex; align-items: center; gap: 0.75rem; color: inherit; }
.brand:hover { color: inherit; }
.brand-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(13, 58, 138, 0.28));
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--display); font-size: 1.35rem; letter-spacing: 0.04em; color: var(--blue-dark); }
.brand-sub { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--red); }

.nav-links { display: flex; align-items: center; gap: 0.35rem 1.25rem; flex-wrap: wrap; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.92rem; }
.nav-links a.active, .nav-links a:hover { color: var(--red); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span { width: 24px; height: 2.5px; background: var(--black); border-radius: 2px; transition: .25s; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 1.4rem;
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s, color .2s;
    text-decoration: none;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); color: inherit; }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); color: var(--white); box-shadow: 0 8px 24px rgba(26,86,196,.35); }
.btn-accent { background: var(--red); color: var(--white); }
.btn-accent:hover { background: #c0161c; color: var(--white); box-shadow: 0 8px 24px rgba(227,28,35,.35); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: #333; color: var(--yellow); }
.btn-outline { background: transparent; border-color: var(--blue); color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-yellow { background: var(--yellow); color: var(--black); }
.btn-yellow:hover { background: #e0b400; color: var(--black); }
.btn-block { width: 100%; }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { background: rgba(255,255,255,.15); color: var(--white); }
.btn-whatsapp { background: #25d366; color: var(--white); border-color: #25d366; }
.btn-whatsapp:hover { background: #1ebe57; color: var(--white); box-shadow: 0 8px 24px rgba(37,211,102,.4); }

.top-whatsapp { color: #25d366 !important; font-weight: 700; }
.top-whatsapp:hover { color: #6dff9a !important; }

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform .2s, box-shadow .2s;
    animation: waPulse 2.4s ease-in-out infinite;
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
    color: inherit;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 8px 28px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.15); }
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(520px, 88vh, 720px);
    display: grid;
    align-items: end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 30, 70, 0.82) 0%, rgba(26, 86, 196, 0.55) 45%, rgba(10, 30, 70, 0.35) 100%),
        url('../images/hero-road.svg') center/cover no-repeat;
    animation: heroPulse 12s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    from { transform: scale(1); }
    to { transform: scale(1.04); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 0 5rem;
    color: var(--white);
    max-width: 640px;
}

.hero-logo {
    width: clamp(96px, 18vw, 140px);
    height: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.35));
    animation: fadeUp 0.8s ease both;
}

.hero-brand {
    font-family: var(--display);
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    letter-spacing: 0.03em;
    line-height: 0.95;
    margin-bottom: 0.75rem;
    animation: fadeUp 0.8s ease both;
}

.hero-brand span { color: var(--yellow); }

.hero-tagline {
    font-family: var(--display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    animation: fadeUp 0.8s 0.15s ease both;
}

.hero-tagline .ride { color: var(--red); text-shadow: 0 0 20px rgba(227,28,35,.4); }

.hero-sub {
    font-size: 1.1rem;
    opacity: 0.92;
    margin-bottom: 1.75rem;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    animation: fadeUp 0.8s 0.45s ease both;
}

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

/* Sections */
.section { padding: 4.5rem 0; }
.section-head { text-align: center; margin-bottom: 2.5rem; }
.section-head h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: 0.04em;
    color: var(--blue-dark);
}
.section-head h2 span { color: var(--red); }
.section-head p { color: var(--muted); max-width: 520px; margin: 0.5rem auto 0; }

.cta-banner {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius-pill);
    padding: 1.1rem 2rem;
    text-align: center;
    font-family: var(--display);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    letter-spacing: 0.06em;
    box-shadow: var(--shadow);
    margin: -1.5rem auto 0;
    position: relative;
    z-index: 3;
    width: min(100% - 2rem, 820px);
    animation: fadeUp 0.8s 0.5s ease both;
}
.cta-banner span { color: var(--yellow); }

/* Fleet cards */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(26, 86, 196, 0.08);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(13, 58, 138, 0.18);
}

.fleet-visual {
    background: linear-gradient(165deg, #eef6ff 0%, #d6e9ff 45%, #f5f9ff 100%);
    padding: 1rem 1.25rem;
    min-height: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.fleet-visual::after {
    content: '';
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 18px;
    height: 14px;
    background: radial-gradient(ellipse at center, rgba(13,58,138,.18), transparent 70%);
    pointer-events: none;
}
.fleet-img {
    width: 100%;
    height: 100%;
    object-position: center bottom;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 18px rgba(13, 58, 138, 0.18));
    transition: transform .35s ease;
}
.fleet-img-contain { object-fit: contain; }
.fleet-img-cover { object-fit: cover; object-position: center; }
.fleet-card:hover .fleet-img { transform: scale(1.06) translateY(-4px); }
.fleet-visual svg { width: 100%; max-width: 220px; height: auto; }

.admin-taxi-preview {
    margin-top: 0.75rem;
    background: linear-gradient(165deg, #eef6ff, #f5f9ff);
    border-radius: 10px;
    padding: 0.75rem;
    text-align: center;
}
.admin-taxi-preview img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    margin: 0 auto 0.4rem;
}
.admin-taxi-preview small { color: var(--muted); font-size: 0.8rem; }
.taxi-thumb {
    width: 72px;
    height: 48px;
    object-fit: contain;
    background: #eef6ff;
    border-radius: 6px;
}
.admin-fleet-grid { margin-bottom: 0.5rem; }

.fleet-body { padding: 1.25rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.fleet-name {
    display: inline-block;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: 8px;
    padding: 0.25rem 0.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}
.fleet-meta { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.82rem; color: var(--muted); }
.fleet-meta span { background: var(--sky); padding: 0.2rem 0.6rem; border-radius: var(--radius-pill); color: var(--blue-dark); font-weight: 600; }
.fleet-desc { font-size: 0.9rem; color: var(--muted); flex: 1; margin-bottom: 1rem; }
.fleet-price { font-weight: 700; color: var(--blue-dark); margin-bottom: 0.75rem; }
.fleet-price small { font-weight: 500; color: var(--muted); }

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid rgba(26,86,196,.1);
    backdrop-filter: blur(8px);
    transition: transform .25s;
}
.feature:hover { transform: translateY(-4px); }
.feature-icon {
    width: 56px; height: 56px;
    margin: 0 auto 1rem;
    background: var(--blue);
    color: var(--yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--blue-dark); }
.feature p { font-size: 0.9rem; color: var(--muted); }

.b2b-strip {
    background: linear-gradient(90deg, var(--blue-dark), var(--blue));
    color: var(--white);
    padding: 2.5rem 0;
    text-align: center;
}
.b2b-strip h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    letter-spacing: 0.05em;
}
.b2b-strip h2 span { color: var(--red); background: var(--white); padding: 0 0.35em; border-radius: 4px; }
.b2b-strip p { margin: 0.5rem 0 1.25rem; opacity: 0.9; }

/* Forms */
.form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 2rem;
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid rgba(26,86,196,.08);
}

.form-card.wide { max-width: 720px; }

.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 0.4rem; color: var(--ink); }
.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d8e4f0;
    border-radius: 10px;
    font-family: var(--font);
    font-size: 0.95rem;
    background: #f8fbff;
    transition: border-color .2s, box-shadow .2s;
}
.form-control:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(26,86,196,.15);
    background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.3rem; }
.checkbox-label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; cursor: pointer; }

.auth-page { padding: 3rem 0 4rem; }
.auth-page h1 {
    font-family: var(--display);
    font-size: 2.4rem;
    text-align: center;
    letter-spacing: 0.04em;
    color: var(--blue-dark);
    margin-bottom: 0.25rem;
}
.auth-page .subtitle { text-align: center; color: var(--muted); margin-bottom: 2rem; }

/* Alerts */
.alert {
    padding: 0.9rem 1.2rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-weight: 500;
    font-size: 0.92rem;
}
.alert-success { background: #e6f7ed; color: #0a6b35; border: 1px solid #b3e6c8; }
.alert-danger { background: #fde8e8; color: #a11; border: 1px solid #f5c0c0; }
.alert-warning { background: #fff8e6; color: #8a6400; border: 1px solid #f0e0a0; }
.alert-info { background: #e8f1ff; color: #0d3a8a; border: 1px solid #b8d0f5; }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
}
.badge-success { background: #d4f5e2; color: #0a6b35; }
.badge-warning { background: #fff0c2; color: #8a6400; }
.badge-danger { background: #ffd4d4; color: #a11; }
.badge-info { background: #d4e8ff; color: #0d3a8a; }
.badge-primary { background: #c8d8ff; color: #1a56c4; }
.badge-secondary { background: #e8e8e8; color: #555; }

/* Tables */
.table-wrap { overflow-x: auto; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
table.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
table.data-table th, table.data-table td { padding: 0.85rem 1rem; text-align: left; border-bottom: 1px solid #eef2f7; }
table.data-table th { background: var(--blue-dark); color: var(--white); font-weight: 600; white-space: nowrap; }
table.data-table tr:hover td { background: #f5f9ff; }

/* Page hero (inner) */
.page-hero {
    background: linear-gradient(120deg, var(--blue-dark), var(--blue));
    color: var(--white);
    padding: 3rem 0 2.5rem;
    text-align: center;
}
.page-hero h1 {
    font-family: var(--display);
    font-size: clamp(2rem, 5vw, 3rem);
    letter-spacing: 0.05em;
}
.page-hero p { opacity: 0.9; margin-top: 0.4rem; }

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}
.contact-info {
    background: var(--black);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
}
.contact-info h3 { font-family: var(--display); font-size: 1.6rem; letter-spacing: 0.04em; margin-bottom: 1.25rem; color: var(--yellow); }
.contact-info p { margin-bottom: 1rem; opacity: 0.9; }
.contact-info a { color: var(--white); }
.contact-info a:hover { color: var(--yellow); }

/* Footer */
.site-footer { margin-top: 3rem; }
.footer-cta {
    background: var(--black);
    padding: 1.5rem 0;
    text-align: center;
}
.footer-cta .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem; }
.footer-cta-text {
    font-family: var(--display);
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    letter-spacing: 0.05em;
    color: var(--white);
}
.footer-cta-text span { color: var(--yellow); }

.footer-main {
    background: linear-gradient(180deg, #0a1e46, #061230);
    color: rgba(255,255,255,.85);
    padding: 3rem 0 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr;
    gap: 2rem;
}
.footer-col h4 { color: var(--yellow); margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col a { color: rgba(255,255,255,.8); }
.footer-col a:hover { color: var(--yellow); }
.b2b-tag { margin-top: 1rem; font-weight: 700; }
.b2b-tag span { color: var(--red); background: var(--white); padding: 0 0.3em; border-radius: 3px; }

.footer-bottom {
    background: #040c1c;
    color: rgba(255,255,255,.5);
    font-size: 0.85rem;
    padding: 1rem 0;
    text-align: center;
}

.mt-1 { margin-top: 0.75rem; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }

/* Dashboard shell */
.dash-layout { display: flex; min-height: 100vh; background: #f0f5fb; }
.dash-sidebar {
    width: 260px;
    background: linear-gradient(180deg, #0a1e46, #0d3a8a);
    color: var(--white);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
}
.dash-brand {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.dash-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    flex-shrink: 0;
}
.dash-brand strong { display: block; font-family: var(--display); font-size: 1.3rem; letter-spacing: 0.04em; color: var(--yellow); }
.dash-brand small { opacity: 0.7; font-size: 0.75rem; }
.dash-menu { padding: 1rem 0.75rem; flex: 1; overflow-y: auto; }
.dash-menu a {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.7rem 1rem;
    color: rgba(255,255,255,.8);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}
.dash-menu a:hover, .dash-menu a.active {
    background: rgba(255,255,255,.12);
    color: var(--yellow);
}
.dash-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dash-topbar {
    background: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e4ecf5;
    gap: 1rem;
    flex-wrap: wrap;
}
.dash-topbar h1 { font-size: 1.25rem; color: var(--blue-dark); }
.dash-content { padding: 1.5rem; flex: 1; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 1.75rem;
}
.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: 0 4px 16px rgba(13,58,138,.06);
    border-left: 4px solid var(--blue);
}
.stat-card.red { border-left-color: var(--red); }
.stat-card.yellow { border-left-color: var(--yellow); }
.stat-card.green { border-left-color: #0a6b35; }
.stat-card .stat-label { font-size: 0.8rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-card .stat-value { font-size: 1.75rem; font-weight: 700; color: var(--blue-dark); margin-top: 0.25rem; }

.panel {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(13,58,138,.06);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.panel-head h2 { font-size: 1.15rem; color: var(--blue-dark); }

.dash-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--blue-dark);
}

.actions { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.actions .btn { padding: 0.3rem 0.7rem; font-size: 0.78rem; }

.form-section-title {
    font-size: 1rem;
    color: var(--blue-dark);
    margin: 1.25rem 0 0.75rem;
    padding-bottom: 0.35rem;
    border-bottom: 2px solid var(--sky);
}
.nav-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.25rem;
    height: 1.25rem;
    padding: 0 0.35rem;
    background: var(--red);
    color: #fff;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
}
.avatar-sm {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--sky);
}
.avatar-empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e8eef5;
    color: var(--muted);
    font-size: 0.75rem;
}
.doc-thumb {
    max-width: 180px;
    max-height: 140px;
    border-radius: 10px;
    border: 1px solid #d8e4f0;
    object-fit: cover;
}
.review-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 1.5rem;
}
.doc-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
}
.doc-item h4 {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    color: var(--muted);
}
@media (max-width: 800px) {
    .review-grid { grid-template-columns: 1fr; }
}

/* Booking estimate */
.fare-box {
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    margin-top: 1rem;
}
.fare-box .fare-amount { font-size: 1.8rem; font-weight: 700; color: var(--yellow); }

/* Responsive */
@media (max-width: 900px) {
    .features { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 12px 30px rgba(0,0,0,.12);
        align-items: stretch;
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 0.75rem; }
    .main-nav { position: relative; }

    .dash-sidebar {
        position: fixed;
        left: -280px;
        z-index: 200;
        transition: left .3s;
    }
    .dash-sidebar.open { left: 0; }
    .dash-toggle { display: block; }
    .dash-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,.4);
        z-index: 150;
    }
    .dash-overlay.show { display: block; }
}

@media (max-width: 600px) {
    .hero-content { padding: 3rem 0 4rem; }
    .cta-banner { border-radius: var(--radius); padding: 1rem; }
    .top-bar { font-size: 0.75rem; }
}
