
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0;
}

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

.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(13, 110, 253, 0.85) 0%, rgba(220, 53, 69, 0.75) 100%);
    z-index: -1;
}

.hero-content {
    color: white;
    text-align: center;
    max-width: 100%;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

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

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.hero-primary-btn {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    color: white;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(40, 167, 69, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(40, 167, 69, 0.4);
    color: white;
}

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

.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-icon {
    font-size: 1.8rem;
    color: #20c997;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 90vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        gap: 2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-features {
        gap: 1.5rem;
    }
    
    .feature-icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
        padding: 10px;
    }
}

/* Block 2 */
.testimonials-showcase {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
            overflow: hidden;
        }

        .testimonials-content {
            padding-right: 2rem;
        }

        .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: #2d3748;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .section-description {
            font-size: 1.1rem;
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 0;
        }

        .testimonials-grid {
            margin-bottom: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .testimonial-avatar {
            margin-right: 1rem;
        }

        .avatar-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #667eea;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.25rem;
        }

        .testimonial-role {
            color: #718096;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 0.5rem;
        }

        .testimonial-rating {
            color: #f6ad55;
        }

        .testimonial-text {
            color: #4a5568;
            line-height: 1.6;
            font-size: 1rem;
            margin-bottom: 0;
            font-style: italic;
        }

        .testimonials-stats {
            display: flex;
            gap: 2rem;
            padding-top: 2rem;
            border-top: 2px solid #e2e8f0;
        }

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

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: #667eea;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            color: #718096;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .testimonials-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .visual-showcase {
            position: relative;
            width: 100%;
            max-width: 500px;
        }

        .showcase-image {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
        }

        .showcase-image:hover {
            transform: scale(1.02);
        }

        .floating-review {
            position: absolute;
            top: -20px;
            right: -30px;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            max-width: 200px;
            z-index: 10;
        }

        .review-stars {
            color: #f6ad55;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .review-quote {
            font-size: 0.9rem;
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

        .review-author {
            font-size: 0.8rem;
            color: #718096;
        }

        .floating-badge {
            position: absolute;
            bottom: -20px;
            left: -30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1rem 1.5rem;
            border-radius: 15px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .badge-icon {
            font-size: 1.5rem;
        }

        .badge-title {
            font-size: 0.9rem;
            font-weight: 600;
        }

        .badge-subtitle {
            font-size: 0.75rem;
            opacity: 0.9;
        }

        @media (max-width: 991px) {
            .testimonials-content {
                padding-right: 0;
                margin-bottom: 3rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .testimonials-stats {
                justify-content: center;
                gap: 3rem;
            }

            .floating-review,
            .floating-badge {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .testimonials-showcase {
                padding: 60px 0;
            }

            .testimonials-stats {
                flex-direction: column;
                gap: 1.5rem;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .section-title {
                font-size: 1.8rem;
            }
        }

/* Block 3 */
.features-benefits {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    position: relative;
    overflow: hidden;
}

.features-benefits::before {
    content: '';
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -200px;
    z-index: 1;
}

.features-visual {
    position: relative;
    z-index: 2;
}

.features-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.features-main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    transition: transform 0.6s ease;
}

.features-main-image:hover {
    transform: translateY(-8px);
}

.feature-highlight-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 20px;
    padding: 24px;
    color: white;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
    position: relative;
    top: -40px;
    left: 30px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 16px;
}

.highlight-icon {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.highlight-stat {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 4px;
}

.highlight-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

.feature-badge {
    background: white;
    border-radius: 50px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: #1f2937;
    font-weight: 600;
    font-size: 14px;
    width: fit-content;
    margin-top: -20px;
    margin-left: auto;
    margin-right: 30px;
}

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

.features-content {
    position: relative;
    z-index: 2;
    padding-left: 40px;
}

.content-header {
    margin-bottom: 50px;
}

.section-badge {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 50px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon-wrapper {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.25);
    transition: transform 0.3s ease;
}

.feature-item:hover .feature-icon-wrapper {
    transform: scale(1.1);
}

.feature-icon {
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.features-cta {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.cta-content {
    text-align: center;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

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

.cta-primary-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
    color: white;
}

.cta-secondary-btn {
    background: transparent;
    color: #6366f1;
    border: 2px solid #6366f1;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-secondary-btn:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .features-content {
        padding-left: 0;
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .features-grid {
        gap: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
}

@media (max-width: 767.98px) {
    .features-benefits {
        padding: 80px 0;
    }
    
    .feature-highlight-card {
        position: static;
        margin: 20px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-cta {
        padding: 30px 20px;
    }
}

/* Block 4 */
.planning-process-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f3f8ff 100%);
}

.process-header-section {
    margin-bottom: 80px;
}

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

.process-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 24px;
}

.process-intro-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 16px;
}

.process-secondary-text {
    font-size: 1rem;
    color: #7a8a99;
    line-height: 1.6;
}

.header-visual-wrapper {
    position: relative;
}

.header-process-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.process-stats-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-row {
    display: flex;
    gap: 20px;
}

.stat-item-small {
    text-align: center;
}

.stat-number-small {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}

.stat-label-small {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
}

.process-steps-container {
    margin-bottom: 80px;
}

.step-item {
    margin-bottom: 80px;
    padding: 40px 0;
}

.step-item:nth-child(even) {
    background: rgba(102, 126, 234, 0.03);
    border-radius: 25px;
    padding: 60px 40px;
    margin-left: -40px;
    margin-right: -40px;
}

.step-visual {
    position: relative;
}

.step-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-number-badge {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.step-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 18px;
    margin-bottom: 24px;
}

.step-icon {
    font-size: 1.8rem;
    color: white;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.step-description {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 30px;
}

.step-features {
    margin-bottom: 25px;
}

.feature-check-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature-check-icon {
    color: #28a745;
    margin-right: 12px;
    font-size: 1.1rem;
}

.feature-check-item span {
    color: #495057;
    font-weight: 500;
}

.step-tip {
    display: flex;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.tip-icon {
    color: #e17055;
    margin-right: 12px;
    margin-top: 2px;
}

.tip-text {
    color: #2d3436;
    font-weight: 500;
    font-size: 0.95rem;
}

.process-success-metrics {
    background: white;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

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

.metrics-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.metrics-description {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.metric-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.metric-icon-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    margin-bottom: 20px;
}

.metric-icon {
    font-size: 2rem;
    color: white;
}

.metric-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 600;
}

.process-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px;
    border-radius: 25px;
    text-align: center;
}

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

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

.cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 40px;
}

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

.process-cta-primary {
    background: white;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.process-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: #5a6fd8;
}

.process-cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border: 2px solid white;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.process-cta-secondary:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .planning-process-guide {
        padding: 60px 0;
    }
    
    .process-main-title {
        font-size: 2rem;
    }
    
    .step-item:nth-child(even) {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .process-cta-primary,
    .process-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

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

.contact-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>') repeat;
  opacity: 0.4;
}

.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.2), 0 16px 48px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
}

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

.header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
}

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

.form-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.form-subtitle {
  font-size: 20px;
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b5563;
  font-weight: 600;
  font-size: 14px;
}

.trust-icon {
  color: #10b981;
  font-size: 16px;
}

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

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 50px;
}

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.label-icon {
  font-size: 14px;
  color: #6b7280;
}

