/* Edward Lopez Arizona Doctor Loans - Texas Style Match */

:root {
    --primary-dark: #1e376c;
    --accent-red: #df2926;
    --secondary-teal: #2b5a77;
    --text-gray: #757575;
    --bg-light: #f2f2f2;
    --white: #ffffff;
    --font-family: 'Raleway', sans-serif;
}

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

body {
    font-family: var(--font-family);
    font-weight: 400;
    color: var(--text-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-left {
    font-weight: 500;
}

.top-bar-right {
    display: flex;
    gap: 25px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar i {
    font-size: 16px;
}

/* Main Header */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    font-size: 24px;
    font-weight: 500;
    color: var(--primary-dark);
    line-height: 1.2;
}

.logo-text span {
    display: block;
    font-size: 14px;
    color: var(--accent-red);
    font-weight: 400;
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: var(--text-gray);
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
    display: block;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary-dark);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 400;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background-color: #f9f9f9;
}

/* CTA Button */
.btn-cta {
    background-color: var(--accent-red);
    color: var(--white) !important;
    padding: 12px 25px !important;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(30, 55, 108, 0.7), rgba(30, 55, 108, 0.8)), url('doctor-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 80px 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49%, var(--white) 50%);
}

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

.hero-prefix {
    color: var(--accent-red);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.9);
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.85);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--accent-red);
    color: var(--white);
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.hero-cta:hover {
    background-color: #c4211e;
    transform: translateY(-2px);
}

/* Feature List */
.feature-list {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-list h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--white);
}

.feature-list ul {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 16px;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--primary-dark);
    color: var(--white);
}

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

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

.section-title h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-title h2 {
    color: var(--white);
}

.section-dark .section-title p {
    color: rgba(255,255,255,0.8);
}

/* Mortgage Cards */
.mortgage-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.mortgage-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.mortgage-card:hover {
    transform: translateY(-5px);
}

.mortgage-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
}

.mortgage-card:hover img {
    transform: scale(1.05);
}

.mortgage-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(30, 55, 108, 0.95), transparent);
}

.mortgage-card h3 {
    color: var(--white);
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}

/* Learn More Section */
.learn-more-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    color: var(--white);
    padding: 80px 0;
}

.learn-more-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.learn-more-prefix {
    color: var(--accent-red);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.learn-more-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
}

.learn-more-intro {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 50px;
}

.loan-benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
    text-align: left;
}

.loan-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 10px;
    transition: transform 0.3s, background 0.3s;
}

.loan-benefit-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.15);
}

.loan-benefit-item i {
    font-size: 24px;
    color: var(--accent-red);
    flex-shrink: 0;
    margin-top: 3px;
}

.loan-benefit-item span {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.95);
}

.btn-learn-more {
    display: inline-block;
    background: var(--accent-red);
    color: var(--white);
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-learn-more:hover {
    background: #c4211e;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(223, 41, 38, 0.3);
}

@media (max-width: 768px) {
    .loan-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .learn-more-content h2 {
        font-size: 28px;
    }
}

/* About Section */
.about-section {
    padding: 60px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-prefix {
    color: var(--accent-red);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 25px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-dark);
    padding: 14px 30px;
    text-decoration: none;
    border: 2px solid var(--primary-dark);
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

/* Features Grid */
.features-section {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.feature-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 14px;
    line-height: 1.6;
}

/* Loan Officer Section */
.loan-officer {
    padding: 80px 0;
    background-color: var(--white);
}

.loan-officer-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
}

.loan-officer-image {
    position: relative;
}

.loan-officer-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.loan-officer-content .prefix {
    color: var(--accent-red);
    font-weight: 500;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: block;
}

.loan-officer-content h2 {
    font-size: 36px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.loan-officer-content .nmls {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
}

.loan-officer-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.read-bio {
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.read-bio:hover {
    gap: 10px;
}

/* Company Section */
.company-section {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 80px 0;
}

.company-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.company-prefix {
    color: var(--accent-red);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.company-content h2 {
    font-size: 36px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--white);
}

.company-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.9);
}

.states-list {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.states-list h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.states-list p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
}

.footer-brand h3 span {
    color: var(--accent-red);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: background-color 0.3s;
}

.footer-social a:hover {
    background-color: var(--accent-red);
}

.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 8px;
}

