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

:root {
    --primary: #1a4731;
    --primary-light: #2d6a4f;
    --accent: #2d6a4f;
    --accent-hover: #1a4731;
    --accent-light: #e8f5ee;
    --success: #27ae60;
    --danger: #e74c3c;
    --text-main: #1a1a2e;
    --text-muted: #5a6a72;
    --bg-main: #f5f7f5;
    --bg-section: #eef3ef;
    --card-bg: #ffffff;
    --border: #d8e4da;
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
}

* {
    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.65;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ===== HEADER ===== */
header {
    background: #ffffff;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-light);
    box-shadow: var(--shadow-sm);
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: var(--radius-md);
    padding: 8px;
    flex-shrink: 0;
}

.brand-top {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.3px;
}

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

.phone-link {
    background: var(--primary);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link:hover {
    background: var(--primary-light);
}

/* ===== HERO ===== */
.hero-simple {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 80px 5%;
    color: white;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.badge {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.section-header .badge {
    background: var(--accent-light);
    color: var(--primary);
    border: 1px solid var(--border);
}

h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 18px;
    color: white;
}

.hero-text-side p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

.hero-form-box {
    background: #ffffff;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-form-box h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 18px;
}

#zip-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border);
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 14px;
    background: var(--bg-main);
}

#zip-input:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
}

.hero-cta-btn {
    width: 100%;
    background: var(--success);
    color: white;
    padding: 15px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.hero-cta-btn:hover {
    background: #219a52;
}

.hero-trust {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-trust span {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* ===== CARRIERS ===== */
.carriers-section {
    padding: 70px 5%;
    background: #ffffff;
    border-bottom: 1px solid var(--border);
}

.carriers-grid-container {
    overflow: hidden;
    padding: 30px 0;
}

.carriers-grid {
    display: flex;
    align-items: center;
    gap: 70px;
    flex-wrap: wrap;
    justify-content: center;
}

.carriers-grid img {
    height: 55px;
    filter: grayscale(100%);
    opacity: 0.45;
}

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

/* ===== HOW IT WORKS ===== */
.how-it-works {
    padding: 80px 5%;
    background: var(--bg-section);
}

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

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-card-alt {
    background: white;
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    position: relative;
}

.step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.12;
    position: absolute;
    top: 16px;
    right: 20px;
    line-height: 1;
}

.step-card-alt h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-card-alt p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ===== WHY CHOOSE US ===== */
.affordable-section {
    padding: 80px 5%;
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-section);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 16px;
}

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

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

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.93rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== PREMIUM MODERN FOOTER ===== */
.footer-modern {
    background: radial-gradient(circle at 50% -20%, #1e4d34 0%, #0d2117 60%, #050c08 100%);
    color: white;
    padding: 100px 5% 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(82, 183, 136, 0.15);
}

/* Footer ambient glow */
.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #27ae60, #52b788, transparent);
    opacity: 0.6;
}

.footer-modern .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Footer grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

/* Brand column styles */
.brand-col .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.logo-icon-modern {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(82, 183, 136, 0.3);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.brand-col .logo-container:hover .logo-icon-modern {
    transform: rotate(5deg) scale(1.05);
    border-color: #52b788;
    background: rgba(82, 183, 136, 0.15);
    box-shadow: 0 0 15px rgba(82, 183, 136, 0.25);
}

.brand-top-modern {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px;
}

.brand-bottom-modern {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #52b788;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.footer-tagline-modern {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Trust Badges */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: #52b788;
    flex-shrink: 0;
}

/* Socials */
.footer-socials {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-btn svg {
    width: 18px;
    height: 18px;
}

.social-btn:hover {
    background: #27ae60;
    border-color: #52b788;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.4);
}

/* Columns for Navigation Links */
.col-title {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #52b788;
    border-radius: 2px;
}

.footer-links-modern {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-modern li {
    margin-bottom: 12px;
}

.footer-links-modern a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.25s ease;
}

.link-arrow {
    font-size: 0.8rem;
    margin-right: 8px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    color: #52b788;
}

.footer-links-modern a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-links-modern a:hover .link-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Card Column */
.footer-contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(5px);
}

.pulse-indicator-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #27ae60;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #27ae60;
    border-radius: 50%;
    animation: agentPulse 1.8s infinite ease-in-out;
    top: 0;
    left: 0;
}

@keyframes agentPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.pulse-text {
    font-size: 0.78rem;
    font-weight: 600;
    color: #52b788;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-card-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.15) 0%, rgba(82, 183, 136, 0.05) 100%);
    border: 1px solid rgba(82, 183, 136, 0.25);
    border-radius: 12px;
    padding: 12px 16px;
    text-decoration: none;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.phone-card-icon {
    width: 36px;
    height: 36px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-card-icon svg {
    width: 16px;
    height: 16px;
}

.phone-card-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    font-family: 'Poppins', sans-serif;
}

.contact-card-phone:hover {
    border-color: #52b788;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.15);
}

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

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.detail-icon {
    font-size: 0.95rem;
    margin-top: 2px;
}

.detail-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.pre-footer-separator {
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 40px;
}

/* Footer Bottom Styles */
.footer-bottom-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-disclaimer-modern {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    max-width: 960px;
    margin: 0 auto 36px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 30px;
}

.footer-disclaimer-modern p {
    margin-bottom: 12px;
}

.footer-disclaimer-modern strong {
    color: rgba(255, 255, 255, 0.6);
}

.copyright-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copyright-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.copyright-links a:hover {
    color: white;
}

.dot-separator {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
}

/* ===== OVERLAPPING FOOTER CTA CARD ===== */
.footer-cta-overlap {
    padding: 0 5%;
    margin-bottom: -50px;
    position: relative;
    z-index: 10;
}

.cta-overlap-card {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1b4731 0%, #153826 100%);
    border: 1px solid rgba(82, 183, 136, 0.25);
    border-radius: 24px;
    padding: 40px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.cta-overlap-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.cta-overlap-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text-group {
    max-width: 500px;
}

.cta-badge {
    background: rgba(82, 183, 136, 0.15);
    border: 1px solid rgba(82, 183, 136, 0.3);
    color: #52b788;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.cta-text-group h3 {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 1.85rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 12px;
}

.cta-text-group p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-action-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-zip-box {
    display: flex;
    background: white;
    border-radius: 14px;
    padding: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-zip-box input {
    flex: 1;
    border: none;
    padding: 12px 16px;
    font-size: 1.05rem;
    color: var(--text-main);
    border-radius: 10px;
    width: 100%;
}

.cta-zip-box input:focus {
    outline: none;
}

.cta-overlap-btn {
    background: var(--success);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.cta-overlap-btn:hover {
    background: #219a52;
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

.btn-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
}

.cta-overlap-btn:hover .btn-arrow {
    transform: translateX(4px);
}

.cta-phone-callout {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
}

.cta-phone-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.cta-phone-link:hover {
    color: #52b788;
}

.phone-pulse {
    width: 6px;
    height: 6px;
    background-color: #27ae60;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.phone-pulse::after {
    content: '';
    position: absolute;
    width: 180%;
    height: 180%;
    border: 1px solid #27ae60;
    border-radius: 50%;
    top: -40%;
    left: -40%;
    animation: phoneIndicator 1.5s infinite ease-out;
}

@keyframes phoneIndicator {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* Media query updates for responsive footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .cta-overlap-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 680px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .cta-overlap-card {
        padding: 30px 24px;
    }

    .cta-text-group h3 {
        font-size: 1.5rem;
    }

    .copyright-row {
        flex-direction: column;
        text-align: center;
    }

    .footer-modern {
        padding: 80px 5% 30px;
    }

    .footer-cta-overlap {
        margin-bottom: -40px;
    }

    .cta-zip-box {
        flex-direction: column;
        background: transparent;
        padding: 0;
        gap: 10px;
        box-shadow: none;
    }

    .cta-zip-box input {
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }

    .cta-overlap-btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
    }
}

/* ===== PREMIUM REDESIGNED MULTI-STEP FORM ===== */
.form-section {
    position: fixed;
    inset: 0;
    background: #050b07;
    z-index: 2000;
    display: none;
    padding: 0;
    overflow: hidden;
}

.form-wrapper-modern {
    display: flex;
    width: 100%;
    height: 100vh;
}

/* Left Sidebar: Brand & Trust Indicators */
.form-sidebar {
    width: 36%;
    max-width: 440px;
    min-width: 320px;
    background: radial-gradient(circle at 50% 30%, #163625 0%, #06110b 70%, #020604 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    border-right: 1px solid rgba(82, 183, 136, 0.15);
    overflow-y: auto;
    z-index: 10;
}

.sidebar-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 60%;
    background: radial-gradient(circle, rgba(39, 174, 96, 0.15) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.sidebar-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    gap: 40px;
}

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

.sb-logo-icon {
    width: 44px;
    height: 44px;
    background: #27ae60;
    border-radius: 12px;
    padding: 9px;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(39, 174, 96, 0.3);
}

.sb-brand-top {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.sb-brand-bottom {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: #52b788;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 1px;
}

/* Trust Features list */
.sidebar-features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sb-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.sb-feat-icon {
    font-size: 1.4rem;
    background: rgba(255, 255, 255, 0.03);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sb-feat-info h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sb-feat-info p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.45;
}

/* Assigned Live Agent card */
.sidebar-agent-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(82, 183, 136, 0.15);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.agent-card-header {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 14px;
}

.agent-avatar-container {
    position: relative;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.agent-avatar-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #52b788 0%, #27ae60 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.4);
}

.agent-pulse-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 10px;
    height: 10px;
    background: #27ae60;
    border: 2px solid #0b1d14;
    border-radius: 50%;
    box-shadow: 0 0 8px #27ae60;
}

.agent-card-details .agent-status-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #52b788;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.agent-card-details h4 {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
}

.agent-card-details p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
}

.agent-welcome-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    line-height: 1.5;
    font-style: italic;
}

/* Right main column for slides */
.form-main-content {
    flex: 1;
    padding: 45px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    background: radial-gradient(circle at 50% -20%, #0d2216 0%, #040a07 60%, #010302 100%);
    position: relative;
}

.main-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.back-home-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.25s ease;
}

.back-home-link:hover {
    color: #ffffff;
}

.top-secure-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #52b788;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(82, 183, 136, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(82, 183, 136, 0.15);
}

.secure-lock-icon {
    width: 14px;
    height: 14px;
}

/* Dynamic Glowing Progress Indicator */
.quote-progress-wrapper {
    width: 100%;
    max-width: 680px;
    margin: 0 auto 35px;
}

.quote-progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.quote-progress-percentage {
    color: #52b788;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-progress-step-name {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 600;
}

.quote-progress-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    overflow: hidden;
}

.quote-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #52b788 0%, #27ae60 100%);
    box-shadow: 0 0 12px rgba(39, 174, 96, 0.4);
    border-radius: 50px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Glassmorphic Step panel */
.step-card-container {
    width: 100%;
    max-width: 680px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-card-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 44px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    width: 100%;
}

.step {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.step.active {
    opacity: 1;
    transform: translateY(0);
}

.step h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    font-weight: 700;
}

.step-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

/* Options Grid & Custom Cards */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.option-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    padding: 22px 16px;
    border-radius: 16px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.option-btn svg {
    width: 34px;
    height: 34px;
    color: #52b788;
    filter: drop-shadow(0 2px 8px rgba(82, 183, 136, 0.25));
    transition: all 0.25s ease;
}

.option-btn:hover {
    background: rgba(82, 183, 136, 0.08);
    border-color: rgba(82, 183, 136, 0.5);
    box-shadow: 0 0 20px rgba(82, 183, 136, 0.15);
    transform: translateY(-2px);
    color: #ffffff;
}

.option-btn:hover svg {
    transform: scale(1.08);
    color: #52b788;
}

.option-btn.selected {
    background: rgba(39, 174, 96, 0.15);
    border-color: #27ae60;
    color: #ffffff;
    box-shadow: 0 0 25px rgba(39, 174, 96, 0.25);
    font-weight: 700;
}

.option-btn.selected svg {
    color: #27ae60;
    filter: drop-shadow(0 2px 10px rgba(39, 174, 96, 0.4));
}

/* Custom Text inputs & selects */
.input-group {
    text-align: left;
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 16px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.25s ease;
}

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

.input-group select option {
    background: #090e0b;
    color: #ffffff;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: #52b788;
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 15px rgba(82, 183, 136, 0.15);
}

.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 15px rgba(231, 76, 60, 0.15) !important;
}

