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

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

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4));
    z-index: -1;
}

.hero-content {
    width: 100%;
    padding: 80px 0;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #f8f9fa;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.2rem;
    color: #e9ecef;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-secondary-text {
    font-size: 1.1rem;
    color: #dee2e6;
    margin-bottom: 2.5rem;
    line-height: 1.5;
    font-weight: 300;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
    transition: all 0.3s ease;
    margin: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
    background: linear-gradient(135deg, #0056b3, #004085);
    color: white;
    text-decoration: none;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin: 0.5rem;
    text-decoration: none;
    display: inline-block;
}

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

.hero-features {
    margin-top: 4rem;
}

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

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

.feature-icon {
    font-size: 3rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 1rem;
    color: #e9ecef;
    margin: 0;
    line-height: 1.5;
}

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

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

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

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

.section-subtitle {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.advantage-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

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

.advantage-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(0,123,255,0.3);
}

.advantage-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.advantage-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: #495057;
}

.feature-list i {
  color: #28a745;
  margin-right: 0.75rem;
  font-size: 0.875rem;
  min-width: 16px;
}

.advantage-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.advantage-content h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.advantage-content p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1rem;
}

.stats-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1rem 0;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: #007bff;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cta-section {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin-top: 4rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.cta-section h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.125rem;
  color: #6c757d;
  line-height: 1.6;
}

.cta-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  border: none;
  box-shadow: 0 4px 15px rgba(0,123,255,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.4);
}

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

.btn-outline-primary:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,123,255,0.3);
}

