
/* 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-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-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(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8f9ff;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.4;
}

.hero-description {
    font-size: 1.2rem;
    color: #e8ecff;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-description-secondary {
    font-size: 1.1rem;
    color: #dde4ff;
    margin-bottom: 3rem;
    line-height: 1.6;
    opacity: 0.85;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-cta {
    margin-bottom: 4rem;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    border: none;
    color: #ffffff;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.6);
    color: #ffffff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.hero-stats {
    margin-top: 2rem;
}

.stat-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.stat-icon {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: #e8ecff;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .hero-btn-primary,
    .hero-btn-secondary {
        display: block;
        text-align: center;
        margin: 1rem 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 40px 0;
    }
}

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

.services-overview::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="%23e0e7ff" opacity="0.3"/><circle cx="80" cy="40" r="1" fill="%23c7d2fe" opacity="0.4"/><circle cx="40" cy="80" r="1" fill="%23a5b4fc" opacity="0.2"/></svg>');
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.services-content {
    padding-right: 2rem;
    z-index: 1;
}

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

.services-intro {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: #6366f1;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 1.5rem;
    color: #ffffff;
}

.service-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.service-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.services-btn {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.services-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    color: #ffffff;
}

.services-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-image-wrapper {
    position: relative;
    max-width: 100%;
}

.services-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-stats-overlay {
    display: flex;
    gap: 1rem;
    margin-top: -40px;
    z-index: 10;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-card {
    background: #ffffff;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 120px;
    border: 1px solid #e2e8f0;
}

.stat-card i {
    font-size: 1.5rem;
    color: #6366f1;
    margin-bottom: 0.5rem;
}

.stat-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.stat-card p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

@media (max-width: 991px) {
    .services-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
    
    .services-title {
        font-size: 2rem;
    }
    
    .services-stats-overlay {
        margin-top: 2rem;
        position: static;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .services-stats-overlay {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 200px;
    }
}

/* Block 3 */
.testimonials-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-showcase::before {
    content: '';
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(80, 200, 120, 0.05));
    border-radius: 50%;
    top: 10%;
    right: -100px;
    z-index: 1;
}

.testimonials-showcase::after {
    content: '';
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05), rgba(78, 84, 200, 0.05));
    border-radius: 50%;
    bottom: 15%;
    left: -80px;
    z-index: 1;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #4a90e2 50%, #50c878 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 60px;
    font-weight: 400;
    line-height: 1.6;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid #f1f5f9;
}

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 4px solid #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.client-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.client-position {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 500;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .fas {
    color: #fbbf24;
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 30px;
    font-weight: 400;
    font-style: italic;
}

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

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

.metric-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #4a90e2;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
}

.testimonials-summary {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 60px 50px;
    margin-top: 80px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.summary-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
}

.summary-text {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 50px;
}

.summary-stats {
    margin-bottom: 50px;
}

.summary-stat {
    text-align: center;
    padding: 25px 15px;
}

.summary-stat .stat-icon {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
    font-weight: 600;
}

.testimonials-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.testimonials-btn-primary {
    background: linear-gradient(135deg, #4a90e2 0%, #50c878 100%);
    border: none;
    color: white;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.testimonials-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
    color: white;
}

.testimonials-btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 16px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonials-btn-secondary:hover {
    background: #f8fafc;
    border-color: #4a90e2;
    color: #4a90e2;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .testimonials-subtitle {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 30px 25px;
    }
    
    .client-photo {
        width: 60px;
        height: 60px;
        margin-right: 15px;
    }
    
    .testimonial-metrics {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonials-summary {
        padding: 40px 30px;
        margin-top: 60px;
    }
    
    .summary-title {
        font-size: 2.2rem;
    }
    
    .testimonials-cta {
        flex-direction: column;
    }
    
    .testimonials-btn-primary,
    .testimonials-btn-secondary {
        width: 100%;
        text-align: center;
        margin: 0;
    }
}

/* Block 4 */
.process-workflow {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    position: relative;
}

.process-workflow::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e0e7ff" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.process-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.process-step {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 40px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 2px solid #bae6fd;
}

.step-icon i {
    font-size: 2rem;
    color: #0284c7;
}

.step-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.step-description {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.step-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.step-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.step-list i {
    color: #10b981;
    margin-right: 12px;
    font-size: 0.9rem;
    min-width: 16px;
}

.step-timeline {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 12px 20px;
    border-radius: 12px;
    border: 1px solid #fed7aa;
}

.step-timeline i {
    color: #d97706;
    margin-right: 10px;
}

.step-timeline span {
    font-weight: 600;
    color: #92400e;
    font-size: 0.95rem;
}

.process-summary {
    background: linear-gradient(135deg, #1e293b, #334155);
    border-radius: 32px;
    padding: 4rem;
    color: white;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.process-summary::before {
    content: '';
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.summary-content {
    position: relative;
    z-index: 2;
}

.summary-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-text {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.summary-metrics {
    margin-bottom: 2.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-item i {
    font-size: 1.5rem;
    color: #60a5fa;
    margin-right: 15px;
}

.metric-content {
    display: flex;
    flex-direction: column;
}

.metric-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 4px;
}

.process-btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border: none;
    color: white;
    padding: 16px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.process-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

.process-btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 14px 30px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

.process-visual {
    position: relative;
}

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

.process-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.overlay-stat {
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    min-width: 120px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-stat i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-bottom: 8px;
}

.overlay-stat h5 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    line-height: 1;
}

.overlay-stat p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 4px 0 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .process-title {
        font-size: 2.5rem;
    }
    
    .process-step {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .summary-title {
        font-size: 2rem;
    }
    
    .process-summary {
        padding: 2.5rem;
    }
    
    .process-overlay {
        position: relative;
        top: auto;
        right: auto;
        flex-direction: row;
        justify-content: space-around;
        margin-top: 20px;
    }
    
    .overlay-stat {
        min-width: auto;
        flex: 1;
        margin: 0 5px;
    }
    
    .process-btn-secondary {
        margin-top: 15px !important;
        margin-left: 0 !important;
    }
}

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

.order-form-section::before {
    content: '';
    background: radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(72, 187, 120, 0.1) 0%, transparent 50%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.order-form-section .container {
    position: relative;
    z-index: 2;
}

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

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.form-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: #475569;
    font-weight: 500;
}

.benefit-item i {
    color: #10b981;
    font-size: 1.1rem;
}

.form-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08),
                0 0 0 1px rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 40px;
}

.contact-form {
    width: 100%;
}

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

.input-group {
    position: relative;
}

.input-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    letter-spacing: 0.025em;
}

.form-input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

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

.input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 1rem;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input:focus + .input-icon {
    color: #3b82f6;
}

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

.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.5);
}

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

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

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

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

.security-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

.security-notice i {
    color: #10b981;
    font-size: 1rem;
}

.form-testimonial {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(59, 130, 246, 0.2);
}

.testimonial-text p {
    font-size: 1rem;
    color: #374151;
    margin-bottom: 8px;
    font-style: italic;
    line-height: 1.5;
}

.testimonial-author strong {
    color: #1f2937;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .order-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 30px 20px;
    }
    
    .form-benefits {
        align-items: flex-start;
    }
    
    .testimonial-content {
        flex-direction: column;
        text-align: center;
    }
    
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .form-subtitle {
        font-size: 1.125rem;
    }
    
    .form-container {
        margin: 0 -15px;
        border-radius: 16px;
    }
}
