:root {
    --primary: #f5b400;
    --dark: #111827;
    --muted: #6b7280;
    --light: #fff8e1;
    --border: #e5e7eb;
    --white: #fff;
    --green: #20b15a;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--dark);
    background: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
    color: inherit;
}
.container {
    width: min(1180px, 92%);
    margin: auto;
}
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.nav-wrap {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 24px;
}
.brand-icon {
    background: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: grid;
    place-items: center;
}
.main-nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.main-nav a {
    font-weight: 600;
    color: #374151;
}
.main-nav a:hover {
    color: #000;
}
.nav-call,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    transition: 0.2s;
}
.nav-call,
.btn-primary {
    background: var(--primary);
    color: #111827;
}
.btn-primary:hover,
.nav-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(245, 180, 0, 0.3);
}
.btn-light {
    background: #fff;
    color: #111827;
}
.btn-dark {
    background: #111827;
    color: #fff;
}
.btn-whatsapp {
    background: var(--green);
    color: #fff;
}
.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 26px;
}
.hero {
    background: radial-gradient(circle at top right, #ffeeb0, transparent 35%),
        linear-gradient(135deg, #111827, #2a2104);
    color: #fff;
    padding: 96px 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    color: #8a6500;
    background: #fff4c7;
    border-radius: 999px;
    padding: 7px 13px;
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 14px;
}
.hero .eyebrow,
.route-section .eyebrow {
    background: rgba(255, 255, 255, 0.14);
    color: #ffd85a;
}
.hero h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: 1.02;
    margin: 0 0 22px;
}
.hero p {
    font-size: 19px;
    color: #e5e7eb;
    max-width: 690px;
}

.hero-card p {
    color: #5f6061;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin: 30px 0;
}
.trust-row {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: #f9fafb;
    font-weight: 700;
}
.hero-card {
    background: #fff;
    color: #111827;
    border-radius: 30px;
    padding: 34px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}
.taxi-visual {
    height: 220px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    margin: -34px -34px 22px -34px;
}
.taxi-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.hero-card a {
    display: block;
    font-size: 18px;
    font-weight: 800;
    margin-top: 10px;
    color: #111827;
}
.section {
    padding: 28px 0;
}
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 45px;
}
.section-head h2,
.fleet-grid h2,
.booking-grid h2,
.contact-box h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.1;
    margin: 0 0 14px;
}
.section-head p,
.fleet-grid p,
.contact-box p {
    color: var(--muted);
    font-size: 18px;
}
.card-grid {
    display: grid;
    gap: 22px;
}
.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}
.service-card,
.highlight-box,
.booking-form {
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
}
.service-card span {
    font-size: 36px;
}
.service-card h3 {
    margin: 14px 0 8px;
}
.service-card p {
    color: var(--muted);
    margin: 0;
}
.route-section {
    background: #111827;
    color: #fff;
}
.route-section .light p {
    color: #d1d5db;
}
.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.route-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.route-card:hover {
    background: var(--primary);
    color: #111827;
}
.fleet-grid,
.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}
.check-list {
    padding: 0;
    list-style: none;
}
.check-list li {
    margin: 12px 0;
    padding-left: 28px;
    position: relative;
    font-weight: 700;
}
.check-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
}
.highlight-box {
    background: var(--light);
}
.steps {
    display: grid;
    gap: 16px;
}
.steps div {
    display: flex;
    gap: 16px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 18px;
}
.steps strong {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: grid;
    place-items: center;
}
.booking-section {
    background: #f9fafb;
}
.booking-form h3 {
    margin-top: 0;
}
.full {
    width: 100%;
}
.small-note {
    font-size: 14px;
    color: var(--muted);
}
.contact-section {
    padding-top: 40px;
}
.contact-box {
    background: linear-gradient(135deg, #fff7cf, #fff);
    border: 1px solid #fde68a;
    border-radius: 32px;
    padding: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}
.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.site-footer {
    background: #0b1220;
    color: #e5e7eb;
    padding-top: 54px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 28px;
}
.site-footer a {
    color: #fff;
}
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    margin-top: 35px;
    color: #9ca3af;
}
.page-content {
    padding: 70px 0;
}
@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .main-nav {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        padding: 20px;
    }
    .main-nav.active {
        display: block;
    }
    .main-nav ul {
        flex-direction: column;
    }
    .nav-call {
        display: none;
    }
    .hero-grid,
    .fleet-grid,
    .booking-grid {
        grid-template-columns: 1fr;
    }
    .card-grid.three,
    .route-grid {
        grid-template-columns: 1fr 1fr;
    }
    .contact-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 560px) {
    .hero {
        padding: 70px 0;
    }
    .card-grid.three,
    .route-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .contact-actions .btn {
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
    }
}
.vehicle-section {
    background: #fff;
}
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.vehicle-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(17, 24, 39, 0.08);
    transition: 0.22s;
}
.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 55px rgba(17, 24, 39, 0.14);
}
.vehicle-image-trigger {
    appearance: none;
    border: 0;
    background: none;
    padding: 0;
    width: 100%;
    display: block;
    cursor: zoom-in;
    text-align: left;
    position: relative;
}
.vehicle-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}
.vehicle-image-trigger img {
    display: block;
}
.vehicle-image-hint {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(17, 24, 39, 0.82);
    color: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}
.vehicle-body {
    padding: 24px;
}
.vehicle-tag {
    display: inline-flex;
    background: #fff4c7;
    color: #8a6500;
    border-radius: 999px;
    padding: 6px 11px;
    font-size: 12px;
    font-weight: 800;
}
.vehicle-body h3 {
    font-size: 22px;
    margin: 14px 0 10px;
}
.vehicle-body ul {
    list-style: none;
    margin: 0 0 18px;
    padding: 0;
}
.vehicle-body li {
    color: var(--muted);
    font-size: 15px;
    margin: 8px 0;
    padding-left: 22px;
    position: relative;
}
.vehicle-body li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 900;
}
.vehicle-link {
    font-weight: 900;
    color: #111827;
    border-bottom: 2px solid var(--primary);
}
.vehicle-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 999;
}
.vehicle-modal.is-open {
    display: flex;
}
.vehicle-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.78);
}
.vehicle-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: 90vh;
    overflow: auto;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    padding: 18px;
}
.vehicle-modal-image {
    width: 100%;
    max-height: 68vh;
    object-fit: contain;
    display: block;
    border-radius: 20px;
    background: #f9fafb;
}
.vehicle-modal-caption {
    padding: 16px 6px 6px;
}
.vehicle-modal-caption h3 {
    margin: 10px 0 0;
    font-size: 24px;
}
.vehicle-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #111827;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}
body.vehicle-modal-open {
    overflow: hidden;
}
@media (max-width: 1000px) {
    .vehicle-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 560px) {
    .vehicle-grid {
        grid-template-columns: 1fr;
    }
    .vehicle-card img {
        height: 210px;
    }
    .vehicle-image-hint {
        font-size: 11px;
        padding: 5px 8px;
    }
    .vehicle-modal-dialog {
        padding: 14px;
    }
    .vehicle-modal-caption h3 {
        font-size: 20px;
    }
}
