* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #172033;
    background: #f8fafc;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section {
    padding: 82px 0;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.nav-wrap {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.25);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #475569;
}

.site-nav a:hover {
    color: var(--secondary);
}

.nav-cta {
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff !important;
    background: var(--primary);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #e2e8f0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--primary);
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 98px;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.18), transparent 34%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.16), transparent 30%),
        linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 110px auto auto -80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    border: 34px solid rgba(37, 99, 235, 0.08);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 50px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--secondary);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 3px;
    border-radius: 99px;
    background: var(--accent);
}

h1,
h2,
h3 {
    color: var(--primary);
    line-height: 1.08;
    letter-spacing: -0.045em;
}

h1 {
    font-size: clamp(2.5rem, 7vw, 5.35rem);
    max-width: 790px;
}

h2 {
    font-size: clamp(2rem, 4.4vw, 3.35rem);
}

h3 {
    font-size: 1.25rem;
}

.hero-text {
    max-width: 620px;
    margin: 24px 0 28px;
    color: #475569;
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.24);
}

.btn-light {
    color: var(--primary);
    background: #fff;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 34px;
    max-width: 620px;
}

.hero-stats div {
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.hero-stats strong {
    display: block;
    color: var(--primary);
    font-size: 1.05rem;
}

.hero-stats span {
    color: #64748b;
    font-size: 0.9rem;
}

.hero-card {
    position: relative;
    min-height: 560px;
}

.route-map {
    position: relative;
    height: 480px;
    border-radius: 42px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.12) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.12) 1px, transparent 1px),
        linear-gradient(145deg, var(--primary), #1e3a8a);
    background-size: 34px 34px, 34px 34px, auto;
    box-shadow: 0 32px 70px rgba(15, 23, 42, 0.22);
}

.route-map::after {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -70px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.24);
}

.pin {
    position: absolute;
    z-index: 2;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.18);
}

.pin-one {
    left: 18%;
    top: 22%;
}

.pin-two {
    right: 22%;
    top: 42%;
    background: #22c55e;
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0.18);
}

.pin-three {
    left: 38%;
    bottom: 22%;
    background: #38bdf8;
    box-shadow: 0 0 0 10px rgba(56, 189, 248, 0.18);
}

.route-line {
    position: absolute;
    left: 21%;
    top: 27%;
    width: 54%;
    height: 46%;
    border-top: 4px dashed rgba(255,255,255,0.72);
    border-right: 4px dashed rgba(255,255,255,0.72);
    border-radius: 0 80px 0 0;
    transform: rotate(8deg);
}

.truck-card {
    position: absolute;
    left: 36px;
    bottom: 36px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    width: calc(100% - 72px);
    padding: 18px;
    border-radius: 24px;
    color: #fff;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(14px);
}

.truck-icon {
    width: 54px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--accent);
    color: transparent;
    position: relative;
}

.truck-icon::before {
    content: "";
    width: 34px;
    height: 18px;
    border-radius: 4px 8px 4px 4px;
    background: #fff;
}

.truck-card small {
    display: block;
    color: rgba(255,255,255,0.78);
}

.quote-card {
    position: absolute;
    right: -14px;
    top: 42px;
    width: 238px;
    padding: 22px;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
}

.quote-card p {
    color: var(--secondary);
    font-weight: 900;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.quote-card h3 {
    margin: 8px 0;
}

.quote-card span {
    color: #64748b;
    font-size: 0.92rem;
}

.trust-strip {
    padding: 20px 0;
    background: var(--primary);
    color: #fff;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
    text-align: center;
    font-weight: 800;
    color: rgba(255,255,255,0.84);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading p:last-child {
    margin-top: 14px;
    color: #64748b;
}

.service-grid,
.process-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card,
.process-card,
.testimonial-card {
    padding: 26px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -38px;
    top: -38px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.07);
}

.icon-badge {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    color: #fff;
    font-weight: 900;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.service-card p,
.process-card p,
.testimonial-card p {
    margin-top: 12px;
    color: #64748b;
}

.about-section {
    background: #fff;
}

.about-grid,
.fleet-grid,
.faq-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 52px;
}

.about-visual {
    min-height: 430px;
    display: grid;
    place-items: center;
    border-radius: 36px;
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, 0.15), transparent 34%),
        linear-gradient(145deg, #e0f2fe, #eff6ff);
}

.delivery-board {
    width: min(340px, 88%);
    padding: 18px;
    border-radius: 28px;
    background: var(--primary);
    box-shadow: 0 26px 55px rgba(15, 23, 42, 0.2);
}

.board-top {
    display: flex;
    gap: 7px;
    margin-bottom: 16px;
}

