:root {
    --white: #ffffff;
    --navy: #0b1f3a;
    --maroon: #800000;
    --gold: #ffc107;
    --ink: #162235;
    --muted: #637083;
    --line: #e8edf4;
    --soft: #f6f8fb;
    --shadow: 0 18px 50px rgba(11, 31, 58, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px clamp(16px, 5vw, 72px);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    color: var(--navy);
    font-size: 1.15rem;
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--navy);
    background: var(--gold);
    box-shadow: inset 0 -4px 0 rgba(128, 0, 0, .16);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav a {
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--navy);
    font-weight: 700;
}
.main-nav a:hover, .main-nav a.active { background: #fff6d8; color: var(--maroon); }
.header-call {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--maroon);
    color: var(--white);
    font-weight: 800;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: var(--navy);
    border-radius: 6px;
    padding: 10px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    align-items: end;
    padding: 54px clamp(16px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(11, 31, 58, .94), rgba(11, 31, 58, .70), rgba(128, 0, 0, .55)),
        url("../images/hero-taxi.jpg") center/cover no-repeat;
}
.hero-content { max-width: 720px; }
.eyebrow {
    margin: 0 0 8px;
    color: var(--gold);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero h1, .page-hero h1 {
    margin: 0;
    max-width: 860px;
    font-size: clamp(2.35rem, 7vw, 5.2rem);
    line-height: 1.02;
    letter-spacing: 0;
}
.hero p { max-width: 650px; font-size: 1.08rem; color: #edf3fb; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 900;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-light { background: var(--white); color: var(--navy); }
.btn-outline { border-color: var(--maroon); color: var(--maroon); background: var(--white); }
.btn-block { width: 100%; }

.booking-card, .contact-form, .admin-card {
    width: 100%;
    max-width: 470px;
    padding: 22px;
    background: var(--white);
    color: var(--ink);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.booking-card h2, .contact-form h2 { margin: 0 0 14px; color: var(--navy); }
label { display: grid; gap: 6px; margin-bottom: 12px; font-weight: 800; color: var(--navy); }
input, select, textarea {
    width: 100%;
    min-height: 46px;
    padding: 12px 13px;
    border: 1px solid #d7dfeb;
    border-radius: 6px;
    background: var(--white);
    color: var(--ink);
}
textarea { min-height: 110px; resize: vertical; }
.form-alert { padding: 10px 12px; background: #fff1f1; color: var(--maroon); border-radius: 6px; }

.trust-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--line);
}
.trust-strip span {
    padding: 18px;
    text-align: center;
    background: var(--navy);
    color: var(--white);
    font-weight: 900;
}
.section {
    padding: 70px clamp(16px, 5vw, 72px);
}
.section-tint { background: var(--soft); }
.section-heading {
    max-width: 720px;
    margin: 0 auto 30px;
    text-align: center;
}
.section-heading h2, .split h2 {
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1.12;
}
.grid { display: grid; gap: 20px; }
.three, .four { grid-template-columns: 1fr; }
.feature-card, .car-card, blockquote, .route-card, .contact-panel, .stats-panel {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(11, 31, 58, .07);
}
.feature-card { padding: 24px; }
.feature-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--navy);
    font-weight: 900;
}
.feature-card h3, .car-card h3, .car-card h2 { margin: 16px 0 8px; color: var(--navy); }
.car-card { padding: 18px; }
.car-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    background: #f3f6fa;
    border-radius: 6px;
}
.car-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 12px 0 18px;
}
.car-meta strong { color: var(--maroon); }
.split {
    display: grid;
    gap: 30px;
    align-items: center;
}
.benefit-list {
    display: grid;
    gap: 12px;
}
.benefit-list div {
    padding: 18px;
    border-left: 4px solid var(--gold);
    background: var(--soft);
    border-radius: 6px;
}
.benefit-list strong, .benefit-list span { display: block; }
.benefit-list strong { color: var(--navy); }
.route-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.route-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px;
}
.route-card strong { color: var(--maroon); }
blockquote {
    margin: 0;
    padding: 22px;
    color: var(--ink);
}
cite { display: block; margin-top: 12px; color: var(--maroon); font-style: normal; font-weight: 900; }
.faq details {
    max-width: 900px;
    margin: 12px auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px 18px;
}
.faq summary { cursor: pointer; color: var(--navy); font-weight: 900; }
.page-hero {
    padding: 80px clamp(16px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(11, 31, 58, .96), rgba(128, 0, 0, .68)),
        url("../images/hero-taxi.jpg") center/cover no-repeat;
}
.page-hero p:last-child { max-width: 720px; color: #edf3fb; }
.stats-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    background: var(--line);
}
.stats-panel div { padding: 22px; background: var(--white); }
.stats-panel strong { display: block; color: var(--maroon); font-size: 2rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tag-list span { padding: 11px 14px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-weight: 800; }
.service-list { display: grid; gap: 18px; }
.service-list article {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
}
.service-number { color: var(--maroon); font-weight: 900; font-size: 1.5rem; }
.service-list h2 { margin: 0; color: var(--navy); }
.service-list a { color: var(--maroon); font-weight: 900; }
.contact-grid { display: grid; gap: 24px; align-items: start; }
.contact-form { max-width: none; }
.contact-panel { padding: 22px; }
.phone-link { color: var(--maroon); font-weight: 900; }
iframe {
    width: 100%;
    min-height: 320px;
    margin-top: 18px;
    border: 0;
    border-radius: 8px;
}
.site-footer {
    padding: 48px clamp(16px, 5vw, 72px) 24px;
    background: var(--navy);
    color: #dfe8f4;
}
.footer-grid {
    display: grid;
    gap: 26px;
}
.footer-brand { color: var(--white); }
.site-footer h3 { margin: 0 0 12px; color: var(--gold); }
.site-footer a { display: block; margin: 8px 0; }
.social-links { display: flex; gap: 10px; }
.social-links a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    background: rgba(255,255,255,.1);
    text-transform: uppercase;
    font-weight: 900;
}
.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.14);
    color: #aebbd0;
}
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 82px;
    z-index: 25;
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-weight: 900;
    box-shadow: var(--shadow);
}
.mobile-call-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 24;
    display: block;
    padding: 14px;
    text-align: center;
    background: var(--maroon);
    color: var(--white);
    font-weight: 900;
}

.admin-layout { background: var(--soft); min-height: 100vh; }
.admin-shell { padding: 28px clamp(16px, 4vw, 50px); }
.admin-topbar { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 22px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 8px; overflow: hidden; }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { background: var(--navy); color: var(--white); }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-form-grid { display: grid; gap: 12px; max-width: 760px; }

@media (min-width: 760px) {
    .hero { grid-template-columns: 1.15fr .85fr; align-items: center; }
    .trust-strip { grid-template-columns: repeat(4, 1fr); }
    .three { grid-template-columns: repeat(3, 1fr); }
    .four { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr 1fr; }
    .route-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: .85fr 1.15fr; }
    .footer-grid { grid-template-columns: 1.4fr .8fr .9fr .6fr; }
    .mobile-call-sticky { display: none; }
    .whatsapp-float { bottom: 24px; }
}

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

@media (max-width: 860px) {
    .menu-toggle { display: block; }
    .main-nav {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px 18px;
        background: var(--white);
        border-bottom: 1px solid var(--line);
    }
    .main-nav.open { display: flex; }
    .header-call { display: none; }
    .service-list article { grid-template-columns: 1fr; }
    .stats-panel { grid-template-columns: 1fr; }
    .admin-table { display: block; overflow-x: auto; }
}
