:root {
    /* Colors */
    --bg-dark-start: #0B1220;
    --bg-dark-end: #1E293B;
    --text-light: #F9FAFB;
    --text-muted: #CBD5E1;
    --cta-orange: #F97316;
    --cta-orange-hover: #ea580c;
    --cta-green: #22C55E;
    --cta-green-hover: #16a34a;
    --card-glass: rgba(255, 255, 255, 0.06);
    --border-glass: rgba(255, 255, 255, 0.1);

    /* Effects */
    --glass-blur: blur(12px);
    --shadow-default: 0 4px 6px -1px rgba(0, 0, 0, 0.5), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --glow-orange: 0 0 15px rgba(249, 115, 22, 0.3);

    /* Fonts */
    --font-stack: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-stack);
    background: linear-gradient(135deg, var(--bg-dark-start), var(--bg-dark-end));
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-light);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- Utilities --- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-gradient {
    background: linear-gradient(to right, #fff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    gap: 0.5rem;
}

.btn-orange {
    background-color: var(--cta-orange);
    color: white;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.btn-orange:hover {
    background-color: var(--cta-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.6);
}

.btn-green {
    background-color: var(--cta-green);
    color: white;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.4);
}

.btn-green:hover {
    background-color: var(--cta-green-hover);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

/* --- Header --- */
header {
    background: rgba(11, 18, 32, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    /* Full height as requested */
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for fixed header */
    background-image: url('../assets/img/hero-bg.jpg');
    /* Optimized JPG */
    background-size: cover;
    background-position: center;
    overflow: hidden;
    background-color: var(--bg-dark-start);
    /* Fallback */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(11, 18, 32, 0.95) 0%, rgba(11, 18, 32, 0.7) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text .subline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Glass Form Card */
.glass-card {
    background: var(--card-glass);
    backdrop-filter: var(--glass-blur);
    /* Glassmorphism */
    border: 1px solid var(--border-glass);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-default);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--cta-orange);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-full {
    grid-column: 1 / -1;
}

/* --- Local Focus --- */
.local-block {
    padding: 4rem 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-glass);
}

.local-block h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.location-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.location-item span {
    color: var(--cta-orange);
}

/* --- Trust Bar --- */
.trust-bar {
    padding: 4rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.trust-card {
    background: var(--card-glass);
    border: 1px solid var(--border-glass);
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s;
}

.trust-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* --- Process Timeline --- */
.process {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-glass);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    background: #111822;
    /* Matches bg somewhat to hide line under icon */
    padding: 0 1rem;
}

.step-circle {
    width: 50px;
    height: 50px;
    background: var(--bg-dark-start);
    border: 2px solid var(--cta-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    color: var(--cta-orange);
}

.timeline-step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-step p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Glow Cards (Vehicle Types) --- */
.vehicles {
    padding: 5rem 0;
}

.vehicles h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.glow-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid var(--border-glass);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: default;
}

.glow-card:hover {
    box-shadow: var(--glow-orange);
    border-color: var(--cta-orange);
    transform: translateY(-2px);
    background: rgba(30, 41, 59, 0.7);
}

/* --- FAQ --- */
.faq {
    padding: 5rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    display: none;
    /* JS will toggle */
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- Final CTA --- */
.final-cta {
    padding: 6rem 0;
    text-align: center;
    background: linear-gradient(to top, #0f172a, rgba(15, 23, 42, 0));
}

.final-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.final-cta p {
    color: var(--text-muted);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* --- Footer --- */
footer {
    padding: 2rem 0;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--border-glass);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-wrapper {
        padding: 0 1rem;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
        background-position: center bottom;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        /* Smaller on mobile */
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        /* Stack buttons on very small screens */
    }

    .timeline {
        flex-direction: column;
        padding-left: 0;
    }

    .timeline::before {
        display: none;
    }

    .timeline-step {
        margin-bottom: 2.5rem;
        flex-direction: column;
        /* Stack icon and text */
        align-items: center;
        text-align: center;
        background: transparent;
        /* Remove bg hack */
    }

    .step-circle {
        margin: 0 auto 1rem;
        /* Center circle */
    }

    .location-icons {
        gap: 1.5rem;
        flex-direction: column;
        /* Stack locations */
        align-items: center;
    }

    .glass-card {
        padding: 1.5rem;
        /* Less padding on mobile */
    }

    .cta-group {
        flex-direction: column;
    }
}

/* --- Multi-Step Form Wizard --- */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-glass);
    z-index: 1;
    transform: translateY(-50%);
}

.progress-step {
    width: 30px;
    height: 30px;
    background: var(--bg-dark-start);
    border: 2px solid var(--border-glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.progress-step.active {
    border-color: var(--cta-orange);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.5);
    background: var(--cta-orange);
}

.progress-step.completed {
    background: var(--cta-green);
    border-color: var(--cta-green);
}

.progress-step::after {
    content: attr(data-title);
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.progress-step.active::after {
    color: var(--text-light);
    font-weight: 600;
}

.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    gap: 1rem;
}

.btn-back {
    background: transparent;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

/* Radio Cards */
.radio-group-label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
}

.radio-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.radio-option {
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.radio-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.radio-option input[type="radio"]:checked+label {
    background: rgba(249, 115, 22, 0.2);
    border-color: var(--cta-orange);
    color: var(--text-light);
    box-shadow: 0 0 10px rgba(249, 115, 22, 0.1);
}

.radio-option label:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
    min-height: 100px;
    resize: vertical;
}

textarea:focus {
    border-color: var(--cta-orange);
}