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

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 85vh;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px 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 8px 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);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.hero-additional {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    font-weight: 300;
}

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

.btn-primary-custom {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    transition: all 0.3s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252, #e53935);
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    color: white;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-image-container {
        min-height: 70vh;
    }
    
    .hero-background-image {
        min-height: 70vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-additional {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom {
        width: 80%;
        text-align: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-additional {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}

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

.services-overview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.05) 0%, rgba(147, 51, 234, 0.05) 100%);
    transform: rotate(-15deg);
    z-index: 1;
}

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

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

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

.services-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 0;
    font-weight: 400;
}

.services-grid {
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

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

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

.service-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.service-details p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 0;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-services-detailed {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.btn-services-detailed:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
    color: white;
}

.services-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 5px;
}

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

.services-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
}

.services-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.services-image-container:hover .services-main-image {
    transform: scale(1.05);
}

.services-image-overlay {
    position: absolute;
    top: 30px;
    right: 30px;
}

.experience-badge {
    background: rgba(59, 130, 246, 0.95);
    color: white;
    padding: 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.3);
}

.experience-years {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 5px;
}

.services-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-highlight {
    display: flex;
    align-items: center;
    padding: 18px 24px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.feature-highlight i {
    font-size: 20px;
    color: #3b82f6;
    margin-right: 15px;
    width: 24px;
}

.feature-highlight span {
    font-weight: 600;
    color: #1e293b;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .services-title {
        font-size: 2.2rem;
    }
    
    .services-subtitle {
        font-size: 1.1rem;
    }
    
    .service-item {
        flex-direction: column;
        text-align: center;
    }
    
    .service-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services-stats {
        align-self: stretch;
        justify-content: space-around;
    }
    
    .services-main-image {
        height: 300px;
    }
}

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

    .testimonials-visual {
      padding-right: 40px;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 10px 20px;
      border-radius: 25px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 24px;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

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

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

    .testimonials-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 40px;
    }

    .stat-card {
      background: white;
      padding: 24px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
      border: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    }

    .stat-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 20px;
    }

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

    .stat-number {
      font-size: 1.8rem;
      font-weight: 700;
      color: #1a1a2e;
      line-height: 1;
    }

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

    .testimonials-image-container {
      position: relative;
      margin-top: 30px;
    }

    .testimonials-main-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .testimonials-badge {
      position: absolute;
      top: -15px;
      right: -15px;
      background: linear-gradient(135deg, #ff6b6b 0%, #ffd93d 100%);
      color: #1a1a2e;
      padding: 12px 20px;
      border-radius: 25px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 14px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .testimonials-content {
      padding-left: 40px;
    }

    .testimonials-carousel {
      display: flex;
      flex-direction: column;
      gap: 30px;
      margin-bottom: 40px;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 32px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      border: 1px solid #f0f0f0;
      transition: all 0.3s ease;
    }

    .testimonial-card.featured {
      border: 2px solid #667eea;
      box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
    }

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

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

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

    .client-name {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1a1a2e;
      margin-bottom: 4px;
    }

    .client-details {
      color: #5a6c7d;
      font-size: 0.95rem;
      margin-bottom: 8px;
    }

    .rating-stars {
      color: #ffd93d;
      font-size: 16px;
    }

    .testimonial-content p {
      font-size: 1rem;
      line-height: 1.7;
      color: #4a4a68;
      margin-bottom: 20px;
      font-style: italic;
    }

    .testimonial-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid #f0f0f0;
    }

    .testimonial-date {
      color: #5a6c7d;
      font-size: 0.9rem;
    }

    .testimonial-verified {
      color: #28a745;
      font-size: 0.9rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .testimonials-actions {
      display: flex;
      gap: 20px;
      margin-bottom: 40px;
    }

    .btn-testimonials-primary {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      padding: 16px 32px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
      transition: all 0.3s ease;
    }

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

    .btn-testimonials-secondary {
      background: white;
      color: #667eea;
      padding: 16px 32px;
      border: 2px solid #667eea;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.3s ease;
    }

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

    .trust-indicators {
      display: flex;
      gap: 30px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #5a6c7d;
      font-size: 0.95rem;
      font-weight: 600;
    }

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

    @media (max-width: 991px) {
      .testimonials-visual {
        padding-right: 0;
        margin-bottom: 60px;
      }
      
      .testimonials-content {
        padding-left: 0;
      }
      
      .testimonials-title {
        font-size: 2.2rem;
      }
      
      .testimonials-stats-grid {
        grid-template-columns: 1fr;
      }
      
      .testimonials-actions {
        flex-direction: column;
      }
      
      .trust-indicators {
        flex-wrap: wrap;
        gap: 15px;
      }
    }

    @media (max-width: 768px) {
      .testimonials-excellence {
        padding: 60px 0;
      }
      
      .testimonials-title {
        font-size: 1.8rem;
      }
      
      .testimonial-card {
        padding: 24px;
      }
      
      .testimonial-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
      }
    }

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

.process-workflow::before {
  content: '';
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23cbd5e1" opacity="0.3"/></svg>') repeat;
  background-size: 50px 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.5;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.process-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step-item {
  display: flex;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.step-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: #e2e8f0;
}

.step-item.active {
  border-color: #3b82f6;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

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

.step-item.active .step-number {
  background: linear-gradient(135deg, #059669, #047857);
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.4);
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 12px;
}

.step-content p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 15px;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

.step-item.active .feature-tag {
  background: #d1fae5;
  color: #065f46;
  border-color: #a7f3d0;
}

.process-guarantee {
  margin-top: 40px;
}

.guarantee-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border: 2px solid #f59e0b;
  border-radius: 16px;
  padding: 20px;
}

.guarantee-icon {
  font-size: 2rem;
  color: #d97706;
}

.guarantee-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #92400e;
  margin-bottom: 5px;
}

.guarantee-content p {
  color: #a16207;
  margin: 0;
  font-size: 0.95rem;
}

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

.process-image-grid {
  margin-bottom: 30px;
}

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

.process-main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.process-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 25px 20px;
}

