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

.hero-container {
  position: relative;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.9) 100%);
  z-index: 2;
}

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

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

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 400;
}

.hero-cta-button {
  background: linear-gradient(45deg, #ff6b6b, #ff8e3c);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  transform: translateY(0);
}

.hero-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
  background: linear-gradient(45deg, #ff5252, #ff7043);
}

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

.hero-cta-button i {
  transition: transform 0.3s ease;
}

.hero-cta-button:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .hero-banner-section {
    min-height: 70vh;
  }
  
  .hero-container {
    min-height: 70vh;
  }
  
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .hero-cta-button {
    padding: 16px 32px;
    font-size: 1rem;
  }
}

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

/* Block 2 */
.featured-guides-section {
padding: 80px 0;
background: linear-gradient(135deg, #f8f9ff 0%, #f1f4ff 100%);
}

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

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

.guide-card {
background: #fff;
border-radius: 20px;
box-shadow: 0 10px 30px rgba(0,0,0,0.08);
overflow: hidden;
transition: all 0.4s ease;
height: 100%;
display: flex;
flex-direction: column;
}

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

.guide-image-wrapper {
position: relative;
overflow: hidden;
height: 220px;
}

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

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

.guide-category {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
position: absolute;
top: 15px;
left: 15px;
z-index: 2;
}

.guide-content {
padding: 25px;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.guide-title {
font-size: 1.3rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 12px;
line-height: 1.4;
}

.guide-excerpt {
color: #6c757d;
line-height: 1.6;
margin-bottom: 20px;
flex-grow: 1;
}

.guide-meta {
display: flex;
gap: 20px;
margin-bottom: 20px;
}

.guide-duration,
.guide-difficulty {
font-size: 0.9rem;
color: #8e9aaf;
display: flex;
align-items: center;
gap: 6px;
}

.guide-duration i,
.guide-difficulty i {
color: #667eea;
font-size: 0.8rem;
}

.guide-link {
color: #667eea;
text-decoration: none;
font-weight: 600;
display: flex;
align-items: center;
justify-content: space-between;
transition: all 0.3s ease;
}

.guide-link:hover {
color: #5a6fd8;
transform: translateX(5px);
}

.guide-link i {
transition: transform 0.3s ease;
}

.guide-card:hover .guide-link i {
transform: translateX(5px);
}

.view-all-guides-btn {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
color: white;
padding: 15px 35px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
display: inline-flex;
align-items: center;
transition: all 0.4s ease;
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.view-all-guides-btn:hover {
transform: translateY(-3px);
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
color: white;
}

@media (max-width: 768px) {
.featured-guides-section {
padding: 60px 0;
}

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

.guide-meta {
flex-direction: column;
gap: 10px;
}

.view-all-guides-btn {
padding: 12px 25px;
font-size: 1rem;
}
}

@media (max-width: 576px) {
.guide-image-wrapper {
height: 180px;
}

.guide-content {
padding: 20px;
}

.guide-title {
font-size: 1.2rem;
}
}

/* Block 3 */
.success-stories-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  }

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

  .stories-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
  }

  .story-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    height: 100%;
    transition: transform 0.3s;
  }

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

  .featured-story {
    border-left: 5px solid #667eea;
  }

  .story-image-container {
    position: relative;
    margin-bottom: 25px;
  }

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

  .story-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .story-quote {
    margin-bottom: 25px;
  }

  .quote-icon {
    color: #667eea;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .story-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
    font-style: italic;
    margin: 0;
  }

  .story-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .author-name {
    color: #2c3e50;
    font-size: 1.1rem;
    margin: 0;
  }

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

  .story-metrics {
    display: flex;
    gap: 20px;
  }

  .metric {
    text-align: center;
  }

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

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

  .story-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
  }

  .mini-story {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
    align-items: flex-start;
    transition: transform 0.3s;
  }

  .mini-story:hover {
    transform: translateX(5px);
  }

  .mini-story-avatar {
    flex-shrink: 0;
  }

  .avatar-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .mini-story-content {
    flex: 1;
  }

  .mini-quote {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .mini-author strong {
    color: #2c3e50;
  }

  .mini-author span {
    color: #6c757d;
    font-size: 0.8rem;
    margin-left: 5px;
  }

  .impact-statistics {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    text-align: center;
  }

  .stats-title {
    color: #2c3e50;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
  }

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

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

  .stat-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
  }

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

  @media (max-width: 768px) {
    .success-stories-section {
      padding: 50px 0;
    }

    .stories-main-title {
      font-size: 2rem;
    }

    .story-card {
      padding: 20px;
    }

    .story-author {
      flex-direction: column;
      align-items: flex-start;
    }

    .story-metrics {
      justify-content: flex-start;
    }

    .stats-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }

    .impact-statistics {
      padding: 25px;
    }
  }

/* Block 4 */
.order-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f0fe 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(120, 119, 198, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(255, 206, 84, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

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

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

.order-form-container {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 500;
}

.benefit-icon {
    color: #ffd700;
    font-size: 1.1rem;
    width: 20px;
}

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

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

.form-label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1rem;
    z-index: 2;
}

.premium-input {
    padding: 16px 16px 16px 48px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fafbfc;
}

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

.pricing-info {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0fe 100%);
    border-radius: 12px;
    border: 1px solid #e3e8ff;
    position: relative;
}

.price-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
    position: relative;
}

.original-price {
    font-size: 1.2rem;
    color: #6c757d;
    text-decoration: line-through;
    font-weight: 500;
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
}

.discount-badge {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-note {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 18px 24px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.button-icon {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

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

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

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #6c757d;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-item i {
    color: #28a745;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .form-title {
        font-size: 2rem;
    }
    
    .order-form-container {
        padding: 24px;
    }
    
    .trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .price-tag {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .order-form-section {
        padding: 60px 0;
    }
    
    .current-price {
        font-size: 1.6rem;
    }
    
    .original-price {
        font-size: 1rem;
    }
}