@media (max-width: 768px) {
  .service-advantages {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .advantage-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  
  .advantage-content h3 {
    font-size: 1.75rem;
  }
  
  .cta-section {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  
  .cta-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .cta-buttons .btn:last-child {
    margin-bottom: 0;
  }
}

/* Block 3 */
.customer-testimonials {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 50%, #f0f8ff 100%);
      position: relative;
      overflow: hidden;
    }
    
    .customer-testimonials::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="25" cy="25" r="1" fill="%23007bff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%2328a745" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
      pointer-events: none;
    }
    
    .testimonials-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    
    .testimonials-subtitle {
      font-size: 1.2rem;
      color: #6c757d;
      line-height: 1.6;
      font-weight: 400;
    }
    
    .testimonial-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      box-shadow: 0 8px 30px rgba(0, 123, 255, 0.08);
      transition: all 0.4s ease;
      border: 1px solid #f0f0f0;
      position: relative;
      overflow: hidden;
    }
    
    .testimonial-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, #007bff, #28a745);
      transform: translateX(-4px);
      transition: transform 0.3s ease;
    }
    
    .testimonial-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 123, 255, 0.15);
    }
    
    .testimonial-card:hover::before {
      transform: translateX(0);
    }
    
    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 1.5rem;
      gap: 1rem;
    }
    
    .customer-image {
      flex-shrink: 0;
    }
    
    .customer-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #e3f2fd;
      transition: transform 0.3s ease;
    }
    
    .testimonial-card:hover .customer-avatar {
      transform: scale(1.05);
    }
    
    .customer-info {
      flex: 1;
    }
    
    .customer-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 0.2rem;
    }
    
    .customer-location {
      font-size: 0.9rem;
      color: #6c757d;
      margin-bottom: 0.5rem;
    }
    
    .star-rating {
      color: #ffc107;
      font-size: 0.9rem;
    }
    
    .star-rating i {
      margin-right: 2px;
    }
    
    .testimonial-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: #495057;
      margin-bottom: 1.5rem;
      font-style: italic;
    }
    
    .service-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, #007bff, #0056b3);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 25px;
      font-size: 0.85rem;
      font-weight: 600;
    }
    
    .service-badge i {
      font-size: 0.9rem;
    }
    
    .testimonial-stats {
      background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
      border-radius: 20px;
      padding: 3rem 2rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #e9ecef;
    }
    
    .stat-box {
      text-align: center;
      padding: 1.5rem 1rem;
    }
    
    .stat-icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: linear-gradient(135deg, #007bff, #0056b3);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    }
    
    .stat-icon i {
      font-size: 1.5rem;
      color: white;
    }
    
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1a1a1a;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    
    .stat-label {
      font-size: 1rem;
      color: #6c757d;
      font-weight: 500;
    }
    
    .testimonial-cta {
      background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
      color: white;
      padding: 3rem 2rem;
      border-radius: 25px;
      box-shadow: 0 15px 40px rgba(0, 123, 255, 0.2);
    }
    
    .cta-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
    }
    
    .cta-description {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      opacity: 0.95;
      line-height: 1.6;
    }
    
    .cta-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn-testimonial-primary,
    .btn-testimonial-secondary {
      padding: 0.875rem 2rem;
      font-weight: 600;
      font-size: 1rem;
      border-radius: 50px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 200px;
    }
    
    .btn-testimonial-primary {
      background: white;
      color: #007bff;
      border: 2px solid white;
    }
    
    .btn-testimonial-primary:hover {
      background: transparent;
      color: white;
      transform: translateY(-2px);
    }
    
    .btn-testimonial-secondary {
      background: transparent;
      color: white;
      border: 2px solid white;
    }
    
    .btn-testimonial-secondary:hover {
      background: white;
      color: #007bff;
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .customer-testimonials {
        padding: 60px 0;
      }
      
      .testimonials-title {
        font-size: 2.2rem;
      }
      
      .testimonials-subtitle {
        font-size: 1.1rem;
      }
      
      .testimonial-card {
        padding: 1.5rem;
      }
      
      .testimonial-header {
        flex-direction: column;
        text-align: center;
      }
      
      .testimonial-stats {
        padding: 2rem 1rem;
      }
      
      .stat-number {
        font-size: 2rem;
      }
      
      .testimonial-cta {
        padding: 2rem 1.5rem;
      }
      
      .cta-title {
        font-size: 1.6rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn-testimonial-primary,
      .btn-testimonial-secondary {
        width: 100%;
        max-width: 280px;
      }
    }

/* Block 4 */
.repair-process {
      padding: 80px 0;
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
      position: relative;
      overflow: hidden;
    }

    .repair-process::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: 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="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.3;
      z-index: 1;
    }

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

    .process-title {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 1rem;
      position: relative;
    }

    .process-title::after {
      content: '';
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6);
      display: block;
      margin: 1rem auto;
      border-radius: 2px;
    }

    .process-subtitle {
      font-size: 1.2rem;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .process-step {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      height: 100%;
      box-shadow: 0 10px 30px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
      position: relative;
      border: 1px solid #e2e8f0;
    }

    .process-step:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

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

    .step-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #eff6ff, #dbeafe);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      border: 2px solid #bfdbfe;
    }

    .step-icon i {
      font-size: 2rem;
      color: #2563eb;
    }

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

    .step-description {
      color: #475569;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

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

    .feature-tag {
      background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
      color: #475569;
      padding: 0.4rem 0.8rem;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 600;
      border: 1px solid #cbd5e1;
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }

    .feature-tag i {
      font-size: 0.7rem;
      color: #3b82f6;
    }

    .process-content {
      padding-left: 2rem;
    }

    .content-title {
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1rem;
    }

    .content-description {
      color: #475569;
      font-size: 1.1rem;
      line-height: 1.7;
    }

    .process-benefits {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .benefit-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .benefit-item i {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .benefit-content h4 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 0.5rem;
    }

    .benefit-content p {
      color: #64748b;
      margin: 0;
      font-size: 0.95rem;
    }

    .process-image-container {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .process-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(45deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.8));
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .process-image-container:hover .image-overlay {
      opacity: 1;
    }

    .overlay-content {
      text-align: center;
      color: white;
    }

    .time-indicator {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .time-indicator i {
      font-size: 1.5rem;
    }

    .quality-assurance {
      background: white;
      border-radius: 20px;
      padding: 3rem;
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
      border: 1px solid #e2e8f0;
    }

    .assurance-title {
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 1rem;
    }

    .assurance-text {
      color: #475569;
      font-size: 1.1rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }

    .feature-cell {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      padding: 1rem;
      background: linear-gradient(135deg, #f8fafc, #f1f5f9);
      border-radius: 12px;
      border: 1px solid #e2e8f0;
    }

    .feature-cell i {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
    }

    .feature-cell span {
      font-weight: 600;
      color: #1e293b;
    }

    .cta-card {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      border-radius: 20px;
      padding: 2rem;
      text-align: center;
      color: white;
      box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
    }

    .cta-content h4 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .cta-content p {
      margin-bottom: 1.5rem;
      opacity: 0.9;
    }

    .btn-process-cta {
      background: white;
      color: #3b82f6;
      border: none;
      padding: 0.8rem 2rem;
      border-radius: 12px;
      font-weight: 700;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .btn-process-cta:hover {
      background: #f8fafc;
      transform: translateY(-2px);
      color: #1d4ed8;
    }

    @media (max-width: 768px) {
      .repair-process {
        padding: 60px 0;
      }

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

      .process-content {
        padding-left: 0;
        margin-top: 2rem;
      }

      .feature-grid {
        grid-template-columns: 1fr;
      }

      .quality-assurance {
        padding: 2rem;
      }
    }

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

.order-form-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 60px 50px;
  border: 1px solid rgba(226, 232, 240, 0.8);
}

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

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

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

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

.indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #059669;
  font-weight: 600;
  font-size: 0.95rem;
}

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

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

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

.form-group {
  position: relative;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 12px;
  font-size: 1rem;
}

.form-label i {
  color: #3b82f6;
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #ffffff;
  color: #1f2937;
}

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

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

.input-helper {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 8px;
}

.form-features {
  margin-bottom: 40px;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  height: 100%;
  transition: transform 0.2s ease;
}

.feature-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.feature-badge i {
  color: #3b82f6;
  font-size: 1.4rem;
}

.guarantee-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #3b82f6;
  color: white;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
}

.feature-info {
  flex: 1;
}

.feature-title {
  font-weight: 600;
  color: #374151;
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.feature-desc {
  font-size: 0.85rem;
  color: #6b7280;
}

.submit-section {
  text-align: center;
}

.submit-button {
  position: relative;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  border: none;
  padding: 18px 48px;
  border-radius: 16px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  margin-bottom: 24px;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

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

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

.button-shine {
  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 ease;
}

.submit-button:hover .button-shine {
  left: 100%;
}

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

.privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

.privacy-note i {
  color: #10b981;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: #374151;
}

.response-time i {
  color: #f59e0b;
}

.alternative-contact {
  margin-top: 40px;
}

.divider {
  text-align: center;
  margin: 30px 0;
  position: relative;
  color: #9ca3af;
  font-weight: 500;
}

.divider::before,
.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 45%;
  height: 1px;
  background: #e5e7eb;
}

.divider::before {
  left: 0;
}

.divider::after {
  right: 0;
}

.divider span {
  background: #ffffff;
  padding: 0 20px;
}

.quick-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-option {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f0f9ff;
  color: #3b82f6;
  font-size: 1.5rem;
}

.contact-option:first-child .contact-icon {
  background: #ecfdf5;
  color: #10b981;
}

.contact-details {
  flex: 1;
}

.contact-title {
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-value a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-value a:hover {
  text-decoration: underline;
}

.contact-note {
  font-size: 0.825rem;
  color: #6b7280;
  margin-top: 4px;
}

.success-stories {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #e5e7eb;
}

.story-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.story-image {
  height: 180px;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.story-content {
  padding: 24px;
}

.story-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 12px;
}

.story-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 16px;
}

.story-author {
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 500;
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 40px 30px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .trust-indicators {
    gap: 20px;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .quick-contact {
    grid-template-columns: 1fr;
  }
  
  .submit-button {
    width: 100%;
    padding: 16px 32px;
  }
  
  .submit-info {
    text-align: center;
  }
  
  .response-time {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .order-form-section {
    padding: 40px 0;
  }
  
  .form-wrapper {
    margin: 0 20px;
    padding: 30px 20px;
  }
  
  .form-title {
    font-size: 1.75rem;
  }
  
  .trust-indicators {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
