/* ============================================================
   EMERGENCY FLAT TYRE ASSISTANCE PAGE - SPECIFIC STYLES
   Only affects /emergency_flat_tyre_assistance page
   ============================================================ */

/* ===== HERO SECTION OVERRIDES ===== */
.hero-flat .hero-bg-image {
    display: block;
    width: 100%;
    height: 500px;
    max-height: 500px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-flat .hero-bg-image {
        height: 220px;
        max-height: 220px;
    }
}

/* ===== HERO FEATURES ===== */
.hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
    max-width: 550px;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-features li svg {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 20px 0;
    background: #FFFFFF;
    border-bottom: 1px solid #E5E5E5;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 0;
    flex-wrap: nowrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 10px 12px;
    justify-content: center;
    min-width: 0;
    background: transparent;
    border-radius: 10px;
}

.trust-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #28a745;
}

.trust-icon svg {
    width: 16px;
    height: 16px;
    stroke: #ffffff;
    stroke-width: 3;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-text {
    flex: 1;
    min-width: 0;
}

.trust-text strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #2D3032;
    line-height: 1.2;
}

.trust-text span {
    display: block;
    font-size: 0.7rem;
    color: #555759;
    line-height: 1.3;
}

.trust-divider {
    width: 1px;
    height: 32px;
    background: #E0E0E0;
    flex-shrink: 0;
}

/* ===== FOOTER PAYMENT ICON IMAGES ===== */
.footer-payments img {
    display: inline-block;
    width: auto;
    height: 28px;
    max-width: 45px;
    object-fit: contain;
    background: #ffffff; /* white background so black icons are visible */
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    padding: 2px 6px;
    transition: all 0.2s ease;
}

/* ===== CONTACT LIST ICONS - FORCE RED COLOR ===== */
.contact-list .icon {
    color: #D32F2F !important;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    fill: #D32F2F !important;
    stroke: #D32F2F !important;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #BDBDBD;
    font-size: 0.95rem;
}

.contact-list svg.icon {
    color: #D32F2F !important;
    fill: #D32F2F !important;
    stroke: #D32F2F !important;
}

.contact-list svg.icon use {
    fill: #D32F2F !important;
    stroke: #D32F2F !important;
}

/* ===== SCENARIO CARD BACKGROUND IMAGES ===== */
/* .service-locking and .service-tyres backgrounds already exist in main.css */
.service-fleet .service-bg {
    background-image: url('../images/content/blackeagle_fleet_banner.webp');
    opacity: 0.30;
}

.service-fleet:hover .service-bg {
    opacity: 0.45;
}

.service-home .service-bg {
    background-image: url('../images/content/blackeagle_flat_tyre_assistance_small.webp');
    opacity: 0.30;
}

.service-home:hover .service-bg {
    opacity: 0.45;
}

/* ===== SCENARIO GRID (3-col variant of the standard card grid) ===== */
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.scenario-grid .grid-item {
    margin: 0;
    min-width: 0;
}

/* ===== CALLOUT BOX (used for the blow-out hand-off and the no-repair statement) ===== */
.callout-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light-grey);
    border-left: 4px solid var(--red);
    border-radius: 12px;
    padding: 22px 26px;
    margin-top: 16px;
}

.callout-box .callout-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.callout-box p {
    margin: 0;
    color: var(--soft-charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.callout-box .btn {
    flex-shrink: 0;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 900px) {
    .scenario-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-features {
        grid-template-columns: 1fr;
        gap: 6px;
        max-width: 100%;
    }

    .hero-features li {
        color: #555759;
        font-size: 0.9rem;
        text-shadow: none;
    }

    .hero-features li svg {
        width: 22px;
        height: 22px;
    }

    .hero-subtitle {
        font-size: 1rem;
        color: #555759;
        text-shadow: none;
    }

    .trust-strip {
        padding: 14px 0;
        overflow-x: auto;
    }

    .trust-strip-inner {
        flex-wrap: nowrap;
        gap: 0;
        padding: 0 16px;
        min-width: 500px;
    }

    .trust-item {
        flex: 1 0 auto;
        padding: 8px 10px;
        min-width: 90px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .trust-divider {
        display: none;
    }

    .trust-icon {
        width: 28px;
        height: 28px;
    }

    .trust-icon svg {
        width: 14px;
        height: 14px;
    }

    .trust-text strong {
        font-size: 0.7rem;
    }

    .trust-text span {
        font-size: 0.6rem;
    }

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

    .callout-box {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .callout-box .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-features li {
        font-size: 0.85rem;
    }

    .hero-features li svg {
        width: 20px;
        height: 20px;
    }

    .trust-strip-inner {
        min-width: 400px;
    }

    .trust-item {
        min-width: 70px;
        padding: 6px 8px;
    }
}