.footer-contact-card img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-contact-info h5 {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.footer-contact-info p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

/* Page Header */
.page-header {
    background: linear-gradient(rgba(30, 55, 108, 0.9), rgba(30, 55, 108, 0.9)), url('doctor-hero.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* Content Sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.content-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.content-section li {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.btn-submit {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background-color: #c4211e;
}

/* Eligibility Cards */
.eligibility-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.eligibility-card {
    background-color: var(--white);
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.eligibility-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.eligibility-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.eligibility-card h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

/* Check List */
.check-list {
    list-style: none;
    margin: 20px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 35px;
    position: relative;
    font-size: 15px;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-red);
    font-weight: bold;
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .mortgage-cards,
    .features-grid,
    .eligibility-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .loan-officer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .loan-officer-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        display: none;
    }
    
    .top-bar .container {
        justify-content: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-dark);
        padding: 80px 20px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s;
        z-index: 999;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        width: 100%;
    }
    
    .main-nav a {
        color: var(--white);
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background-color: rgba(255,255,255,0.1);
        box-shadow: none;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .mortgage-cards,
    .features-grid,
    .eligibility-cards,
    .two-column {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   LEAD CAPTURE & CONVERSION STYLES
   ========================================== */

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
}

.exit-popup-content {
    position: relative;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.exit-popup.active .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-gray);
}

.exit-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 36px;
}

.exit-popup h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.exit-popup p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.exit-popup form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.exit-popup input {
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-family);
}

.exit-popup input:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.exit-popup .btn-primary {
    background-color: var(--accent-red);
    color: var(--white);
    padding: 16px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.exit-popup .btn-primary:hover {
    background-color: #c4211e;
}

.exit-popup-note {
    font-size: 13px !important;
    color: var(--text-gray) !important;
    margin-top: 15px;
}

/* Gate Popup */
.gate-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.gate-popup.active {
    opacity: 1;
    visibility: visible;
}

.gate-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.8);
}

.gate-popup-content {
    position: relative;
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.gate-popup.active .gate-popup-content {
    transform: scale(1);
}

.gate-popup h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.gate-popup p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.gate-popup form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gate-popup input {
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: var(--font-family);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-gray);
    text-align: left;
    margin: 10px 0;
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
}

.success-message {
    text-align: center;
    padding: 20px;
}

.success-message i {
    font-size: 64px;
    color: #28a745;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.bonus-text {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px !important;
    color: #2e7d32 !important;
}

/* Social Proof Bar */
.social-proof-bar {
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    padding: 12px 0;
}

.social-proof-bar .container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.social-proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-gray);
}

.social-proof-item i {
    color: var(--accent-red);
    font-size: 18px;
}

.social-proof-item strong {
    color: var(--primary-dark);
    font-size: 18px;
}

/* Activity Toast */
.activity-toast {
    position: fixed;
    bottom: 100px;
    left: 20px;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 9998;
    transform: translateX(-150%);
    transition: transform 0.5s ease-out;
    max-width: 350px;
}

.activity-toast.show {
    transform: translateX(0);
}

.activity-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.activity-content strong {
    display: block;
    color: var(--primary-dark);
    font-size: 14px;
}

.activity-content span {
    font-size: 12px;
    color: var(--text-gray);
}

/* Calculator Section */
.calculator-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    padding: 60px 0;
}

.calculator-widget {
    background: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 700px;
    margin: 0 auto;
}

.calculator-widget h3 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calculator-widget h3 i {
    color: var(--accent-red);
}

.calc-inputs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 25px;
}

.calc-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.calc-group input {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-family);
}

.calc-result {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    border-radius: 8px;
}

.result-amount {
    font-size: 48px;
    font-weight: 600;
    color: #2e7d32;
    margin-bottom: 5px;
}

/* Urgency Banner */
.urgency-banner {
    background: linear-gradient(90deg, #ff6b6b, var(--accent-red));
    color: var(--white);
    padding: 12px 0;
    font-size: 14px;
}

.urgency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.urgency-banner i {
    font-size: 18px;
}

.urgency-timer {
    font-weight: 600;
    background: rgba(255,255,255,0.2);
    padding: 5px 12px;
    border-radius: 4px;
    font-family: monospace;
}

.btn-small {
    background: var(--white);
    color: var(--accent-red);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.2s;
}

.btn-small:hover {
    transform: scale(1.05);
}

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 20px;
    display: none;
    gap: 10px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9997;
}

.sticky-mobile-cta a {
    flex: 1;
    padding: 14px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.btn-apply {
    background: var(--accent-red);
    color: var(--white);
}

/* Inline CTA */
.inline-cta {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    padding: 40px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}

.inline-cta-content h4 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 10px;
}

.inline-cta-content p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    font-size: 16px;
}

.inline-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.inline-cta-buttons .btn-primary {
    background: var(--accent-red);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.inline-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 13px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

/* Live Chat Widget */
.live-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(223, 41, 38, 0.4);
    position: relative;
    transition: transform 0.3s;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #28a745;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s;
}

.chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.chat-header img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover;
}

.chat-header strong {
    display: block;
    font-size: 15px;
}

.status-online {
    font-size: 12px;
    color: #4caf50;
}

.chat-header button {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.chat-messages {
    height: 250px;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.chat-message.bot {
    margin-right: auto;
}

.chat-message p {
    background: var(--white);
    padding: 12px 15px;
    border-radius: 12px 12px 12px 4px;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.chat-message.user {
    margin-left: auto;
}

.chat-message.user p {
    background: var(--primary-dark);
    color: var(--white);
    border-radius: 12px 12px 4px 12px;
}

.chat-quick-replies {
    padding: 10px 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    border-top: 1px solid #eee;
}

.chat-quick-replies button {
    background: #f0f0f0;
    border: none;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.chat-quick-replies button:hover {
    background: #e0e0e0;
}

.chat-input {
    padding: 15px;
    display: flex;
    gap: 10px;
    border-top: 1px solid #eee;
}

.chat-input input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    font-size: 14px;
    font-family: var(--font-family);
}

.chat-input button {
    width: 45px;
    height: 45px;
    background: var(--accent-red);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.2s;
}

.chat-input button:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .sticky-mobile-cta {
        display: flex;
    }
    
    .calc-inputs {
        grid-template-columns: 1fr;
    }
    
    .social-proof-bar .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .urgency-banner .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        right: -10px;
    }
    
    .exit-popup-content,
    .gate-popup-content {
        padding: 30px 20px;
    }
}

/* ==========================================
   MULTI-STEP STEPPER FORM STYLES
   ========================================== */

.stepper-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Benefits Sidebar */
.stepper-benefits {
    position: sticky;
    top: 20px;
    height: fit-content;
}

/* Benefits Card - Light Theme */
.benefits-card {
    background: var(--white);
    color: var(--primary-dark);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.benefits-card h3 {
    font-size: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary-dark);
}

.benefits-card h3 i {
    color: var(--accent-red);
}

.benefits-list {
    list-style: none;
    margin: 0 0 30px 0;
}

.benefits-list li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
}

.benefits-list li i {
    color: #4caf50;
    margin-top: 3px;
    flex-shrink: 0;
}

.trust-badge {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.trust-badge i {
    font-size: 28px;
    color: var(--accent-red);
}

.trust-badge strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
    color: var(--primary-dark);
}

.trust-badge span {
    font-size: 12px;
    color: var(--text-gray);
}

.testimonial-mini {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--accent-red);
}

.testimonial-mini p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--primary-dark);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-gray);
}

/* Stepper Form Wrapper */
.stepper-form-wrapper {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.stepper-header {
    background: var(--bg-light);
    padding: 25px 30px;
    border-bottom: 1px solid #e0e0e0;
}

.stepper-progress {
    margin-bottom: 15px;
}

.progress-bar {
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    margin-bottom: 20px;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-red), #ff6b6b);
    border-radius: 2px;
    transition: width 0.4s ease;
    width: 0%;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.step-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex: 1;
}

.step-dot::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    top: 15px;
    left: -50%;
    z-index: 0;
}

.step-dot:first-child::before {
    display: none;
}

.step-dot.completed::before {
    background: var(--accent-red);
}

.step-number {
    width: 32px;
    height: 32px;
    background: #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}

.step-dot.active .step-number,
.step-dot.completed .step-number {
    background: var(--accent-red);
    color: var(--white);
}

.step-dot.completed .step-number::after {
    content: '✓';
    font-size: 14px;
}

.step-dot.completed .step-number span {
    display: none;
}

.step-label {
    font-size: 11px;
    color: var(--text-gray);
    font-weight: 500;
    text-align: center;
}

.step-dot.active .step-label {
    color: var(--primary-dark);
}

.step-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-gray);
}

.step-timer i {
    color: var(--accent-red);
}

/* Form Steps */
.stepper-form {
    padding: 40px;
}

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

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

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

.step-header {
    text-align: center;
    margin-bottom: 35px;
}

.step-header h2 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.step-header p {
    color: var(--text-gray);
    font-size: 15px;
}

/* Form Layout */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: var(--primary-dark);
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(30, 55, 108, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #c62828;
    background: #ffebee;
}

.field-help {
    display: block;
    font-size: 12px;
    color: var(--text-gray);
    margin-top: 6px;
}

/* Checkbox Groups */
.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--accent-red);
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
}

