:root {
    --blue: #0b4fb3;
    --blue-dark: #07377d;
    --red: #e3232f;
    --white: #ffffff;
    --ink: #152238;
    --muted: #627084;
    --soft: #f4f8ff;
    --line: #dfe7f2;
    --shadow: 0 18px 45px rgba(8, 42, 94, 0.12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 76px;
    padding: 14px clamp(18px, 4vw, 56px);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue), var(--red));
}

.brand strong {
    font-size: 18px;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.site-nav a {
    padding: 10px 14px;
    border-radius: 6px;
    color: var(--muted);
    font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
    color: var(--blue);
    background: var(--soft);
}

.header-call {
    padding: 11px 16px;
    border-radius: 6px;
    color: var(--white);
    background: var(--red);
    font-weight: 800;
}

.menu-toggle {
    display: none;
    margin-left: auto;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--blue);
    background: var(--white);
    font-weight: 800;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 420px);
    gap: 32px;
    align-items: center;
    min-height: calc(100vh - 76px);
    padding: clamp(44px, 7vw, 90px) clamp(18px, 5vw, 76px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(4, 32, 78, 0.92), rgba(11, 79, 179, 0.62)),
        url("../images/hero-taxi.jpg") center / cover;
}

.hero h1,
.page-hero h1 {
    max-width: 780px;
    margin: 8px 0 16px;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
}

.hero p {
    max-width: 650px;
    font-size: 18px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0;
}

.eyebrow.light {
    color: #ffccd0;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 18px;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
}

.btn-primary {
    color: var(--white);
    background: var(--red);
}

.btn-light {
    color: var(--blue);
    background: var(--white);
}

.btn-outline {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: transparent;
}

.btn-block {
    width: 100%;
}

.booking-card,
.contact-form,
.contact-panel,
.service-card,
.car-card,
.route-card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.booking-card {
    padding: 24px;
    color: var(--ink);
}

.booking-card h2,
.contact-form h2,
.contact-panel h2 {
    margin: 0 0 18px;
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
    color: var(--ink);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

textarea {
    min-height: 112px;
    resize: vertical;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    color: var(--white);
    background: var(--blue-dark);
}

.trust-strip span {
    padding: 18px;
    text-align: center;
    font-weight: 800;
    background: var(--blue);
}

.section {
    padding: clamp(50px, 7vw, 86px) clamp(18px, 5vw, 76px);
}

.section-soft {
    background: var(--soft);
}

.section-blue {
    color: var(--white);
    background: var(--blue-dark);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-heading.compact {
    margin-bottom: 24px;
}

.section-heading h2,
.split h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.grid {
    display: grid;
    gap: 20px;
}

.grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.grid.four {
    grid-template-columns: repeat(4, 1fr);
}

.service-card,
.car-card {
    padding: 22px;
}

.service-card h3,
.car-card h3 {
    margin: 0 0 10px;
    color: var(--blue);
}

.service-card p,
.car-card p {
    margin: 0;
    color: var(--muted);
}

.service-card a {
    display: inline-block;
    margin-top: 16px;
    color: var(--red);
    font-weight: 800;
}

.car-card img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
}

.car-card.dark {
    color: var(--ink);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
}

.split > img {
    width: 100%;
    min-height: 340px;
    border-radius: 8px;
    object-fit: cover;
}

.mini-list,
.stats {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.mini-list span,
.stats span {
    padding: 14px 16px;
    border-left: 4px solid var(--red);
    border-radius: 6px;
    color: var(--ink);
    background: var(--white);
    font-weight: 800;
}

.stats strong {
    display: block;
    color: var(--red);
    font-size: 24px;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.route-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px;
}

.route-card strong {
    color: var(--red);
    white-space: nowrap;
}

.page-hero {
    padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 76px);
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.page-hero p {
    max-width: 760px;
    font-size: 18px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(280px, 380px) 1fr;
    gap: 24px;
}

.contact-panel,
.contact-form {
    padding: 24px;
}

.contact-panel a {
    color: var(--blue);
    font-weight: 800;
}

.contact-panel iframe {
    width: 100%;
    height: 280px;
    margin-top: 12px;
    border: 0;
    border-radius: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-success,
.form-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 6px;
    font-weight: 800;
}

.form-success {
    color: #0f5132;
    background: #d1e7dd;
}

.form-alert {
    color: #842029;
    background: #f8d7da;
}

.site-footer {
    padding: 46px clamp(18px, 5vw, 76px) 22px;
    color: var(--white);
    background: #061f47;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr;
    gap: 28px;
}

.footer-grid h2,
.footer-grid h3 {
    margin-top: 0;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
    color: #dbe9ff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    color: #b9c8dd;
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 30;
    padding: 12px 16px;
    border-radius: 999px;
    color: var(--white);
    background: #1fae58;
    box-shadow: var(--shadow);
    font-weight: 900;
}

@media (max-width: 1040px) {
    .grid.four,
    .route-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 820px) {
    .site-header {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        order: 4;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
    }

    .site-nav.open {
        display: flex;
    }

    .header-call {
        display: none;
    }

    .hero,
    .split,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

    .grid.three,
    .grid.four,
    .route-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom,
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        display: grid;
    }
}

@media (max-width: 480px) {
    .brand strong {
        font-size: 16px;
    }

    .hero-actions {
        display: grid;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }
}
