/* New CSS styles to add to style.css */

/* Progress Bar */
.progress-container {
    max-width: 600px;
    margin: 0 auto 20px;
}

.progress-bar {
    height: 5px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 0;
    background-color: #ff6600;
    border-radius: 5px;
    transition: width 0.3s;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
}

.progress-step {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.progress-step.active {
    color: white;
    font-weight: bold;
}

/* Sell House Fast Section */
.sell-house-fast {
    padding: 60px 0;
    background-color: white;
}

.sell-fast-content {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.sell-fast-text {
    flex: 2;
    min-width: 300px;
}

.sell-fast-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.sell-fast-text h3 {
    font-size: 1.4rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.sell-fast-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.sell-fast-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.badge {
    background-color: #f0f7ff;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    flex: 1;
    min-width: 120px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.badge-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.9rem;
    color: #555;
}

.sell-fast-cta {
    flex: 1;
    min-width: 300px;
}

.cta-card {
    background-color: #f8fafc;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.mini-form {
    margin: 20px 0;
}

.mini-form input {
    width: 100%;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.mini-form button {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mini-form button:hover {
    background-color: #1d4ed8;
}

.mini-trust {
    font-size: 0.8rem;
    color: #64748b;
    text-align: center;
}

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.stats-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
}

/* Locations Section */
.locations-we-serve {
    padding: 60px 0;
    background-color: white;
}

.locations-we-serve h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
}

.locations-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.location-item {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

.location-item:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
    color: white;
}

.view-all-locations {
    text-align: center;
    margin-top: 20px;
}

.view-all-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.view-all-button:hover {
    background-color: #1d4ed8;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #f5f7fa;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: #f9f9f9;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--secondary-color);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-house.webp');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

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

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.final-form {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.guarantee-icon {
    width: 24px;
    height: 24px;
    background-color: #4ade80;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Structured Data and Schema */
.schema-data {
    display: none;
}

/* Mobile Adjustments for New Sections */
@media (max-width: 768px) {
    .sell-fast-content, 
    .stats-container {
        flex-direction: column;
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .sell-fast-badges {
        justify-content: center;
    }
    
    .badge {
        min-width: 100px;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
    
    .final-cta p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sell-fast-badges {
        flex-direction: column;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .progress-steps {
        font-size: 0.7rem;
    }
    
    .cta-card {
        padding: 15px;
    }
    
    .cta-card h3 {
        font-size: 1.3rem;
    }
}