.consent-group {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

/* Radio Card Groups */
.radio-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.radio-card {
    cursor: pointer;
}

.radio-card input {
    display: none;
}

.radio-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.radio-content i {
    font-size: 28px;
    color: var(--text-gray);
    margin-bottom: 12px;
    transition: all 0.3s;
}

.radio-content strong {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.radio-content span {
    font-size: 12px;
    color: var(--text-gray);
}

.radio-card input:checked + .radio-content {
    border-color: var(--accent-red);
    background: rgba(223, 41, 38, 0.05);
}

.radio-card input:checked + .radio-content i {
    color: var(--accent-red);
}

/* Income Options */
.income-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.income-card {
    cursor: pointer;
}

.income-card input {
    display: none;
}

.income-card span {
    display: block;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.income-card input:checked + span {
    border-color: var(--accent-red);
    background: var(--accent-red);
    color: var(--white);
}

/* Purpose Cards */
.purpose-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.purpose-card {
    cursor: pointer;
}

.purpose-card input {
    display: none;
}

.purpose-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 35px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s;
}

.purpose-content i {
    font-size: 36px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.purpose-content strong {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.purpose-content span {
    font-size: 13px;
    color: var(--text-gray);
}

.purpose-card input:checked + .purpose-content {
    border-color: var(--accent-red);
    background: rgba(223, 41, 38, 0.05);
}

.purpose-card input:checked + .purpose-content i {
    color: var(--accent-red);
}

/* Estimated Qualification */
.estimated-qualification {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    display: none;
}

.est-icon {
    width: 60px;
    height: 60px;
    background: #2e7d32;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
}

.est-content {
    flex: 1;
}

.est-label {
    display: block;
    font-size: 13px;
    color: #2e7d32;
    margin-bottom: 5px;
}

.est-amount {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #2e7d32;
}

.est-note {
    display: block;
    font-size: 12px;
    color: #555;
    margin-top: 5px;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.btn-prev,
.btn-next {
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-prev {
    background: transparent;
    border: 2px solid #e0e0e0;
    color: var(--text-gray);
}

.btn-prev:hover {
    border-color: var(--primary-dark);
    color: var(--primary-dark);
}

.btn-next {
    background: var(--accent-red);
    border: none;
    color: var(--white);
    margin-left: auto;
}

.btn-next:hover {
    background: #c4211e;
    transform: translateX(3px);
}

.btn-submit-final {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-submit-final:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 167, 69, 0.3);
}

.submit-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 20px;
}

.submit-note i {
    color: #28a745;
}

/* Review Section */
.review-section {
    margin-bottom: 30px;
}

.review-group {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.review-group h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-group h4 i {
    color: var(--accent-red);
}

.review-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.review-item:last-child {
    border-bottom: none;
}

.review-label {
    width: 140px;
    font-size: 13px;
    color: var(--text-gray);
}

.review-value {
    flex: 1;
    font-weight: 500;
    color: var(--primary-dark);
}

.edit-btn {
    background: none;
    border: none;
    color: var(--accent-red);
    font-size: 13px;
    cursor: pointer;
    text-decoration: underline;
}

/* Success Message */
.success-message-full {
    padding: 50px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--white);
    font-size: 48px;
}

.success-message-full h2 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.success-message-full > p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.success-details {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.success-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
}

.success-item i {
    width: 40px;
    height: 40px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.next-steps {
    margin-bottom: 30px;
}

.next-steps h3 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.next-step-items {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.next-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.success-cta {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.btn-call-now {
    background: var(--primary-dark);
    color: var(--white);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.btn-back-home {
    background: var(--bg-light);
    color: var(--primary-dark);
    padding: 16px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s;
}

.btn-call-now:hover,
.btn-back-home:hover {
    transform: translateY(-2px);
}

.referral-box {
    font-size: 14px;
    color: var(--text-gray);
}

.referral-box a {
    color: var(--accent-red);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .stepper-container {
        grid-template-columns: 1fr;
    }
    
    .stepper-benefits {
        position: static;
        order: 2;
    }
    
    .stepper-form-wrapper {
        order: 1;
    }
    
    .benefits-card {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stepper-form {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        grid-template-columns: 1fr;
    }
    
    .income-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .purpose-cards {
        grid-template-columns: 1fr;
    }
    
    .step-indicators .step-label {
        display: none;
    }
    
    .step-header h2 {
        font-size: 22px;
    }
    
    .review-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .review-label {
        width: auto;
    }
    
    .estimated-qualification {
        flex-direction: column;
        text-align: center;
    }
    
    .success-message-full {
        padding: 30px 20px;
    }
    
    .next-step-items {
        flex-direction: column;
        align-items: flex-start;
        max-width: 280px;
        margin: 0 auto;
    }
}
