:root {
    --white: #ffffff;
    --ink: #17202e;
    --muted: #627083;
    --line: #e4e9f1;
    --soft: #f5f7fb;
    --charcoal: #111827;
    --green: #138a63;
    --yellow: #ffc928;
    --red: #b8202d;
    --shadow: 0 18px 45px rgba(17, 24, 39, .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-size: 1.14rem;
    font-weight: 900;
    color: var(--charcoal);
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    color: var(--charcoal);
    background: var(--yellow);
    box-shadow: inset 0 -4px 0 rgba(19, 138, 99, .24);
}
.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}
.main-nav a {
    padding: 9px 12px;
    border-radius: 6px;
    color: var(--charcoal);
    font-weight: 800;
}
.main-nav a:hover,
.main-nav a.active {
    background: #fff7d7;
    color: var(--green);
}
.header-call {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 6px;
    background: var(--green);
    color: var(--white);
    font-weight: 900;
}
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 6px;
    background: var(--charcoal);
    padding: 10px;
}
.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
}

.hero {
    min-height: calc(100vh - 72px);
    display: grid;
    gap: 30px;
    align-items: center;
    padding: 54px clamp(16px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .94), rgba(17, 24, 39, .74), rgba(19, 138, 99, .56)),
        url("../images/hero-taxi.jpg") center/cover no-repeat;
}
.hero-content { max-width: 760px; }
.eyebrow {
    margin: 0 0 8px;
    color: var(--yellow);
    font-size: .82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hero h1,
.page-hero h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(2.4rem, 7vw, 5.1rem);
    line-height: 1.02;
    letter-spacing: 0;
}
.hero p {
    max-width: 660px;
    font-size: 1.08rem;
    color: #edf3fb;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 900;
}
.btn-primary { background: var(--yellow); color: var(--charcoal); }
.btn-light { background: var(--white); color: var(--charcoal); }
.btn-outline { border-color: var(--green); color: var(--green); background: var(--white); }
.btn-outline-white { border-color: rgba(255,255,255,.7); color: var(--white); background: transparent; }
.btn-block { width: 100%; }

.booking-card,
.contact-form,
.contact-panel {
    width: 100%;
    padding: 22px;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.booking-card { max-width: 470px; }
.booking-card h2,
.contact-form h2,
.contact-panel h2 {
    margin: 0 0 14px;
    color: var(--charcoal);
}
label {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--charcoal);
}
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: 112px; resize: vertical; }
.form-alert,
.form-success {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 6px;
    font-weight: 800;
}
.form-alert { background: #fff1f1; color: var(--red); }
.form-success { background: #eaf8f2; color: var(--green); }
.form-row { display: grid; gap: 12px; }

.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(--charcoal);
    color: var(--white);
    font-weight: 900;
}
.section { padding: 70px clamp(16px, 5vw, 72px); }
.section-tint { background: var(--soft); }
.section-heading {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}
.section-heading h2,
.split h2 {
    margin: 0;
    color: var(--charcoal);
    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,
.route-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(17, 24, 39, .07);
}
.feature-card { padding: 24px; }
.feature-icon {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--charcoal);
    font-weight: 900;
}
.feature-card h3,
.car-card h3,
.car-card h2 { margin: 16px 0 8px; color: var(--charcoal); }
.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(--green); }
.split {
    display: grid;
    gap: 30px;
    align-items: center;
}
.rounded-image {
    width: 100%;
    min-height: 340px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.benefit-list { display: grid; gap: 12px; margin-top: 22px; }
.benefit-list div {
    padding: 18px;
    border-left: 4px solid var(--yellow);
    background: var(--white);
    border-radius: 6px;
}
.benefit-list strong,
.benefit-list span { display: block; }
.route-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
.route-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px;
}
.route-card strong { color: var(--green); }
.page-hero {
    padding: 80px clamp(16px, 5vw, 72px);
    color: var(--white);
    background:
        linear-gradient(90deg, rgba(17, 24, 39, .96), rgba(19, 138, 99, .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: 1fr;
    gap: 1px;
    margin-top: 24px;
    overflow: hidden;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 8px;
}
.stats-panel div { padding: 22px; background: var(--white); }
.stats-panel strong { display: block; color: var(--green); 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;
    background: var(--white);
}
.service-number {
    color: var(--green);
    font-weight: 900;
    font-size: 1.5rem;
}
.service-list h2 { margin: 0; color: var(--charcoal); }
.service-list a { color: var(--green); font-weight: 900; }
.contact-grid {
    display: grid;
    gap: 24px;
    align-items: start;
}
.contact-form { max-width: none; }
.phone-link { color: var(--green); font-weight: 900; }
iframe {
    width: 100%;
    min-height: 320px;
    margin-top: 18px;
    border: 0;
    border-radius: 8px;
}
.tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 18px;
    padding: 6px;
    background: var(--soft);
    border-radius: 8px;
}
.tab-button {
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: transparent;
    color: var(--charcoal);
    cursor: pointer;
    font-weight: 900;
}
.tab-button.active {
    background: var(--green);
    color: var(--white);
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.site-footer {
    padding: 48px clamp(16px, 5vw, 72px) 24px;
    background: var(--charcoal);
    color: #dfe8f4;
}
.footer-grid { display: grid; gap: 26px; }
.footer-brand { color: var(--white); }
.site-footer h3 { margin: 0 0 12px; color: var(--yellow); }
.site-footer a,
.site-footer span { display: block; margin: 8px 0; }
.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(--green);
    color: var(--white);
    font-weight: 900;
}

@media (min-width: 760px) {
    .hero { grid-template-columns: 1.15fr .85fr; }
    .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 .8fr; }
    .form-row { grid-template-columns: 1fr 1fr; }
    .stats-panel { grid-template-columns: repeat(3, 1fr); }
    .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; }
    .tabs { grid-template-columns: 1fr; }
}
