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

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

.hero-bg-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(20, 33, 61, 0.85) 0%, rgba(67, 97, 238, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text-wrapper {
    max-width: 700px;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

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

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    letter-spacing: 0.5px;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #4361ee 0%, #3f37c9 100%);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(67, 97, 238, 0.3);
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(67, 97, 238, 0.4);
    color: #ffffff;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

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

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description,
    .hero-secondary-text {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Block 2 */
.subject-expertise-showcase {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

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

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.expertise-category {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expertise-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.expertise-category:hover .category-image {
  transform: scale(1.05);
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(52, 152, 219, 0.9), rgba(155, 89, 182, 0.9));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.category-icon {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

.category-content {
  padding: 1.5rem;
}

.category-description {
  color: #495057;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.subject-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.subject-tag {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.category-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e9ecef;
  padding-top: 1rem;
}

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

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

.metric-label {
  font-size: 0.85rem;
  color: #6c757d;
}

.expertise-features {
  margin: 3rem 0;
}

.feature-highlight {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature-description {
  color: #495057;
  line-height: 1.6;
  font-size: 1rem;
}

.feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.cta-section {
  background: linear-gradient(135deg, #3498db, #9b59b6);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  color: white;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-button {
  background: white;
  color: #3498db;
  padding: 0.875rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: #2980b9;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-title {
    font-size: 1.6rem;
  }
}

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

    .tutoring-process-overview::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6, #06d6a0);
    }

    .process-header {
      text-align: center;
      margin-bottom: 70px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .process-subtitle {
      font-size: 1.3rem;
      color: #64748b;
      line-height: 1.7;
      font-weight: 400;
    }

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

    .step-item {
      display: flex;
      gap: 50px;
      align-items: center;
      margin-bottom: 60px;
      padding: 40px;
      background: white;
      border-radius: 24px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
      transition: all 0.4s ease;
    }

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

    .step-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .step-visual {
      position: relative;
      flex: 0 0 400px;
    }

    .step-image {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 16px;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

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

    .step-content {
      flex: 1;
    }

    .step-title {
      font-size: 2rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 20px;
      line-height: 1.3;
    }

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

    .step-details {
      display: flex;
      flex-wrap: wrap;
      gap: 25px;
    }

    .detail-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 18px;
      background: #f1f5f9;
      border-radius: 12px;
      border-left: 4px solid #3b82f6;
    }

    .detail-icon {
      color: #3b82f6;
      font-size: 1.1rem;
    }

    .detail-text {
      color: #334155;
      font-weight: 500;
      font-size: 0.95rem;
    }

    .process-benefits {
      margin-bottom: 60px;
    }

    .benefits-content {
      text-align: center;
      margin-bottom: 50px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .benefits-title {
      font-size: 2.5rem;
      font-weight: 700;
      color: #1e293b;
      margin-bottom: 20px;
    }

    .benefits-description {
      font-size: 1.2rem;
      color: #64748b;
      line-height: 1.7;
    }

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

    .benefit-card {
      background: white;
      padding: 40px 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      border-top: 4px solid transparent;
    }

    .benefit-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
      border-top-color: #3b82f6;
    }

    .benefit-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      box-shadow: 0 6px 25px rgba(59, 130, 246, 0.3);
    }

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

    .benefit-title {
      font-size: 1.4rem;
      font-weight: 600;
      color: #1e293b;
      margin-bottom: 15px;
    }

    .benefit-text {
      color: #64748b;
      line-height: 1.6;
      font-size: 1rem;
    }

    .process-cta {
      background: linear-gradient(135deg, #1e293b, #334155);
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
      box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    }

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

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

    .cta-subtitle {
      font-size: 1.1rem;
      color: #cbd5e1;
      margin-bottom: 40px;
      line-height: 1.6;
    }

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

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

    .cta-primary-btn {
      background: linear-gradient(135deg, #3b82f6, #1d4ed8);
      color: white;
      box-shadow: 0 6px 25px rgba(59, 130, 246, 0.4);
    }

    .cta-primary-btn:hover {
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 10px 35px rgba(59, 130, 246, 0.5);
    }

    .cta-secondary-btn {
      background: transparent;
      color: white;
      border-color: #64748b;
    }

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

    @media (max-width: 768px) {
      .process-main-title {
        font-size: 2.5rem;
      }

      .step-item {
        flex-direction: column !important;
        gap: 30px;
        padding: 30px 20px;
      }

      .step-visual {
        flex: none;
        width: 100%;
      }

      .step-details {
        flex-direction: column;
      }

      .detail-item {
        justify-content: center;
      }

      .cta-actions {
        flex-direction: column;
        align-items: center;
      }

      .cta-primary-btn, .cta-secondary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
      }
    }

/* Block 4 */
.success-stories-testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.testimonials-subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid #e2e8f0;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.12);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.student-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #e2e8f0;
}

.featured .student-photo {
    border-color: rgba(255, 255, 255, 0.3);
}

.student-info {
    flex: 1;
}

.student-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a202c;
}

.featured .student-name {
    color: white;
}

.student-grade {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 16px;
}

.featured .student-grade {
    color: rgba(255, 255, 255, 0.8);
}

.subject-focus {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.focus-tag {
    background: #edf2f7;
    color: #4a5568;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
}

.featured .focus-tag {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.rating-display {
    text-align: right;
}

.stars {
    color: #f6ad55;
    margin-bottom: 8px;
}

.stars i {
    font-size: 1.2rem;
    margin: 0 2px;
}

.rating-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4a5568;
}

.featured .rating-text {
    color: white;
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    font-style: italic;
    margin: 0;
    padding: 0;
    border: none;
}

.featured .testimonial-quote {
    color: rgba(255, 255, 255, 0.95);
}

.achievement-metrics {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

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

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 8px;
}

.featured .metric-value {
    color: white;
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: #718096;
    font-weight: 600;
}

.featured .metric-label {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-stats {
    background: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
}

.stats-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 48px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 24px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    opacity: 0.9;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.testimonials-cta {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    color: white;
}

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

.cta-description {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.primary-cta-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.primary-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.secondary-cta-btn {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.secondary-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonials-title {
        font-size: 2.5rem;
    }
    
    .achievement-metrics {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-cta {
        padding: 40px 24px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

.premium-contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.03"/><circle cx="90" cy="20" r="0.5" fill="white" opacity="0.02"/><circle cx="30" cy="40" r="1.5" fill="white" opacity="0.04"/><circle cx="70" cy="60" r="0.8" fill="white" opacity="0.025"/><circle cx="50" cy="80" r="1.2" fill="white" opacity="0.035"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.form-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.15), 0 20px 60px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 80px 60px;
  position: relative;
}

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

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

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

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

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.benefit-text {
  color: #374151;
  font-weight: 500;
  font-size: 0.95rem;
}

.form-container {
  margin-bottom: 80px;
}

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

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

.input-group {
  position: relative;
}

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

.form-input {
  width: 100%;
  padding: 20px 24px;
  font-size: 1.1rem;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  background: #fafafa;
  transition: all 0.3s ease;
  outline: none;
  color: #1f2937;
  font-family: inherit;
}

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

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

.input-underline {
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
  margin-top: -2px;
}

.form-input:focus + .input-underline {
  transform: scaleX(1);
}

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

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 20px 48px;
  font-size: 1.15rem;
  font-weight: 600;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
  min-width: 220px;
  justify-content: center;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a67d8 0%, #6b46c1 100%);
}

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

.button-text {
  font-weight: 600;
  letter-spacing: 0.01em;
}

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

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

.privacy-notice {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 24px;
  line-height: 1.5;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-link {
  color: #667eea;
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  text-decoration: underline;
}

.success-indicators {
  margin-bottom: 60px;
}

.indicator-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.indicator-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.indicator-visual {
  position: relative;
  min-width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.indicator-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indicator-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(102, 126, 234, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.indicator-content {
  flex: 1;
}

.indicator-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
}

.indicator-description {
  color: #6b7280;
  line-height: 1.6;
  font-size: 1rem;
}

.trust-signals {
  text-align: center;
  padding-top: 60px;
  border-top: 2px solid #f3f4f6;
}

.trust-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}

.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.metric-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 32px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  min-width: 140px;
}

.metric-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #667eea;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-text {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}

.trust-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.trust-logo {
  height: 48px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.trust-logo:hover {
  filter: grayscale(0%);
  opacity: 1;
}

@media (max-width: 768px) {
  .premium-contact-form {
    padding: 80px 0;
  }
  
  .form-wrapper {
    margin: 0 20px;
    padding: 50px 30px;
    border-radius: 24px;
  }
  
  .form-title {
    font-size: 2.5rem;
  }
  
  .form-benefits {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .indicator-item {
    flex-direction: column;
    text-align: center;
  }
  
  .indicator-visual {
    margin: 0 auto;
  }
  
  .trust-metrics {
    gap: 20px;
  }
  
  .metric-badge {
    padding: 20px 24px;
    min-width: 120px;
  }
  
  .trust-logos {
    gap: 24px;
  }
  
  .trust-logo {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .form-wrapper {
    margin: 0 15px;
    padding: 40px 25px;
  }
  
  .form-title {
    font-size: 2rem;
  }
  
  .form-input {
    padding: 16px 20px;
    font-size: 1rem;
  }
  
  .submit-button {
    padding: 16px 32px;
    font-size: 1rem;
    min-width: 200px;
  }
}
