/* ============================================================
   LOCKING WHEEL NUT PAGE - SPECIFIC STYLES
   Only affects /locking_wheel_nut_removal page
   ============================================================ */

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

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

/* ===== HERO FEATURES - BIGGER GREEN TICKS ===== */
.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 - CLEAN, NO RED BORDER ===== */
.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;
}

/* All items are now identical - no red border anywhere */
.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-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;
}

/* Also force the SVG inside contact list */
.contact-list svg.icon {
    color: #D32F2F !important;
    fill: #D32F2F !important;
    stroke: #D32F2F !important;
}

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

/* ===== MOBILE RESPONSIVE ===== */
@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;
    }
}

@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;
    }
}