@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;600;700;800&display=swap');

:root {
    --primary: #0f172a;
    --primary-light: #1e293b;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --success: #10b981;
    --danger: #ef4444;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --bg-main: #f8fafc;
    --card-bg: #ffffff;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Blobs */
.bg-blob {
    position: fixed;
    width: 50vw;
    height: 50vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.12;
    pointer-events: none;
}

.blob-1 {
    background: var(--accent);
    top: -10%;
    right: -10%;
}

.blob-2 {
    background: #a855f7;
    bottom: -10%;
    left: -10%;
}

/* Header & Top Bar */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    padding: 1.25rem 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent);
    border-radius: 12px;
    padding: 9px;
}

.brand-top {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.brand-bottom {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.phone-link {
    background: white;
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero-simple {
    position: relative;
    padding: 120px 8%;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-image: linear-gradient(to right, rgba(15, 23, 42, 0.95) 30%, rgba(15, 23, 42, 0.4)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.hero-content-wrapper {
    max-width: 650px;
}

h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
}

.hero-text-side p {
    font-size: 1.3rem;
    color: #cbd5e1;
    margin-bottom: 40px;
}

.hero-form-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#zip-input {
    width: 100%;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
}

.hero-cta-btn {
    width: 100%;
    background: var(--accent);
    color: white;
    padding: 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Carriers Section */
.carriers-section {
    padding: 100px 8%;
    background: white;
}

.carriers-grid-container {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.carriers-grid {
    display: flex;
    align-items: center;
    gap: 100px;
    animation: scrollLogos 40s linear infinite;
    width: max-content;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.carriers-grid img {
    height: 90px;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: 0.3s;
}

.carriers-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* How It Works */
.how-it-works {
    padding: 100px 8%;
    background: #f1f5f9;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card-alt {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: 0.3s;
}

.step-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.1;
    position: absolute;
    top: 20px;
    right: 20px;
}

/* Why Choose Us */
.affordable-section {
    padding: 120px 8%;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.badge {
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
}

.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #f8fafc;
    padding: 50px 40px;
    border-radius: 30px;
    text-align: left;
    transition: 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent);
    box-shadow: var(--shadow-md);
}

.feature-icon-box svg {
    width: 30px;
    height: 30px;
}

/* Footer Styles */
.footer-dark {
    background: var(--primary);
    color: white;
    padding: 100px 8% 60px;
    text-align: center;
}

.footer-logo-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.footer-nav-row {
    display: flex;
    justify-content: center;
    gap: 100px;
    margin-bottom: 80px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.footer-nav-group h4 {
    color: var(--accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.footer-links-list {
    list-style: none;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.footer-links-list a:hover {
    color: white;
}

.footer-contact-info p {
    color: #94a3b8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 60px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Multi-step Form Styling (REFINED) */
.form-section {
    position: fixed;
    inset: 0;
    background: #f1f5f9;
    z-index: 2000;
    display: none;
    padding: 40px 20px;
    overflow-y: auto;
}

.step-card {
    max-width: 800px;
    margin: 40px auto;
    background: white;
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    position: relative;
    text-align: center;
}

.step-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.option-btn {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 35px 20px;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.option-btn svg {
    width: 40px;
    height: 40px;
    color: var(--accent);
    transition: 0.3s;
}

.option-btn:hover {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.02);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.option-btn.selected {
    border-color: var(--accent);
    background: rgba(59, 130, 246, 0.05);
    color: var(--accent);
}

.option-btn.selected svg {
    transform: scale(1.1);
}

.input-group {
    text-align: left;
    margin-bottom: 25px;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 0.9rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 20px;
    border-radius: var(--radius-md);
    border: 2px solid #e2e8f0;
    font-size: 1.1rem;
    transition: 0.3s;
    color: var(--primary);
    background: #f8fafc;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.input-error {
    border-color: var(--danger) !important;
    background: #fffafa !important;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1) !important;
}

.form-nav {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    border-top: 1px solid #f1f5f9;
    padding-top: 40px;
}

.nav-btn {
    flex: 1;
    padding: 22px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.prev-btn {
    background: #f1f5f9;
    color: var(--text-muted);
}

.prev-btn:hover {
    background: #e2e8f0;
}

.next-btn {
    background: var(--primary);
    color: white;
}

.next-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.submit-btn {
    background: var(--success);
    color: white;
}

.submit-btn:hover {
    background: #059669;
}

/* Final Report Professional Card */
.report-card {
    text-align: left;
    background: #ffffff;
}

.report-top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    margin-bottom: 40px;
}

.verification-seal {
    width: 60px;
    height: 60px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.report-meta {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-id {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
}

.status-badge {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-weight: 800;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 50px;
    display: inline-block;
}

.report-main-title h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.report-main-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.report-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    background: #f8fafc;
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 50px;
}

.report-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.report-item strong {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.report-item span {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.report-action-zone {
    text-align: center;
    background: white;
    padding-top: 20px;
}

.action-divider {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.action-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}

.action-divider span {
    position: relative;
    background: white;
    padding: 0 20px;
    color: var(--text-muted);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.report-action-zone h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.report-action-zone p {
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.final-call-btn {
    background: var(--success);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 25px;
    border-radius: var(--radius-lg);
    transition: 0.3s;
    box-shadow: 0 15px 30px rgba(16, 185, 129, 0.3);
}

.final-call-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.btn-icon {
    font-size: 2.5rem;
}

.btn-text {
    text-align: left;
}

.btn-primary-text {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
}

.btn-secondary-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.availability-status {
    margin-top: 25px !important;
    font-size: 0.9rem !important;
    color: var(--success) !important;
    font-weight: 700 !important;
}

/* Processing / Loading */
.loading-bar-container {
    width: 100%;
    height: 12px;
    background: #f1f5f9;
    border-radius: 50px;
    margin: 40px 0;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(to right, var(--accent), var(--success));
    width: 0%;
    transition: width 0.5s ease;
}

.processing-list {
    list-style: none;
    text-align: left;
    max-width: 300px;
    margin: 0 auto;
}

.processing-list li {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 15px;
}

.processing-list li .check {
    color: var(--success);
    font-weight: 800;
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 1500;
}

.sticky-call-btn {
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.4);
}

@media (max-width: 900px) {
    header {
        padding: 1rem 5%;
    }

    .brand-top {
        font-size: 1.1rem;
    }

    .brand-bottom {
        font-size: 0.7rem;
    }

    h1 {
        font-size: 3rem;
    }

    .hero-simple {
        padding: 120px 5%;
        text-align: center;
    }

    .step-card {
        padding: 40px 25px;
        margin: 20px auto;
    }
}

@media (max-width: 600px) {
    header {
        flex-direction: column;
        gap: 15px;
        padding: 1.25rem 5%;
    }

    .phone-link {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .hero-simple {
        padding: 80px 5%;
    }

    h1 {
        font-size: 2.2rem;
    }

    .hero-form-box {
        padding: 25px;
    }
}
