
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.85) 0%, rgba(49, 151, 149, 0.75) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 60px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.hero-secondary-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 140px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary-btn {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    border: 2px solid transparent;
}

.cta-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
    color: white;
    text-decoration: none;
}

.cta-secondary-btn {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white;
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-secondary-text {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Block 2 */
.services-overview {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 1;
}

.featured-service {
    border-color: #007bff;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.featured-service::before {
    opacity: 1;
}

.popular-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrapper {
    transform: scale(1.1);
}

.service-icon {
    font-size: 32px;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.service-features li i {
    color: #28a745;
    margin-right: 10px;
    font-size: 14px;
}

.process-content {
    padding-right: 30px;
}

.process-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.process-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

.process-steps {
    space-y: 30px;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.step-description {
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

.process-image-wrapper {
    position: relative;
}

.process-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-stats {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.stat-box {
    background: white;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #007bff;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 25px;
    padding: 50px 40px;
    color: white;
    margin-top: 60px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.cta-button {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .process-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .process-title {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 40px 25px;
        text-align: center;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
}

/* Block 3 */
.testimonials-showcase {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.featured-testimonial {
    border: 2px solid #007bff;
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}

.featured-testimonial::before {
    content: "Featured Review";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.client-avatar {
    margin-right: 20px;
}

.avatar-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #007bff;
}

.client-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 5px;
}

.client-title {
    color: #6c757d;
    font-size: 0.9rem;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
}

.rating-stars i {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-stats {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.testimonial-stats .stat-item {
    text-align: center;
}

.testimonial-stats .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.testimonial-stats .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 500;
}

.testimonial-metrics {
    padding-right: 40px;
}

.metrics-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.metrics-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 40px;
}

.metrics-grid {
    display: grid;
    gap: 25px;
}

.metric-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.metric-icon {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
}

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
}

.metric-label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #212529;
    margin: 5px 0;
}

.metric-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

.testimonial-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.testimonial-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.testimonial-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 40px 30px 30px;
    color: white;
}

.overlay-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.overlay-description {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.overlay-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.achievement-badge {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.achievement-badge i {
    color: #ffc107;
}

.testimonial-cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
}

.feature-item i {
    color: #28a745;
    font-size: 18px;
}

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

.cta-primary-btn,
.cta-secondary-btn {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.cta-primary-btn {
    background: white;
    color: #007bff;
    border: 2px solid white;
}

.cta-primary-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.3);
}

.cta-secondary-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.cta-secondary-btn:hover {
    background: rgba(255,255,255,0.3);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .metrics-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .testimonial-metrics {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .featured-testimonial {
        transform: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .testimonials-showcase {
        padding: 60px 0;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .testimonial-cta {
        padding: 40px 25px;
    }
    
    .testimonial-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
    }
}

/* Block 4 */
.market-insights-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafe 0%, #ffffff 100%);
            position: relative;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1d29;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.125rem;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .market-trends-card, .market-forecast-card {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .market-trends-card:hover, .market-forecast-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .trends-header, .forecast-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e2e8f0;
        }

        .trend-icon, .forecast-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.25rem;
        }

        .trend-icon {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .forecast-icon {
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
        }

        .trend-title, .forecast-title {
            font-size: 1.375rem;
            font-weight: 700;
            color: #1a1d29;
            margin: 0;
        }

        .trend-period, .forecast-confidence {
            font-size: 0.875rem;
            color: #64748b;
            display: block;
            margin-top: 0.25rem;
        }

        .key-metrics {
            margin-bottom: 2rem;
        }

        .metric-row {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .metric-item {
            flex: 1;
            background: #f8fafc;
            padding: 1rem;
            border-radius: 12px;
            text-align: center;
        }

        .metric-label {
            display: block;
            font-size: 0.875rem;
            color: #64748b;
            margin-bottom: 0.5rem;
        }

        .metric-value {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1d29;
        }

        .metric-value.positive {
            color: #10b981;
        }

        .analysis-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1a1d29;
            margin-bottom: 0.75rem;
        }

        .analysis-text {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .districts-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 0.75rem;
        }

        .district-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .district-tag {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }

        .prediction-cards {
            space-y: 1rem;
        }

        .prediction-item {
            display: flex;
            align-items: flex-start;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 12px;
            margin-bottom: 1rem;
        }

        .prediction-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .prediction-title {
            font-size: 1rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 0.5rem;
        }

        .prediction-text {
            font-size: 0.875rem;
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 0.5rem;
        }

        .prediction-rating {
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
        }

        .prediction-rating.excellent {
            background: #dcfce7;
            color: #15803d;
        }

        .prediction-rating.good {
            background: #dbeafe;
            color: #1d4ed8;
        }

        .research-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 16px;
        }

        .market-research-image {
            position: relative;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .overlay-stats {
            display: flex;
            gap: 2rem;
        }

        .stat-bubble {
            background: white;
            border-radius: 15px;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .bubble-number {
            display: block;
            font-size: 1.75rem;
            font-weight: 700;
            color: #1a1d29;
        }

        .bubble-label {
            display: block;
            font-size: 0.875rem;
            color: #64748b;
            margin-top: 0.25rem;
        }

        .insights-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #1a1d29;
            margin-bottom: 1rem;
        }

        .insights-description {
            font-size: 1.125rem;
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 2rem;
        }

        .methodology-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.5rem;
        }

        .method-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .method-title {
            font-size: 1.125rem;
            font-weight: 600;
            color: #1a1d29;
            margin-bottom: 0.5rem;
        }

        .method-description {
            color: #64748b;
            line-height: 1.5;
        }

        .opportunity-card {
            background: white;
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 8px 32px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }

        .opportunity-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px rgba(0,0,0,0.1);
        }

        .opportunity-header {
            margin-bottom: 1rem;
        }

        .opportunity-badge {
            padding: 0.375rem 0.75rem;
            border-radius: 15px;
            font-size: 0.75rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .opportunity-badge.emerging {
            background: #fef3c7;
            color: #d97706;
        }

        .opportunity-badge.hot {
            background: #fee2e2;
            color: #dc2626;
        }

        .opportunity-badge.stable {
            background: #dcfce7;
            color: #16a34a;
        }

        .opportunity-badge.premium {
            background: #ede9fe;
            color: #7c3aed;
        }

        .opportunity-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #1a1d29;
        }

        .opportunity-stats {
            text-align: center;
            margin-bottom: 1rem;
            padding: 1rem;
            background: #f8fafc;
            border-radius: 10px;
        }

        .growth-rate {
            display: block;
            font-size: 1.5rem;
            font-weight: 700;
            color: #10b981;
        }

        .growth-label {
            display: block;
            font-size: 0.875rem;
            color: #64748b;
            margin-top: 0.25rem;
        }

        .opportunity-description {
            color: #64748b;
            line-height: 1.5;
            margin-bottom: 1rem;
        }

        .opportunity-features {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: #e0e7ff;
            color: #3730a3;
            padding: 0.25rem 0.75rem;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .market-insights-cta {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            margin-top: 3rem;
        }

        .cta-background {
            position: relative;
            height: 100%;
        }

        .cta-bg-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
        }

        .cta-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(26, 29, 41, 0.85) 0%, rgba(102, 126, 234, 0.8) 100%);
        }

        .cta-content {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            align-items: center;
            padding: 2rem;
        }

        .cta-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.75rem;
        }

        .cta-subtitle {
            font-size: 1.125rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .cta-benefits {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            color: white;
            font-size: 0.95rem;
        }

        .benefit-item i {
            margin-right: 0.75rem;
            color: #10b981;
        }

        .cta-actions {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .cta-primary-btn, .cta-secondary-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            gap: 0.5rem;
        }

        .cta-primary-btn {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .cta-primary-btn:hover {
            background: linear-gradient(135deg, #059669 0%, #047857 100%);
            color: white;
            transform: translateY(-2px);
        }

        .cta-secondary-btn {
            background: rgba(255,255,255,0.15);
            color: white;
            border: 2px solid rgba(255,255,255,0.3);
            backdrop-filter: blur(10px);
        }

        .cta-secondary-btn:hover {
            background: rgba(255,255,255,0.25);
            color: white;
            transform: translateY(-2px);
        }

        .cta-guarantee {
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.8);
            font-size: 0.875rem;
            gap: 0.5rem;
        }

        .cta-guarantee i {
            color: #10b981;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .metric-row {
                flex-direction: column;
                gap: 0.5rem;
            }

            .overlay-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .district-tags {
                justify-content: center;
            }

            .cta-content {
                padding: 1.5rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }

            .cta-actions {
                margin-top: 2rem;
            }
        }

/* Block 5 */
.contact-form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.form-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 
                0 8px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

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

.header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.header-icon i {
    font-size: 32px;
    color: white;
}

.form-title {
    font-size: 38px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.form-subtitle {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
}

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

.form-grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 22px 20px 22px 60px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1), 
                0 4px 12px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
    transform: translateY(-32px) scale(0.85);
    color: #6366f1;
    font-weight: 600;
}

.form-label {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    background: white;
    padding: 0 8px;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.input-icon i {
    font-size: 18px;
    color: #94a3b8;
    transition: color 0.3s ease;
}

.form-input:focus ~ .input-icon i {
    color: #6366f1;
}

.form-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.feature-item i {
    font-size: 16px;
    color: #10b981;
}

.form-actions {
    text-align: center;
}

.submit-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    margin-bottom: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px);
}

.privacy-notice {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    max-width: 400px;
    margin: 0 auto;
}

.privacy-notice a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
}

.privacy-notice a:hover {
    text-decoration: underline;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 20px;
    color: #0ea5e9;
}

.trust-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.trust-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.trust-description {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .form-title {
        font-size: 28px;
    }
    
    .form-features {
        gap: 20px;
    }
    
    .feature-item {
        font-size: 13px;
    }
    
    .trust-indicators {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-form-section {
        padding: 60px 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .form-input {
        padding: 20px 16px 20px 50px;
    }
    
    .form-label {
        left: 50px;
    }
    
    .input-icon {
        left: 16px;
    }
}