/* Navigation Row */
.form-nav {
    display: flex;
    gap: 14px;
    margin-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
}

.nav-btn {
    flex: 1;
    padding: 16px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.prev-btn {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.prev-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.next-btn {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.next-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
    transform: translateY(-1px);
}

.submit-btn {
    background: linear-gradient(135deg, #27ae60 0%, #219a52 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
    transform: translateY(-1px);
}

/* ===== REPORT CARD ===== */
.report-card {
    text-align: left;
}

.report-top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.verification-seal {
    width: 52px;
    height: 52px;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid #27ae60;
    color: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    box-shadow: 0 0 15px rgba(39, 174, 96, 0.15);
}

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

.report-id {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

.status-badge {
    background: rgba(39, 174, 96, 0.1);
    border: 1px solid rgba(39, 174, 96, 0.2);
    color: #27ae60;
    font-weight: 700;
    font-size: 0.72rem;
    padding: 5px 12px;
    border-radius: 50px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.report-main-title h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 700;
}

.report-main-title p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.97rem;
    margin-bottom: 30px;
}

.report-data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.01);
    padding: 24px;
    border-radius: 20px;
    margin-bottom: 36px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.report-item strong {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.report-item span {
    font-weight: 700;
    color: #ffffff;
    font-size: 1.05rem;
}

.report-action-zone {
    text-align: center;
    padding-top: 10px;
}

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

.action-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.action-divider span {
    position: relative;
    background: #06110b;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.report-action-zone h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #ffffff;
    font-weight: 700;
}

.report-action-zone p {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    font-size: 0.95rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.final-call-btn {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);
    transition: all 0.3s ease;
    max-width: 440px;
    margin: 0 auto;
}

.final-call-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    box-shadow: 0 12px 30px rgba(39, 174, 96, 0.45);
    transform: translateY(-2px);
}

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

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

.btn-primary-text {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.2px;
}

.btn-secondary-text {
    display: block;
    font-size: 0.8rem;
    opacity: 0.85;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 1px;
}

.availability-status {
    margin-top: 20px !important;
    font-size: 0.88rem !important;
    color: #52b788 !important;
    font-weight: 700 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ===== PROCESSING ===== */
.loading-bar-container {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    margin: 30px 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.loading-bar-fill {
    height: 100%;
    background: linear-gradient(to right, #52b788, #27ae60);
    width: 0%;
    transition: width 4.5s ease-in-out;
    box-shadow: 0 0 10px rgba(39, 174, 96, 0.5);
}

.processing-container h2 {
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.processing-list {
    list-style: none;
    text-align: left;
    max-width: 320px;
    margin: 35px auto 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.processing-list li {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
}

.processing-list li .check {
    color: #52b788;
    font-weight: 800;
    font-size: 1.1rem;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
    padding: 70px 5%;
    max-width: 900px;
    margin: 40px auto 80px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
}

.legal-content h1 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 30px;
    color: var(--primary);
    font-size: 2.2rem;
}

.legal-content h2 {
    margin: 36px 0 14px;
    color: var(--primary-light);
    font-size: 1.1rem;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
    line-height: 1.75;
}

/* ===== RESPONSIVE OVERRIDES ===== */
@media (max-width: 1024px) {
    .form-sidebar {
        display: none !important;
    }

    .form-main-content {
        padding: 40px 30px;
    }
}

@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    h1 {
        font-size: 2.2rem;
    }

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

    .footer-nav-row {
        gap: 40px;
    }
}

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

    .phone-link {
        width: 100%;
        justify-content: center;
    }

    h1 {
        font-size: 1.9rem;
    }

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

    /* Multi-step Mobile Polish */
    .form-main-content {
        padding: 30px 16px;
    }

    .step-card-glass {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .options-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .option-btn {
        padding: 16px 10px !important;
        font-size: 0.85rem !important;
        gap: 8px !important;
    }

    .option-btn svg {
        width: 28px !important;
        height: 28px !important;
    }

    .step h2 {
        font-size: 1.45rem !important;
    }

    .step-subtitle {
        font-size: 0.88rem !important;
        margin-bottom: 24px !important;
    }

    .form-nav {
        flex-direction: column-reverse !important;
        gap: 10px !important;
        padding-top: 20px !important;
        margin-top: 24px !important;
    }

    .nav-btn {
        width: 100% !important;
        padding: 14px 18px !important;
        font-size: 0.95rem !important;
    }
}