:root {
    --blue-950: #123866;
    --blue-800: #0d5a9e;
    --blue-600: #1976bd;
    --blue-100: #e8f2fb;
    --ink: #142033;
    --muted: #5d6b7d;
    --line: #dbe5ef;
    --surface: #ffffff;
    --soft: #f5f8fb;
    --accent: #2ca36b;
    --shadow: 0 18px 45px rgba(18, 56, 102, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand img {
    width: 280px;
    height: 82px;
    max-height: 82px;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.94rem;
    font-weight: 700;
}

.site-nav a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 14px;
    color: var(--muted);
}

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

.site-nav .nav-cta {
    color: #fff;
    background: var(--blue-800);
    margin-left: 8px;
}

.site-nav .nav-cta:hover {
    color: #fff;
    background: var(--blue-950);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--blue-950);
}

.hero {
    position: relative;
    min-height: 690px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-950);
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 56, 102, 0.92) 0%, rgba(18, 56, 102, 0.72) 45%, rgba(18, 56, 102, 0.18) 100%);
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 92px 0 120px;
}

.hero-content h1,
.page-hero h1 {
    max-width: 780px;
    margin: 14px 0 20px;
    font-size: clamp(2.1rem, 4.45vw, 3.75rem);
    line-height: 1.06;
    letter-spacing: 0;
}

.hero-content p,
.page-hero p {
    max-width: 620px;
    margin: 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.86);
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: currentColor;
}

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

.btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 0 20px;
    font-weight: 800;
    border: 1px solid transparent;
}

.btn.primary {
    color: #fff;
    background: var(--accent);
}

.btn.primary:hover {
    background: #218657;
}

.btn.secondary {
    color: var(--blue-950);
    background: #fff;
    border-color: var(--line);
}

.btn.secondary:hover {
    background: var(--blue-100);
}

.btn.full {
    width: 100%;
}

.section {
    padding: 88px 0;
}

.section-kicker {
    color: var(--blue-800);
}

.split,
.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 70px;
    align-items: start;
}

h2 {
    margin: 12px 0 0;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.06;
    letter-spacing: 0;
}

h3 {
    margin: 0 0 12px;
    font-size: 1.18rem;
    line-height: 1.25;
}

p {
    color: var(--muted);
}

.intro {
    background: #fff;
}

.intro-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-top: 26px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.services,
.values,
.contact-section,
.city-benefits,
.city-route {
    background: var(--soft);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.card,
.contact-panel,
.cta-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.card {
    padding: 28px;
}

.card p {
    margin: 0;
}

.fleet-band {
    background: #fff;
}

.fleet-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 52px;
    align-items: center;
}

.fleet-grid img,
.page-hero-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.check-list {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 30px;
    color: var(--ink);
    font-weight: 700;
}

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.42em;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--accent);
}

.cta-section {
    padding-top: 0;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 34px;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.cta-box p {
    max-width: 680px;
    margin-bottom: 0;
}

.page-hero {
    background:
        linear-gradient(90deg, rgba(18, 56, 102, 0.9) 0%, rgba(18, 56, 102, 0.78) 48%, rgba(18, 56, 102, 0.58) 100%),
        url("/assets/img/bg.png") center / cover no-repeat;
    color: #fff;
    padding: 86px 0;
}

.page-hero.compact {
    padding: 82px 0;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
    gap: 54px;
    align-items: center;
}

.text-stack p:first-child {
    margin-top: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 22px;
}

.form-section {
    background: #fff;
}

.contact-form-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    gap: 38px;
    align-items: start;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: grid;
    gap: 18px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--soft);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 3px solid rgba(13, 90, 158, 0.16);
    border-color: var(--blue-800);
    background: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.field-hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-alert {
    display: grid;
    gap: 4px;
    border-radius: 8px;
    padding: 14px 16px;
    font-weight: 700;
}

.form-alert.success {
    color: #145a38;
    background: #e7f7ee;
    border: 1px solid #bce8cf;
}

.form-alert.error {
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f1aeb5;
}

.contact-panel {
    padding: 34px;
}

.contact-panel h2 {
    font-size: 1.65rem;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.contact-link {
    display: grid;
    gap: 5px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.contact-link span {
    color: var(--muted);
    font-size: 0.88rem;
}

.contact-link strong {
    color: var(--blue-950);
    font-size: 1.04rem;
}

address {
    color: var(--muted);
    font-style: normal;
    margin: 0 0 24px;
}

.map-embed {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16 / 10;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
}

.map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.site-footer {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(79, 150, 202, 0.36) 0, rgba(79, 150, 202, 0) 34%),
        radial-gradient(circle at 88% 12%, rgba(13, 90, 158, 0.42) 0, rgba(13, 90, 158, 0) 32%),
        linear-gradient(135deg, #071a31 0%, #123866 48%, #0d5a9e 100%);
    color: #fff;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px),
        linear-gradient(90deg, rgba(7, 26, 49, 0.12), rgba(7, 26, 49, 0));
    pointer-events: none;
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 38px;
    padding: 56px 0;
}

.city-hero .btn.secondary {
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.42);
}

.city-hero .btn.secondary:hover {
    color: var(--blue-950);
    background: #fff;
}

.city-cta {
    background: #fff;
}

.footer-logo {
    width: 260px;
    height: 92px;
    object-fit: contain;
    object-position: left center;
}

.site-footer p,
.site-footer address {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer strong {
    display: block;
    margin-bottom: 12px;
}

.footer-address-title {
    display: block;
    margin: 18px 0 6px;
    color: #fff;
    font-weight: 800;
}

.site-footer a {
    display: block;
    width: fit-content;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 8px;
}

.site-footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.9rem;
}

@media (max-width: 860px) {
    .container {
        width: min(100% - 28px, 1120px);
    }

    .header-inner {
        min-height: 86px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 14px;
        right: 14px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

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

    .site-nav a,
    .site-nav .nav-cta {
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }

    .hero {
        min-height: 620px;
    }

    .hero-media::after {
        background: linear-gradient(180deg, rgba(18, 56, 102, 0.88) 0%, rgba(18, 56, 102, 0.82) 56%, rgba(18, 56, 102, 0.62) 100%);
    }

    .hero-content {
        padding: 72px 0 92px;
    }

    .hero-content h1,
    .page-hero h1 {
        font-size: clamp(1.95rem, 9vw, 3rem);
    }

    .section {
        padding: 64px 0;
    }

    .split,
    .content-grid,
    .fleet-grid,
    .page-hero-grid,
    .contact-form-panel,
    .contact-grid,
    .footer-grid,
    .cta-box {
        grid-template-columns: 1fr;
    }

    .cards-grid,
    .form-grid,
    .contact-actions {
        grid-template-columns: 1fr;
    }

    .cta-box {
        display: grid;
    }

    .cta-box .btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .brand img {
        width: 220px;
        height: 78px;
        object-position: left center;
    }

    .hero-actions {
        display: grid;
    }

    .btn {
        width: 100%;
    }

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