: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);
}

/* ══════════════════════════════
       SECTION 1 — Orange banner
    ══════════════════════════════ */
.banner-section {
    background: var(--color-5);
    padding: 32px 0px;
}

.banner-section .banner-inner {
    max-width: 830px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.banner-item .banner-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff3;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.banner-item .banner-label {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    text-align: center;
}

/* ══════════════════════════════
       SECTION 2 — Feature cards
    ══════════════════════════════ */
.delivery-section {
    padding: 64px 0;
}

.delivery-section h2 {
    color: var(--color-primary);
    font-size: clamp(23px, 4vw, 30px);
    font-weight: 900;
    line-height: 1.3;
    text-align: center;
    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: 21px;
    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: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.delivery-card .card-icon img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

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

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

.delivery-card .card-icon.green {
    background: #22c55e;
}

.delivery-card .card-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.delivery-card .card-desc {
    font-size: 15px;
    line-height: 1.65;
}

/* ══════════════════════════════
       SECTION 3 — Image stats
    ══════════════════════════════ */
.stats-section-wrap {
    padding: 0 0 56px;
}

.stats-section {

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stats-section .stat-card {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    height: 240px;
}

.stat-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    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: 30px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.stat-card .stat-text .stat-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, .88);
    font-weight: 500;
    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: 30px 0;
    }

    .banner-section .banner-inner {
        gap: 12px;
    }

    .banner-item .banner-label {
        font-size: 14px;
    }

    .delivery-section {
        padding: 36px 0;
    }

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

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

    .stats-section-wrap {
        padding: 0 0 30px;
    }
}

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

/* .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-5);
    opacity: 0.85;
    z-index: 1;
} */

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

.cta-heading {
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 16px;
    max-width: 640px;
    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: var(--color-5);
    color: #FFF !important;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}


.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-5);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Responsive Bottom CTA */

@media (max-width: 575px) {
    .cta-heading {
        font-size: 22px;
        line-height: 30px;
    }

}