:root {
    --ink: #0d0d0d;
    --panel: #151515;
    --panel-soft: #1f1b14;
    --gold: #f5b72b;
    --gold-light: #ffe28d;
    --gold-deep: #a66a05;
    --text: #f9f3e4;
    --muted: #b9ad98;
    --line: rgba(255, 218, 128, 0.2);
    --white: #ffffff;
    --green: #25d366;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -80px;
    z-index: 100;
    padding: 10px 14px;
    color: var(--ink);
    background: var(--gold);
}

.skip-link:focus {
    top: 16px;
}

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

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
    background: rgba(13, 13, 13, 0.94);
    border-color: var(--line);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand img {
    width: 158px;
    filter: drop-shadow(0 8px 18px rgba(245, 183, 43, 0.16));
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
    margin-left: auto;
    color: rgba(249, 243, 228, 0.82);
    font-size: 0.94rem;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-action,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.header-action,
.btn-primary {
    color: #160f04;
    background: linear-gradient(135deg, var(--gold-light), var(--gold) 45%, var(--gold-deep));
    box-shadow: 0 14px 34px rgba(245, 183, 43, 0.22);
}

.btn-ghost {
    color: var(--text);
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
}

.header-action:hover,
.btn:hover {
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--gold);
}

.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    align-items: center;
    overflow: hidden;
    padding: 130px 0 70px;
    background:
        radial-gradient(circle at 78% 26%, rgba(245, 183, 43, 0.22), transparent 28%),
        linear-gradient(120deg, rgba(8, 8, 8, 0.98), rgba(22, 18, 10, 0.94));
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 150px;
    background: linear-gradient(0deg, var(--ink), transparent);
}

.hero-visual {
    position: absolute;
    inset: 0;
    opacity: 0.85;
}

.road {
    position: absolute;
    right: -14vw;
    height: 2px;
    width: 78vw;
    background: linear-gradient(90deg, transparent, rgba(255, 224, 136, 0.6), transparent);
    transform: rotate(-15deg);
}

.road-one {
    top: 28%;
}

.road-two {
    top: 68%;
}

.route {
    position: absolute;
    border: 1px solid rgba(245, 183, 43, 0.22);
    border-left: 0;
    border-bottom: 0;
    transform: rotate(-14deg);
}

.route-a {
    right: 6vw;
    top: 18vh;
    width: 360px;
    height: 220px;
}

.route-b {
    right: 18vw;
    bottom: 8vh;
    width: 470px;
    height: 260px;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
    gap: 58px;
    align-items: center;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--gold);
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(3rem, 7vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: 0;
}

.hero-copy p {
    max-width: 640px;
    margin-bottom: 34px;
    color: var(--muted);
    font-size: 1.17rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-panel {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.hero-logo {
    width: min(100%, 360px);
    margin: 0 auto 30px;
}

.hero-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--line);
}

.hero-stat-row div {
    padding: 18px;
    background: rgba(13, 13, 13, 0.66);
}

.hero-stat-row strong,
.dispatch-box strong {
    display: block;
    color: var(--gold-light);
    font-size: 1.55rem;
    line-height: 1.1;
}

.hero-stat-row span,
.dispatch-box span {
    color: var(--muted);
    font-size: 0.9rem;
}

.dispatch-box {
    margin-top: 18px;
    padding: 18px;
    border-left: 3px solid var(--gold);
    background: rgba(0, 0, 0, 0.26);
}

.section {
    padding: 96px 0;
}

.split,
.contact-grid,
.coverage-inner,
.quote-inner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 58px;
    align-items: start;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1;
    letter-spacing: 0;
}

.lead-block p,
.coverage p,
.quote-band p,
.contact-info li {
    color: var(--muted);
    font-size: 1.04rem;
}

.section-heading {
    max-width: 780px;
    margin-bottom: 36px;
}

.services {
    background: #111;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--line);
}

.service-card,
.process-step {
    min-height: 250px;
    padding: 30px;
    background: linear-gradient(180deg, #171717, #111);
}

.service-number {
    color: var(--gold);
    font-weight: 800;
}

.service-card h3,
.process-step h3 {
    margin: 26px 0 12px;
    font-size: 1.45rem;
    line-height: 1.12;
}

.service-card p,
.process-step p {
    color: var(--muted);
}

.coverage {
    padding: 92px 0;
    background:
        linear-gradient(rgba(13, 13, 13, 0.78), rgba(13, 13, 13, 0.88)),
        repeating-linear-gradient(90deg, rgba(245, 183, 43, 0.14) 0 1px, transparent 1px 90px),
        repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 90px);
}

.coverage-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.coverage-list span {
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 4px;
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.04);
    font-weight: 800;
}

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

.process-step {
    border: 1px solid var(--line);
    border-radius: 8px;
}

.process-step span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    color: #140d04;
    background: var(--gold);
    border-radius: 50%;
    font-weight: 900;
}

.quote-band {
    padding: 66px 0;
    border-block: 1px solid var(--line);
    background: linear-gradient(135deg, rgba(245, 183, 43, 0.13), rgba(255, 255, 255, 0.03));
}

.quote-inner {
    align-items: center;
}

.quote-inner .btn {
    justify-self: end;
}

.contact {
    background: #111;
}

.contact-info ul {
    padding: 0;
    margin: 28px 0 0;
    list-style: none;
}

.contact-info li + li {
    margin-top: 16px;
}

.contact-info strong {
    color: var(--text);
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
    padding: 14px 16px;
    color: var(--text);
    background: rgba(0, 0, 0, 0.28);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(245, 183, 43, 0.14);
}

.contact-form textarea {
    resize: vertical;
}

.site-footer {
    padding: 30px 0;
    background: #080808;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
}

.footer-inner img {
    width: 130px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 45;
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.whatsapp-float svg {
    width: 31px;
    height: 31px;
    fill: currentColor;
}

.thanks-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at 70% 30%, rgba(245, 183, 43, 0.22), transparent 30%),
        var(--ink);
}

.thanks-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
}

.thanks-card {
    width: min(680px, 100%);
    padding: 42px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
}

.thanks-card img {
    width: 230px;
    margin-bottom: 26px;
}

.thanks-card h1 {
    margin-top: 10px;
    font-size: clamp(2.4rem, 7vw, 4.8rem);
}

@media (max-width: 980px) {
    .header-action {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: 20px;
        right: 20px;
        top: 92px;
        display: grid;
        gap: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: rgba(13, 13, 13, 0.98);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .main-nav a {
        padding: 14px 10px;
    }

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

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

    .process-grid {
        grid-template-columns: 1fr;
    }

    .quote-inner .btn {
        justify-self: start;
    }
}

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

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

    .brand img {
        width: 132px;
    }

    .hero {
        min-height: auto;
        padding-top: 112px;
    }

    h1 {
        font-size: clamp(2.45rem, 12vw, 3.35rem);
        line-height: 1;
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero-copy p {
        font-size: 1rem;
    }

    .hero-panel,
    .contact-form,
    .thanks-card {
        padding: 22px;
    }

    .hero-stat-row,
    .service-grid,
    .coverage-list {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 0;
    }

    .service-card,
    .process-step {
        min-height: auto;
    }

    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }
}
