
/* Block 1 */
.hero-banner {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-image: url('mountain-landscape.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.7) 0%, rgba(26, 47, 10, 0.6) 50%, rgba(45, 80, 22, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(143, 188, 75, 0.3);
    transform: translateY(0);
}

.hero-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(143, 188, 75, 0.4);
    background: linear-gradient(135deg, #9fd156 0%, #7ba428 100%);
}

.hero-cta-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(143, 188, 75, 0.3);
}

@media (max-width: 768px) {
    .hero-banner {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .hero-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.featured-destinations {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8faf5 0%, #e8f5e8 100%);
  }
  
  .destinations-container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
  }
  
  .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
  }
  
  .destination-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.05);
  }
  
  .destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  }
  
  .card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
  }
  
  .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .destination-card:hover .card-image img {
    transform: scale(1.08);
  }
  
  .difficulty-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc3545;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .difficulty-badge.moderate {
    background: #fd7e14;
  }
  
  .difficulty-badge.easy {
    background: var(--secondary-color);
  }
  
  .card-content {
    padding: 2rem;
  }
  
  .destination-name {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
  }
  
  .location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: #666;
    font-size: 0.95rem;
  }
  
  .location-info i {
    color: var(--accent-color);
  }
  
  .destination-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
  }
  
  .trail-stats {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
  }
  
  .stat-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
  }
  
  .stat-item span {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
  }
  
  .cta-section {
    text-align: center;
  }
  
  .explore-all-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .explore-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 142, 35, 0.3);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  }
  
  @media (max-width: 768px) {
    .featured-destinations {
      padding: 3rem 1rem;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .destinations-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    
    .card-content {
      padding: 1.5rem;
    }
    
    .trail-stats {
      flex-direction: row;
      justify-content: space-around;
    }
  }

/* Block 3 */
.interactive-planning {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f5e8 100%);
    min-height: 100vh;
}

.planning-container {
    max-width: 1400px;
    margin: 0 auto;
}

.planning-header {
    text-align: center;
    margin-bottom: 4rem;
}

.planning-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

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

.planner-interface {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
}

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

.input-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.experience-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.experience-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.experience-card:hover,
.experience-card.active {
    border-color: var(--accent-color);
    background: rgba(143, 188, 75, 0.1);
    transform: translateY(-2px);
}

.experience-card img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.experience-text {
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
}

.activity-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.activity-tag {
    padding: 0.7rem 1.2rem;
    background: #f5f5f5;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.activity-tag:hover,
.activity-tag.selected {
    background: var(--accent-color);
    color: white;
    transform: scale(1.05);
}

.duration-slider {
    position: relative;
    padding: 1rem 0;
}

.range-input {
    width: 100%;
    height: 6px;
    border-radius: 5px;
    background: #ddd;
    outline: none;
    appearance: none;
}

.range-input::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-color);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

.range-value {
    color: var(--accent-color);
    font-weight: 700;
}

.generate-plan-btn {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    padding: 1.2rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.generate-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.3);
}

.ai-insights {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.insight-header img {
    width: 50px;
    height: 50px;
}

.insight-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.recommendation-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rec-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.rec-icon {
    background: var(--accent-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.rec-content h5 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.rec-content p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

.real-time-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.stat-display {
    text-align: center;
    padding: 1rem;
    background: rgba(255,255,255,0.8);
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.feature-showcase {
    margin-top: 3rem;
}

.showcase-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-visual {
    height: 200px;
    overflow: hidden;
}

.feature-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-details {
    padding: 2rem;
}

.feature-details h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
}

.feature-details p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .planner-interface {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .planning-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .interactive-planning {
        padding: 3rem 1rem;
    }
    
    .experience-options {
        grid-template-columns: 1fr;
    }
    
    .real-time-stats {
        grid-template-columns: 1fr;
    }
    
    .activity-tags {
        justify-content: center;
    }
    
    .insight-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Block 4 */
.order-form-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fdf4 0%, #e8f5d8 100%);
    min-height: 80vh;
}

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

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.order-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.order-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 1px solid rgba(143, 188, 75, 0.2);
}

.form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-wrapper {
    position: relative;
}

.form-label {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e0e8d4;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafcf7;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(143, 188, 75, 0.1);
}

.input-icon {
    position: absolute;
    top: 2.2rem;
    left: 1rem;
    color: var(--secondary-color);
}

.adventure-preferences {
    margin-bottom: 2rem;
}

.preference-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.preference-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border: 2px solid #e0e8d4;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fafcf7;
}

.preference-card:hover {
    border-color: var(--accent-color);
    background: white;
    transform: translateY(-2px);
}

.preference-card img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.preference-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.submit-order-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 142, 35, 0.3);
}

.order-benefits {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(45, 80, 22, 0.1);
    border: 1px solid rgba(143, 188, 75, 0.2);
}

.benefit-header {
    text-align: center;
    margin-bottom: 2rem;
}

.benefit-header img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid var(--accent-color);
}

.benefits-title {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.benefits-list {
    margin-bottom: 2rem;
}

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

.benefit-icon {
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-content h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.benefit-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.response-guarantee {
    border-top: 1px solid #e0e8d4;
    padding-top: 1.5rem;
}

.guarantee-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.7rem 1.2rem;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.trust-indicators {
    display: flex;
    justify-content: space-between;
}

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

.trust-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.trust-label {
    font-size: 0.8rem;
    color: var(--secondary-color);
    font-weight: 500;
}

@media (max-width: 992px) {
    .order-form-section {
        padding: 3rem 1rem;
    }
    
    .order-title {
        font-size: 2rem;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-wrapper,
    .order-benefits {
        padding: 2rem;
    }
    
    .preference-options {
        grid-template-columns: 1fr;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .order-title {
        font-size: 1.8rem;
    }
    
    .order-subtitle {
        font-size: 1rem;
    }
    
    .form-wrapper,
    .order-benefits {
        padding: 1.5rem;
    }
    
    .form-input {
        padding: 0.9rem 0.9rem 0.9rem 2.5rem;
    }
    
    .input-icon {
        top: 2rem;
        left: 0.8rem;
    }
}