.process-stats {
  display: flex;
  gap: 30px;
}

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

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-top: 5px;
}

.secondary-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.secondary-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

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

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

.process-timeline {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
}

.timeline-header h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 20px;
  text-align: center;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.4);
}

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

.timeline-time {
  font-weight: 700;
  color: #1e293b;
  font-size: 0.9rem;
}

.timeline-desc {
  color: #64748b;
  font-size: 0.85rem;
}

.process-cta {
  text-align: center;
}

.btn-process-start {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.btn-process-start:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(5, 150, 105, 0.5);
}

.process-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.process-contact span {
  color: #64748b;
  font-size: 0.9rem;
}

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

.process-contact a:hover {
  color: #1d4ed8;
}

@media (max-width: 768px) {
  .process-title {
    font-size: 2rem;
  }
  
  .step-item {
    flex-direction: column;
    gap: 15px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    align-self: flex-start;
  }
  
  .process-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .secondary-images {
    grid-template-columns: 1fr;
  }
  
  .guarantee-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

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

.contact-form-section::before {
  content: '';
  background: radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.form-main-title {
  font-size: 3.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #1e293b, #475569);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  line-height: 1.2;
}

.form-description {
  font-size: 1.2rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.form-benefits {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

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

.benefit-item i {
  color: #10b981;
}

.contact-form-container {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

.consultation-form {
  height: 100%;
}

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

.input-group {
  display: flex;
  flex-direction: column;
}

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

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

.input-icon {
  position: absolute;
  left: 20px;
  color: #94a3b8;
  font-size: 18px;
  z-index: 2;
  transition: all 0.2s ease;
}

.form-control-custom {
  width: 100%;
  padding: 18px 20px 18px 56px;
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
  background: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

.form-control-custom:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.form-control-custom::placeholder {
  color: #94a3b8;
  font-weight: 400;
}

.form-privacy {
  margin-bottom: 32px;
}

.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.privacy-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: #3b82f6;
}

.privacy-checkbox label {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  flex: 1;
}

.privacy-checkbox a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 600;
}

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

.form-submit-btn {
  width: 100%;
  padding: 20px 32px;
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border: none;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

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

.btn-loading {
  display: none;
}

.form-submit-btn.loading .btn-loading {
  display: block;
}

.form-submit-btn.loading span {
  display: none;
}

.form-security-info {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
}

.security-item i {
  color: #10b981;
}

.contact-info-panel {
  background: linear-gradient(135deg, #1e293b, #334155);
  color: white;
  border-radius: 20px;
  padding: 40px;
  height: fit-content;
}

.panel-header h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.panel-header p {
  color: #cbd5e1;
  margin-bottom: 32px;
  line-height: 1.6;
}

.contact-methods {
  margin-bottom: 32px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-method:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.method-icon {
  width: 48px;
  height: 48px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #60a5fa;
  font-size: 18px;
  flex-shrink: 0;
}

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

.method-label {
  font-size: 14px;
  color: #94a3b8;
  font-weight: 500;
}

.method-value {
  font-size: 16px;
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.method-value:hover {
  color: #60a5fa;
}

.method-time {
  font-size: 13px;
  color: #64748b;
}

.panel-stats {
  padding: 24px 0;
  margin-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-highlight {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.stat-highlight:last-child {
  margin-bottom: 0;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #cbd5e1;
  margin-top: 4px;
  line-height: 1.4;
}

.consultation-image {
  position: relative;
}

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

.advisor-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.advisor-badge i {
  color: #fbbf24;
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 60px 0 80px;
  }
  
  .form-main-title {
    font-size: 2.4rem;
  }
  
  .form-description {
    font-size: 1.1rem;
  }
  
  .contact-form-container {
    padding: 32px 24px;
  }
  
  .form-benefits {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  
  .form-security-info {
    flex-direction: column;
    gap: 12px;
  }
  
  .contact-info-panel {
    margin-top: 32px;
    padding: 28px;
  }
}

@media (max-width: 576px) {
  .form-main-title {
    font-size: 2rem;
  }
  
  .contact-form-container {
    padding: 24px 16px;
  }
  
  .form-control-custom {
    padding: 16px 18px 16px 50px;
    font-size: 15px;
  }
  
  .form-submit-btn {
    padding: 18px 24px;
    font-size: 16px;
  }
}
