/* ═══════════════════════════════════════════════════════
   HOME — Benefits Section (.gw-benefits)
   Greenway Car Rental
═══════════════════════════════════════════════════════ */

/* ── Section wrapper ───────────────────────────────── */
.gw-benefits {
    background: #fff;
    padding: 88px 0 0;
    position: relative;
    overflow: hidden;
}

.gw-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 280px;
    background: radial-gradient(ellipse 70% 55% at 50% -5%, rgba(156, 205, 83, .07) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Inner container ───────────────────────────────── */
.gw-benefits-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 1;
}

/* ── Section header ────────────────────────────────── */
.gw-header {
    text-align: center;
    margin-bottom: 52px;
}

.gw-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: #111827;
    line-height: 1.2;
    margin: 0 auto 16px;
    max-width: 720px;
}

.gw-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.75;
}

.gw-highlight {
    color: #3d6b14;
}

.gw-location {
    color: #3d6b14;
    font-weight: 600;
}

/* ── Badge pill ────────────────────────────────────── */
.gw-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(156, 205, 83, .12);
    border: 1px solid rgba(156, 205, 83, .32);
    color: #3d6b14;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
}

.gw-badge-pill [data-lucide] {
    width: 14px;
    height: 14px;
    stroke-width: 2.5;
}

/* ── Cards grid ────────────────────────────────────── */
.gw-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 1023px) {
    .gw-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 599px) {
    .gw-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Individual card ───────────────────────────────── */
.gw-card {
    background: #fff;
    border: 1px solid #e4eaec;
    border-radius: 18px;
    padding: 28px 22px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s, border-color .3s;
}

.gw-card:hover {
    box-shadow: 0 14px 40px rgba(0, 0, 0, .09), 0 2px 8px rgba(0, 0, 0, .04);
    transform: translateY(-4px);
    border-color: rgba(156, 205, 83, .55);
}

.gw-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7EAA3E, #9CCD53);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .32s ease;
    border-radius: 0 0 18px 18px;
}

.gw-card:hover::after {
    transform: scaleX(1);
}

/* ── Icon box ──────────────────────────────────────── */
.gw-icon {
    position: relative;
    width: 78px;
    min-width: 78px;
    height: 78px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
    transition: transform .3s, box-shadow .3s;
    z-index: 0;
}

.gw-icon::after {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: rgba(156, 205, 83, .13);
    z-index: -1;
}

.gw-card:hover .gw-icon {
    transform: scale(1.07);
    box-shadow: 0 8px 22px rgba(121, 191, 58, .38);
}

.gw-icon [data-lucide] {
    width: 50px;
    height: 50px;
    stroke-width: 1.8;
    color: #79bf3a;
}

/* ── Card body (text column) ───────────────────────── */
.gw-card-body {
    flex: 1;
    min-width: 0;
}

/* ── Card text ─────────────────────────────────────── */
.gw-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #111827;
    line-height: 1.3;
    margin: 0 0 8px;
}

.gw-separator {
    width: 30px;
    height: 3px;
    background: #9CCD53;
    border-radius: 2px;
    margin-bottom: 10px;
}

.gw-card-desc {
    font-size: 13.5px;
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
}

/* ── Stats row ─────────────────────────────────────── */
.gw-stats-row {
    background: #fff;
    border: 1px solid #e4eaec;
    border-radius: 18px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}

@media (max-width: 767px) {
    .gw-stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gw-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 20px;
    border-right: 1px solid #f0f4f0;
    transition: background .2s;
}

.gw-stat-item:last-child {
    border-right: none;
}

.gw-stat-item:hover {
    background: #fafbf9;
}

@media (max-width: 767px) {
    .gw-stat-item:nth-child(2) {
        border-right: none;
    }

    .gw-stat-item:nth-child(3) {
        border-top: 1px solid #f0f4f0;
    }

    .gw-stat-item:nth-child(4) {
        border-top: 1px solid #f0f4f0;
        border-right: none;
    }
}

.gw-stat-ico {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(156, 205, 83, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #3d6b14;
}

.gw-stat-ico [data-lucide] {
    width: 22px;
    height: 22px;
    stroke-width: 1.8;
}

.gw-stat-num {
    font-size: 22px;
    font-weight: 900;
    color: #3d6b14;
    line-height: 1.05;
    margin-bottom: 2px;
}

.gw-stat-label {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1px;
}

.gw-stat-sub {
    font-size: 11px;
    color: #9ca3af;
    font-weight: 500;
    line-height: 1.3;
}

/* ── Trust bar (dark green — full width) ───────────── */
.gw-trust-bar {
    background: #2d5010;
    margin-top: 52px;
    width: 100%;
    border-top: 1px solid rgba(156, 205, 83, .20);
}

/* Full-width grid — no max-width cap */
.gw-trust-inner {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 767px) {
    .gw-trust-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gw-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;   /* center the icon+text block in the cell */
    gap: 20px;
    padding: 36px 28px;
    border-right: 1px solid rgba(255, 255, 255, .10);
    transition: background .25s;
    position: relative;
}

.gw-trust-item:last-child {
    border-right: none;
}

.gw-trust-item:hover {
    background: rgba(255, 255, 255, .06);
}

/* Subtle top-accent line on hover */
.gw-trust-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, #9CCD53, #7EAA3E);
    opacity: 0;
    transition: opacity .25s;
}
.gw-trust-item:hover::after { opacity: 1; }

@media (max-width: 767px) {
    .gw-trust-item:nth-child(2) { border-right: none; }
    .gw-trust-item:nth-child(3) { border-top: 1px solid rgba(255, 255, 255, .10); }
    .gw-trust-item:nth-child(4) { border-top: 1px solid rgba(255, 255, 255, .10); border-right: none; }
}

/* Icon box — 62 × 62, rounded square with gradient */
.gw-trust-ico {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(156, 205, 83, .22), rgba(156, 205, 83, .10));
    border: 1px solid rgba(156, 205, 83, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #9CCD53;
    transition: background .25s, transform .25s;
}

.gw-trust-item:hover .gw-trust-ico {
    background: linear-gradient(135deg, rgba(156, 205, 83, .32), rgba(156, 205, 83, .16));
    transform: scale(1.08);
}

.gw-trust-ico [data-lucide] {
    width: 30px;
    height: 30px;
    stroke-width: 1.7;
}

/* Text */
.gw-trust-title {
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 4px;
}

.gw-trust-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
    line-height: 1.4;
}

/* Star rating */
.gw-trust-stars {
    display: flex;
    gap: 3px;
    margin-top: 5px;
}

.gw-trust-stars svg {
    width: 13px;
    height: 13px;
    fill: #FBBC05;
    flex-shrink: 0;
}
