/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/hero-bg.png') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, 0.92) 0%, rgba(10, 22, 40, 0.75) 50%, rgba(0, 134, 198, 0.25) 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, #00A1EF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 500px;
    line-height: 1.7;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.hero-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(0, 134, 198, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00A1EF;
    font-size: 0.9rem;
}

/* ========== QUOTE FORM ========== */
.quote-form-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-form-card h3 {
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.quote-form-card .form-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.35rem;
}

.form-group label .required {
    color: #ef4444;
    margin-left: 2px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: all 0.3s;
    outline: none;
}

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

.form-group input:focus,
.form-group select:focus {
    border-color: #00A1EF;
    background: rgba(0, 134, 198, 0.1);
    box-shadow: 0 0 0 3px rgba(0, 161, 239, 0.15);
}

.form-group select option {
    background: #0A1628;
    color: #fff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.quote-form-card .btn-primary {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
    border-radius: 12px;
}

/* ---- Stepper ---- */
.form-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 2rem;
    position: relative;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
}

.stepper-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.35);
    background: transparent;
    transition: all 0.4s;
}

.stepper-step.active .stepper-circle {
    border-color: #00A1EF;
    background: linear-gradient(135deg, #0086C6, #00A1EF);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 161, 239, 0.35);
}

.stepper-step.completed .stepper-circle {
    border-color: #22c55e;
    background: #22c55e;
    color: #fff;
}

.stepper-label {
    font-size: 0.65rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.stepper-step.active .stepper-label,
.stepper-step.completed .stepper-label {
    color: rgba(255, 255, 255, 0.85);
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 0.5rem;
    margin-bottom: 1.2rem;
    position: relative;
    min-width: 40px;
}

.stepper-line .stepper-line-fill {
    position: absolute;
    inset: 0;
    background: #22c55e;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.stepper-line.filled .stepper-line-fill {
    transform: scaleX(1);
}

/* ---- Step Panels ---- */
.form-steps-wrapper {
    position: relative;
    overflow: visible;
}

.form-step {
    display: none;
    animation: stepFadeIn 0.35s ease;
}

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

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---- Toggle Group (Yes/No) ---- */
.toggle-group {
    display: flex;
    gap: 0.5rem;
}

.toggle-btn {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    text-align: center;
}

.toggle-btn:hover {
    border-color: rgba(0, 161, 239, 0.4);
    background: rgba(0, 161, 239, 0.08);
}

.toggle-btn.selected {
    border-color: #00A1EF;
    background: rgba(0, 161, 239, 0.18);
    color: #fff;
    box-shadow: 0 0 0 2px rgba(0, 161, 239, 0.15);
}

/* ---- Vehicle Entry ---- */
.vehicle-entry {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    position: relative;
    transition: border-color 0.3s;
}

.vehicle-entry:hover {
    border-color: rgba(0, 161, 239, 0.2);
}

.vehicle-entry-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
}

.vehicle-entry-header span {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.remove-vehicle-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
    transition: all 0.2s;
}

.remove-vehicle-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.add-vehicle-btn {
    width: 100%;
    padding: 0.7rem;
    border: 2px dashed rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s;
    margin-bottom: 1rem;
}

.add-vehicle-btn:hover {
    border-color: rgba(0, 161, 239, 0.35);
    color: #00A1EF;
    background: rgba(0, 161, 239, 0.05);
}

/* ---- Form Buttons Row ---- */
.form-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.form-buttons .btn {
    flex: 1;
}

.btn-back {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-back:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

/* ---- Summary Card (Step 3) ---- */
.form-summary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.4rem 0;
    font-size: 0.82rem;
}

.summary-row:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-label {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
}

.summary-value {
    color: #fff;
    font-weight: 500;
    text-align: right;
    max-width: 60%;
}

/* ========== TRUST BAR ========== */
.trust-bar {
    background: #0A1628;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-bar .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 134, 198, 0.15), rgba(0, 161, 239, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.trust-item h4 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
}

/* ========== SERVICES ========== */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem 1.5rem;
    text-align: center;
    border: 1px solid #eef2f7;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0086C6, #00A1EF);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 134, 198, 0.12);
    border-color: transparent;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 134, 198, 0.08), rgba(0, 161, 239, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.6rem;
    transition: all 0.4s;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #0086C6, #00A1EF);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A1628;
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
    padding: 6rem 0;
    background: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, #0086C6, #00A1EF, #0086C6);
    border-radius: 2px;
    opacity: 0.2;
}

