
/* Block 1 */
.hero-banner {
  min-height: 70vh;
  background-image: url('hero-learning.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.65);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 2rem 0;
}

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

.hero-text {
  font-size: 1.25rem;
  color: #f8f9fa;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.95;
}

.btn-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

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

@media (max-width: 768px) {
  .hero-banner {
    min-height: 60vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .btn-hero {
    font-size: 1rem;
    padding: 0.875rem 2rem;
  }
}

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

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

.features-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #212529;
    margin-bottom: 24px;
    line-height: 1.2;
}

.features-description {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

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

.feature-text h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.feature-text p {
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.features-visual {
    position: relative;
    height: 500px;
}

.skill-cards {
    position: relative;
    height: 100%;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

.skill-card {
    position: absolute;
    width: 280px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.skill-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.skill-card.primary {
    top: 20px;
    left: 50px;
    z-index: 3;
}

.skill-card.secondary {
    top: 120px;
    right: 40px;
    z-index: 2;
}

.skill-card.tertiary {
    top: 280px;
    left: 80px;
    z-index: 1;
}

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

.skill-card:hover .skill-image {
    transform: scale(1.1);
}

.skill-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 24px 20px 20px;
    color: white;
}

.skill-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.skill-overlay h5 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .features-showcase {
        padding: 60px 0;
    }
    
    .features-title {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .features-description {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .features-visual {
        margin-top: 60px;
        height: 400px;
    }
    
    .skill-cards {
        transform: none;
    }
    
    .skill-card {
        width: 220px;
        height: 140px;
    }
    
    .skill-card.primary {
        top: 10px;
        left: 20px;
    }
    
    .skill-card.secondary {
        top: 80px;
        right: 20px;
    }
    
    .skill-card.tertiary {
        top: 200px;
        left: 50px;
    }
}

@media (max-width: 768px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .features-visual {
        height: 300px;
    }
    
    .skill-card {
        width: 180px;
        height: 120px;
    }
    
    .skill-overlay {
        padding: 16px 12px 12px;
    }
    
    .skill-badge {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
    
    .skill-overlay h5 {
        font-size: 0.9rem;
    }
}

/* Block 3 */
.learning-pathways {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.pathway-header {
    margin-bottom: 60px;
}

.pathway-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.pathway-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin: 0;
}

.pathway-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    overflow: hidden;
    position: relative;
}

.pathway-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pathway-card.beginner {
    border-color: #10b981;
}

.pathway-card.intermediate {
    border-color: #3b82f6;
}

.pathway-card.advanced {
    border-color: #8b5cf6;
}

.pathway-card.featured {
    transform: scale(1.05);
    border-color: #f59e0b;
}

.pathway-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, #f59e0b, #f97316);
    color: white;
    padding: 8px 40px;
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pathway-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
}

.beginner .pathway-icon-wrapper {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.intermediate .pathway-icon-wrapper {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.advanced .pathway-icon-wrapper {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.pathway-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 20px;
    text-align: center;
}

.pathway-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.pathway-features {
    margin-bottom: 30px;
}

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

.pathway-features .feature-item i {
    color: #10b981;
    margin-right: 12px;
    font-size: 1.1rem;
}

.pathway-features .feature-item span {
    color: #4b5563;
    font-weight: 500;
}

.pathway-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pathway-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
}

.pathway-cta {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cta-text {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 25px;
}

.btn-pathway-quiz {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.1rem;
}

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

@media (max-width: 768px) {
    .learning-pathways {
        padding: 60px 0;
    }
    
    .pathway-main-title {
        font-size: 2rem;
    }
    
    .pathway-card.featured {
        transform: none;
    }
    
    .pathway-stats {
        gap: 20px;
    }
    
    .pathway-badge {
        font-size: 0.75rem;
        padding: 6px 35px;
    }
}

@media (max-width: 576px) {
    .pathway-card {
        padding: 30px 20px 20px;
    }
    
    .pathway-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Block 4 */
.order-form-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

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

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

.form-icon i {
  font-size: 36px;
  color: white;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 15px;
}

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

.order-form-container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 50px;
  margin-top: 40px;
}

.form-group {
  margin-bottom: 30px;
}

.form-label {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.form-label-icon {
  margin-right: 10px;
  color: #667eea;
  width: 18px;
}

.form-input {
  height: 55px;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  font-size: 1.1rem;
  padding: 0 20px;
  transition: all 0.3s ease;
  background: #fafbfc;
}

.form-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
  background: white;
}

.form-benefits {
  background: #f8f9ff;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #495057;
}

.benefit-item:last-child {
  margin-bottom: 0;
}

.benefit-item i {
  color: #28a745;
  margin-right: 12px;
  font-size: 1.1rem;
  width: 20px;
}

.btn-submit {
  width: 100%;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.btn-submit i {
  margin-right: 10px;
}

.form-visual {
  padding-left: 30px;
}

.consultation-image {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.success-metrics {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.metric-card {
  flex: 1;
  background: white;
  padding: 20px 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
}

.metric-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: #667eea;
  display: block;
}

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

.testimonial-preview {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #667eea;
}

.testimonial-content p {
  font-style: italic;
  color: #495057;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: #2c3e50;
  display: block;
}

.author-role {
  font-size: 0.9rem;
  color: #6c757d;
}

@media (max-width: 991px) {
  .form-visual {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .success-metrics {
    flex-direction: column;
  }
  
  .order-form-container {
    padding: 30px;
  }
  
  .form-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .order-form-section {
    padding: 60px 0;
  }
  
  .order-form-container {
    padding: 25px;
  }
  
  .form-header {
    margin-bottom: 30px;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .form-subtitle {
    font-size: 1.1rem;
  }
}
