/* Theme Name: Accident Help Minimal
*/

:root {
    --primary-navy: #101828;
    --accent-orange: #ff6b35;
    --text-gray: #475467;
    --white: #ffffff;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    color: var(--primary-navy);
    line-height: 1.5;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HEADER --- */
.site-header {
    background: var(--primary-navy);
    padding: 15px 0;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: 22px; font-weight: 700; color: #fff; text-decoration: none; }
.logo span { color: var(--accent-orange); }

.header-btn {
    background: var(--accent-orange);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* --- HERO SECTION --- */
.hero-bg {
    background: linear-gradient(rgba(16, 24, 40, 0.92), rgba(16, 24, 40, 0.92)), url('your-car-image.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: #fff;
}

.hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* Allows stacking on mobile */
}

.hero-left { flex: 1.2; min-width: 300px; }
.hero-right { flex: 0.8; min-width: 300px; }

.badge {
    background: var(--accent-orange);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-left h1 { font-size: 44px; margin: 0 0 20px 0; line-height: 1.1; }
.hero-left h1 span { color: var(--accent-orange); }
.hero-left p { font-size: 18px; opacity: 0.9; margin-bottom: 25px; }

.check-line { font-size: 14px; margin-top: 20px; }
.check-line span { margin-right: 20px; }

/* --- THE FORM CARD --- */
.funnel-card {
    background: var(--white);
    border-radius: 12px;
    padding: 35px;
    color: var(--primary-navy);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-top: 6px solid var(--accent-orange);
}

.funnel-card h3 { text-align: center; margin-bottom: 25px; font-size: 22px; position: relative;}
.funnel-card h3::after { content: ''; display: block; width: 40px; height: 3px; background: #eee; margin: 10px auto; }

.btn-list { display: flex; flex-direction: column; gap: 12px; }

.btn-item {
    display: flex;
    align-items: center;
    background: #fcfcfd;
    border: 1px solid #eaecf0;
    padding: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.btn-item:hover { border-color: var(--accent-orange); background: #fff9f6; }
.btn-item img { width: 24px; margin-right: 15px; }

/* --- FEATURES SECTION --- */
.features-section { padding: 80px 0; background: #fff; text-align: center; }
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 30px; 
    margin-top: 50px;
}

.feature-box {
    padding: 30px;
    border: 1px solid #f2f4f7;
    border-radius: 12px;
    transition: 0.3s;
}
.feature-box:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.05); }

.f-icon { 
    width: 50px; height: 50px; background: #f9fafb; 
    border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; margin: 0 auto 20px; font-size: 20px;
}

/* --- MOBILE ADJUSTMENTS (Matches Screenshot 2) --- */
@media (max-width: 768px) {
    .hero-flex { flex-direction: column; text-align: center; }
    .hero-left h1 { font-size: 32px; }
    .hero-bg { padding: 40px 0; }
    .funnel-card { padding: 25px; }
}