:root {
    --orange: #f47920;
    --navy: #1b3056;
    --green: #22c55e;
    --gray: #6b7280;
    --card-bg: #ffffff;
    --bg: #f5f6fa;
    --radius: 14px;
    --shadow: 0 2px 16px rgba(0, 0, 0, .07);
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--bg);
    color: var(--navy);
}

/* ══════════════════════════════
       SECTION 1 — Orange banner
    ══════════════════════════════ */
.banner-section {
    background: var(--orange);
    padding: 28px 20px;
}

.banner-section>.banner-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 80px;
}

.banner-inner>.banner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.banner-item>.banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item>.banner-icon svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

.banner-item>.banner-label {
    font-size: .88rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
}

/* ══════════════════════════════
       SECTION 2 — Feature cards
    ══════════════════════════════ */
.delivery-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 56px 20px 60px;
}

.delivery-section>h2 {
    text-align: center;
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 40px;
}

.delivery-section>.delivery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Card */
.delivery-grid>.delivery-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 26px 22px 28px;
    transition: transform .22s ease, box-shadow .22s ease;
}

.delivery-grid>.delivery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .11);
}

.delivery-card>.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.delivery-card>.card-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.delivery-card>.card-icon.navy {
    background: var(--navy);
}

.delivery-card>.card-icon.orange {
    background: var(--orange);
}

.delivery-card>.card-icon.green {
    background: var(--green);
}

.delivery-card>.card-title {
    font-size: .97rem;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 10px;
    line-height: 1.35;
}

.delivery-card>.card-desc {
    font-size: .82rem;
    color: var(--gray);
    font-weight: 600;
    line-height: 1.65;
}

/* ══════════════════════════════
       SECTION 3 — Image stats
    ══════════════════════════════ */
.stats-section {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-section>.stat-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    min-height: 180px;
}

.stat-card>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease;
}

.stat-card:hover>img {
    transform: scale(1.05);
}

/* overlay */
.stat-card>.stat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 40%, transparent 100%);
}

.stat-card>.stat-text {
    position: absolute;
    bottom: 22px;
    left: 24px;
}

.stat-card>.stat-text>.stat-number {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
}

.stat-card>.stat-text>.stat-sub {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
    font-weight: 600;
    margin-top: 4px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ══════════════════════════════
       Responsive — Tablet
    ══════════════════════════════ */
@media (max-width: 860px) {
    .banner-section>.banner-inner {
        gap: 40px;
    }

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

/* ══════════════════════════════
       Responsive — Mobile
    ══════════════════════════════ */
@media (max-width: 520px) {
    .banner-section {
        padding: 22px 16px;
    }

    .banner-section>.banner-inner {
        gap: 20px;
    }

    .banner-item>.banner-label {
        font-size: .78rem;
    }

    .delivery-section {
        padding: 36px 14px 40px;
    }

    .delivery-section>.delivery-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 0 14px 40px;
        grid-template-columns: 1fr;
    }
}

/* ============================================================ */
/* BOTTOM CTA SECTION
/* ============================================================ */
.bottom-cta-section {
    position: relative;
    padding: 80px 0;
    background-color: var(--color-sub);
    color: #fff;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-sub);
    opacity: 0.85;
    /* to let the background image slightly show through */
    z-index: 1;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-heading {
    font-size: 36px;
    font-weight: 900;
    margin: 0 0 16px;
    max-width: 750px;
    line-height: 40px;
}

.cta-subtext-box {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #fff;
    color: var(--color-sub);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-cta-solid:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-2px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background-color: #fff;
    color: var(--color-sub);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Responsive Bottom CTA */
@media (max-width: 768px) {
    .bottom-cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 575px) {
    .cta-heading {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
}