.form-input {
  width: 100%;
  padding: 20px 24px;
  font-size: 18px;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #ffffff;
  color: #1f2937;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.form-input::placeholder {
  color: #9ca3af;
}

.input-focus-ring {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-input:focus + .input-focus-ring {
  opacity: 0.1;
}

.form-benefits {
  background: #f8fafc;
  padding: 40px;
  border-radius: 24px;
  margin-bottom: 40px;
  border: 1px solid #e2e8f0;
}

.benefits-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 30px;
  text-align: center;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

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

.benefit-icon {
  color: #10b981;
  font-size: 20px;
  margin-top: 4px;
  flex-shrink: 0;
}

.benefit-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.benefit-description {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

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

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 20px;
  padding: 24px 48px;
  font-size: 20px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(102, 126, 234, 0.4);
  min-width: 320px;
}

.submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.5);
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  z-index: 2;
}

.btn-icon {
  font-size: 18px;
}

.btn-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.8s ease;
}

.submit-btn:hover .btn-shimmer {
  left: 100%;
}

.form-disclaimer {
  margin-top: 20px;
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-icon {
  color: #10b981;
  flex-shrink: 0;
}

.social-proof {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.proof-avatars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: -8px;
  margin-bottom: 20px;
}

.proof-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-left: -8px;
}

.proof-count {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 16px;
  border-radius: 24px;
  margin-left: 8px;
}

.proof-text {
  font-size: 16px;
  color: #4b5563;
  margin: 0;
}

.testimonial-highlight {
  background: white;
  padding: 40px;
  border-radius: 24px;
  margin-top: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e5e7eb;
}

.testimonial-quote {
  text-align: center;
}

.quote-icon {
  font-size: 24px;
  color: #667eea;
  margin-bottom: 20px;
}

.quote-text {
  font-size: 20px;
  color: #1f2937;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.author-image {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
}

.author-info {
  text-align: left;
}

.author-name {
  display: block;
  font-weight: 700;
  color: #1f2937;
  font-size: 16px;
}

.author-title {
  display: block;
  color: #6b7280;
  font-size: 14px;
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 40px 30px;
    border-radius: 24px;
  }
  
  .form-title {
    font-size: 32px;
  }
  
  .form-subtitle {
    font-size: 18px;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .submit-btn {
    min-width: 100%;
    padding: 20px 32px;
    font-size: 18px;
  }
  
  .quote-author {
    flex-direction: column;
    text-align: center;
  }
  
  .author-info {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .contact-form-section {
    padding: 80px 0;
  }
  
  .form-wrapper {
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 28px;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
}