.board-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.38);
}

.delivery-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 17px;
    margin-top: 10px;
    border-radius: 18px;
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.delivery-row.active {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.delivery-row small {
    color: rgba(255,255,255,0.78);
}

.about-content p {
    color: #64748b;
    margin-top: 18px;
}

.check-list {
    margin-top: 24px;
    display: grid;
    gap: 12px;
}

.check-list p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    color: #334155;
    font-weight: 700;
}

.check-list span {
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #22c55e;
}

.process-section {
    background:
        linear-gradient(180deg, #f8fafc 0%, #eef4ff 100%);
}

.process-card span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border-radius: 50%;
    color: #fff;
    font-weight: 900;
    background: var(--primary);
}

.fleet-section {
    background: var(--primary);
    color: #fff;
}

.fleet-section h2,
.fleet-section h3 {
    color: #fff;
}

.fleet-content p {
    color: rgba(255,255,255,0.76);
    margin-top: 18px;
}

.coverage-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.coverage-list div {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
}

.coverage-list strong,
.coverage-list span {
    display: block;
}

.coverage-list span {
    color: rgba(255,255,255,0.68);
    margin-top: 4px;
}

.fleet-showcase {
    display: grid;
    gap: 16px;
}

.vehicle-card {
    position: relative;
    min-height: 140px;
    padding: 24px;
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.14);
}

.vehicle-card span {
    position: relative;
    z-index: 2;
    font-weight: 900;
    font-size: 1.2rem;
}

.vehicle-card::before {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: 170px;
    height: 56px;
    border-radius: 16px 34px 16px 16px;
    background: #fff;
}

.vehicle-card::after {
    content: "";
    position: absolute;
    right: 54px;
    bottom: 18px;
    width: 102px;
    height: 22px;
    background:
        radial-gradient(circle, var(--accent) 0 9px, transparent 10px),
        radial-gradient(circle, var(--accent) 0 9px, transparent 10px);
    background-size: 52px 22px;
    background-repeat: no-repeat;
    background-position: left center, right center;
}

.vehicle-card.bike::before {
    width: 120px;
    height: 18px;
    border-radius: 99px;
}

.vehicle-card.parcel::before {
    width: 112px;
    height: 88px;
    border-radius: 18px;
    background: var(--accent);
}

.testimonials-section {
    background: #fff;
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.testimonial-card p {
    font-size: 1.02rem;
}

.testimonial-card strong {
    display: block;
    margin-top: 20px;
    color: var(--primary);
}

.testimonial-card span {
    color: #64748b;
    font-size: 0.9rem;
}

.faq-section {
    background: #f8fafc;
}

.faq-grid {
    align-items: start;
}

.faq-intro p:last-child {
    margin-top: 16px;
    color: #64748b;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.faq-item button {
    width: 100%;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--primary);
    font-weight: 900;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.faq-item button::after {
    content: "+";
    color: var(--secondary);
    font-size: 1.3rem;
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 0 22px 20px;
    color: #64748b;
}

.faq-item.active .faq-answer {
    display: block;
}

.final-cta {
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, 0.18), transparent 30%),
        linear-gradient(135deg, #eff6ff, #fff7ed);
}

.final-card {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: center;
    padding: 42px;
    border-radius: 38px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.1);
}

.final-card p {
    margin-top: 16px;
    color: #64748b;
}

.contact-panel {
    display: grid;
    gap: 12px;
    padding: 24px;
    border-radius: 26px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.contact-panel a:not(.btn),
.contact-panel span {
    display: block;
    padding: 13px 0;
    color: #334155;
    font-weight: 800;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: #22c55e;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(34, 197, 94, 0.35);
}

.site-footer {
    padding: 28px 0;
    color: rgba(255,255,255,0.72);
    background: #020617;
}

.footer-wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer-wrap a {
    color: #fff;
    font-weight: 800;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .hero-grid,
    .about-grid,
    .fleet-grid,
    .faq-grid,
    .final-card {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: 470px;
    }

    .route-map {
        height: 430px;
    }

    .service-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 64px 0;
    }

    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 82px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 12px 10px;
    }

    .nav-cta {
        text-align: center;
    }

    .hero {
        padding-top: 66px;
    }

    .hero-stats,
    .service-grid,
    .process-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        min-height: auto;
    }

    .route-map {
        height: 360px;
        border-radius: 30px;
    }

    .quote-card {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .final-card {
        padding: 26px;
        border-radius: 28px;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    h1 {
        font-size: 2.55rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-card,
    .process-card,
    .testimonial-card {
        padding: 22px;
    }

    .footer-wrap {
        flex-direction: column;
    }
}