.step-card {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0086C6, #00A1EF);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0, 134, 198, 0.3);
    position: relative;
    z-index: 1;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #0A1628;
    margin-bottom: 0.75rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ========== WHY CHOOSE US ========== */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0A1628 0%, #0F2240 100%);
}

.why-us .section-title {
    color: #fff;
}

.why-us .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 161, 239, 0.3);
    transform: translateY(-5px);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 134, 198, 0.2), rgba(0, 161, 239, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.4rem;
}

.why-card h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* ========== REVIEWS ========== */
.reviews {
    padding: 6rem 0;
    background: #f8fafc;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #eef2f7;
    transition: all 0.3s;
}

.review-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1rem;
}

.review-stars span {
    color: #f59e0b;
    font-size: 1.1rem;
}

.review-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0086C6, #00A1EF);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.review-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #0A1628;
}

.review-author span {
    font-size: 0.75rem;
    color: #888;
}

/* ========== CTA ========== */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0086C6 0%, #00A1EF 50%, #00D4FF 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    top: -200px;
    right: -100px;
}

.cta::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    bottom: -150px;
    left: -50px;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== FOR BUSINESS ========== */
.for-business {
    padding: 8rem 0;
    background: linear-gradient(135deg, #0A1628 0%, #00223b 100%);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 2px solid rgba(0, 161, 239, 0.2);
    border-bottom: 2px solid rgba(0, 161, 239, 0.2);
    box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

.for-business::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #00A1EF, transparent);
}

.for-business::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, #00A1EF, transparent);
}

.for-business .section-title {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
}

.business-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.business-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.25rem;
    margin-bottom: 3.5rem;
    text-align: center;
}

.business-text p {
    margin-bottom: 1.5rem;
}

.business-text p:last-child {
    margin-bottom: 0;
}

.business-text strong {
    color: #00A1EF;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 161, 239, 0.4);
}

.for-business .btn-primary {
    font-size: 1.15rem;
    padding: 1.15rem 2.5rem;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 161, 239, 0.4);
}

/* ========== AUTOCOMPLETE ========== */
.autocomplete-wrapper {
    position: relative;
}

.autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: rgba(15, 25, 50, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0, 161, 239, 0.25);
    border-radius: 12px;
    max-height: 220px;
    overflow-y: auto;
    z-index: 50;
    display: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
    padding: 6px 0;
}

.autocomplete-dropdown.open {
    display: block;
    animation: dropIn 0.2s ease;
}

.autocomplete-item {
    padding: 0.65rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.autocomplete-item:hover,
.autocomplete-item.active {
    background: rgba(0, 161, 239, 0.15);
    color: #fff;
}

.autocomplete-item .ac-icon {
    font-size: 0.75rem;
    opacity: 0.5;
    flex-shrink: 0;
}

.autocomplete-item .ac-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item .ac-text strong {
    color: #00A1EF;
    font-weight: 600;
}

.autocomplete-loading {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.8rem;
    text-align: center;
}

.autocomplete-no-results {
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
    text-align: center;
}

.autocomplete-dropdown::-webkit-scrollbar {
    width: 5px;
}

.autocomplete-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(0, 161, 239, 0.3);
    border-radius: 10px;
}

/* ========== HOME RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 110px 0 60px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .quote-form-card {
        margin-top: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stepper-label {
        font-size: 0.55rem;
    }

    .stepper-circle {
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }

    .stepper-line {
        min-width: 24px;
    }

    .trust-bar .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

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

    .steps-grid::before {
        display: none;
    }

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

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

    .cta h2 {
        font-size: 1.75rem;
    }
}
