:root {
    --bg: #0b1220;
    --surface: #111a2d;
    --surface-soft: #f4f7fc;
    --text: #e6edf8;
    --text-dark: #0d1728;
    --muted: #aab8d0;
    --gold: #d7b46a;
    --line: #24314a;
    --white: #ffffff;
    --radius: 14px;
    --shadow: 0 16px 40px rgba(5, 10, 20, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(11, 18, 32, 0.92);
    border-bottom: 1px solid rgba(215, 180, 106, 0.18);
    backdrop-filter: blur(8px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    gap: 16px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-logo {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
    background: #ffffff;
    border: 1px solid rgba(215, 180, 106, 0.35);
}

.brand-text {
    color: var(--white);
    font-weight: 700;
    letter-spacing: 0.2px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.nav-links a {
    color: #d9e2f3;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
    color: #fff2cf;
}

.menu-toggle {
    display: none;
    border: 1px solid #3a4763;
    border-radius: 10px;
    background: transparent;
    width: 42px;
    height: 42px;
    padding: 9px;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    background: var(--white);
}

.hero {
    background:
        linear-gradient(180deg, rgba(11, 18, 32, 0.88) 0%, rgba(15, 26, 48, 0.9) 100%),
        radial-gradient(circle at 15% 20%, rgba(32, 51, 91, 0.55) 0%, transparent 50%),
        url("images/truck.webp") center / cover no-repeat;
    color: var(--text);
    padding: 56px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 34px;
    align-items: center;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 10px;
}

h1,
h2,
h3 {
    line-height: 1.2;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    max-width: 16ch;
}

h2 {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    color: #0e1930;
}

.hero h2,
.hero p,
.hero h1 {
    color: var(--text);
}

.hero h1 {
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    max-width: 20ch;
}

.hero-card h2 {
    font-size: clamp(1.25rem, 2.1vw, 1.55rem);
    margin-bottom: 10px;
}

.hero-copy {
    max-width: 58ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin: 24px 0 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    text-decoration: none;
    border: 0;
    cursor: pointer;
    min-height: 46px;
    padding: 0 20px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(145deg, #efcb80, #c99b45);
    color: #161204;
}

.btn-secondary {
    border: 1px solid #3d4b67;
    color: #eaf0fb;
    background: transparent;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
}

.whatsapp-gif {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.quick-points {
    margin: 0;
    padding-left: 18px;
    color: #ccdaef;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(215, 180, 106, 0.26);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.hero-image {
    width: 100%;
    height: 170px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.95);
}

.metrics {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.metrics article {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 9px;
    text-align: center;
}

.metrics strong {
    display: block;
    font-size: 1.15rem;
}

.metrics span {
    font-size: 0.85rem;
    color: #c2d2eb;
}

.section {
    padding: 76px 0;
}

.muted {
    background: var(--surface-soft);
}

.card-grid {
    display: grid;
    gap: 18px;
}

.card-grid.three {
    grid-template-columns: repeat(3, 1fr);
}

.card {
    background: #fff;
    border: 1px solid #e4ebf7;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 10px 22px rgba(22, 37, 64, 0.06);
}

.service-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
    border: 1px solid #dbe6f7;
}

.pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-grid span {
    border: 1px solid #d5dfef;
    background: #fff;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 600;
    color: #213352;
}

.about-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: 1.2fr 0.8fr;
}

.about-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid #dbe5f4;
    margin: 8px 0 14px;
}

.office-card {
    background: #0f1a2f;
    color: #dce8fb;
    border-radius: var(--radius);
    border: 1px solid #24324f;
    padding: 24px;
}

.office-card h3 {
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #dbe6f7;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 10px 22px rgba(22, 37, 64, 0.06);
}

.testimonial-rating {
    color: #c99b45;
    letter-spacing: 0.1em;
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.testimonial-card p {
    margin-top: 0;
    color: #1b2d4a;
}

.testimonial-card h3 {
    margin: 14px 0 4px;
    font-size: 1rem;
    color: #102240;
}

.testimonial-card span {
    color: #4c6184;
    font-weight: 500;
    font-size: 0.92rem;
}

.quote {
    background: linear-gradient(180deg, #f8fbff, #f0f5fd);
}

.section-copy {
    max-width: 60ch;
    margin-top: -6px;
    margin-bottom: 22px;
}

.form-status {
    display: none;
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-weight: 600;
}

.form-status.show {
    display: block;
}

.form-status.success {
    background: #eaf8ef;
    border: 1px solid #9fd6ad;
    color: #155b2a;
}

.form-status.error {
    background: #fff1f2;
    border: 1px solid #efb2b8;
    color: #821b27;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.quote-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    background: #fff;
    border: 1px solid #dce6f5;
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 10px 26px rgba(20, 31, 53, 0.08);
}

.quote-form label {
    display: grid;
    gap: 7px;
    font-weight: 600;
    color: #14233d;
    font-size: 0.95rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
    width: 100%;
    border: 1px solid #ccd8eb;
    border-radius: 10px;
    min-height: 44px;
    padding: 10px 12px;
    font: inherit;
}

.quote-form textarea {
    resize: vertical;
    min-height: 130px;
}

.quote-form .btn {
    width: 100%;
}

.quote-whatsapp {
    text-align: center;
}

.full-width {
    grid-column: 1 / -1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.contact-card {
    background: #f6f9ff;
    border: 1px solid #dde7f6;
    border-radius: var(--radius);
    padding: 24px;
}

.contact-card a {
    color: #163867;
    font-weight: 600;
}

.site-footer {
    background: #0b1220;
    color: #b9c9e6;
    border-top: 1px solid #263657;
}

.footer-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.footer-wrap a {
    color: #f1d89d;
    text-decoration: none;
}

.footer-links {
    display: inline-flex;
    align-items: center;
    gap: 16px;
}

.policy-content {
    max-width: 860px;
}

.policy-content h1 {
    color: #0e1930;
    max-width: none;
}

.policy-content h2 {
    margin-top: 26px;
    font-size: clamp(1.2rem, 2.2vw, 1.55rem);
}

.policy-content ul {
    padding-left: 20px;
}

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 60;
    display: inline-grid;
    place-items: center;
    text-decoration: none;
    background: #25d366;
    color: #ffffff;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    box-shadow: 0 12px 20px rgba(12, 19, 33, 0.25);
}

.whatsapp-float .whatsapp-gif {
    width: 34px;
    height: 34px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    filter: brightness(1.05);
}

@media (max-width: 980px) {

    .hero-grid,
    .about-grid,
    .contact-grid,
    .card-grid.three,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .quote-form {
        grid-template-columns: 1fr;
    }

    .menu-toggle {
        display: inline-block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 78px;
        right: 4vw;
        left: 4vw;
        background: #0d1628;
        border: 1px solid #2e3e61;
        border-radius: 12px;
        padding: 12px;
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links.open {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 46px 0 30px;
    }

    .section {
        padding: 62px 0;
    }

    .footer-wrap {
        flex-direction: column;
        justify-content: center;
        padding: 12px 0;
        text-align: center;
    }

    .footer-links {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .whatsapp-float {
        right: 16px;
        left: auto;
        bottom: 16px;
    }
}