.subtitle-text-centered {
    color: var(--evershine-primary);
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
}

.subtitle-text {
    color: var(--evershine-primary);
    font-size: 1.3rem;
    font-weight: 500;
    text-align: left;
}

.hero-wrapper {
    padding: 4rem 2rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
    /* background-color: #f6f5f3; */
}

.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-container img {
    width: 650px;
}

.hero-container p:nth-of-type(1) {
    color: var(--evershine-primary);
    font-size: 1.3rem;
    font-weight: 500;
}

.hero-container h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--evershine-secondary);
}

.hero-container p:nth-of-type(2) {
    color: var(--evershine-text-light);
    font-size: clamp(1rem, 3vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.hero-cta-button {
    background-color: var(--evershine-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #005cb2;
}

/* Common Section Styles */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

section h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--evershine-secondary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-description {
    text-align: center;
    color: var(--evershine-text-light);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Tabs Container */
.tabs-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
  }
  
  .tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2rem;
  }
  
  .tab {
    padding: 1rem 2rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    cursor: pointer;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
  }
  
  .tab:hover {
    color: #333;
    background: #f5f5f5;
  }
  
  .tab.active {
    color: #1a73e8;
    border-bottom: 2px solid #1a73e8;
    font-weight: 500;
  }
  
  /* Tab Content */
  .tab-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .tab-pane {
    display: none;
    padding: 2rem;
  }
  
  .tab-pane.active {
    display: block;
  }
  
  /* Table Styles */
  .comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: white;
  }
  
  .comparison-table th {
    background: #e6f3f7;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    color: #333;
  }
  
  .comparison-table td {
    padding: 1rem;
    border: 1px solid #e0e0e0;
    text-align: left;
  }
  
  .comparison-table td:not(:first-child) {
    text-align: center;
  }
  
  /* Checkmark and X styles */
  .check {
    color: #2ecc71;
    font-size: 1.2rem;
  }
  
  .cross {
    color: #e74c3c;
    font-size: 1.2rem;
  }
  
  /* Exclusions List */
  .exclusions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
  }
  
  .exclusion-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
  }
  
  .exclusion-item i {
    color: #dc3545;
    font-size: 1.2rem;
  }
  
  /* Add-ons List */
  .checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
  }
  
  .checklist li {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .checklist li::before {
    content: "+";
    color: #1a73e8;
    font-weight: bold;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .tabs {
      flex-wrap: wrap;
    }
    
    .tab {
      flex: 1 1 auto;
      text-align: center;
      padding: 1rem;
    }
    
    .comparison-table {
      font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
      padding: 0.75rem 0.5rem;
    }
  }

/* About Section */

.about-section {
    background-color: #f8f9fa;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-content h2 {
    text-align: left;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    max-width: 500px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about-features i {
    color: var(--evershine-primary);
}

/* Booking Section */
.booking-section {
    background-color: #fff;
}

.booking-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.booking-content h2, .booking-content p {
    text-align: left;
}

.booking-steps {
    flex: 1;
}

.booking-video {
    flex: 1;
}

.steps-list {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--evershine-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--evershine-primary) 0%, #005cb2 100%);
    color: white;
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--evershine-primary);
    padding: 1rem 3rem;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1130px) {
  .hero-container img {
    width: 100%;
    margin: 0 auto;
}
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content,
    .booking-content {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .video-placeholder {
        margin-top: 2rem;
    }

    .hero-wrapper {
      padding: 2rem 1rem;
      min-height: auto;
      margin-top: 4rem;
  }

  .hero-container {
      flex-direction: column-reverse;
      gap: 2rem;
      text-align: center;
  }

  .hero-container img {
      width: 100%;
      max-width: 400px;
      margin: 0 auto;
  }

  .comparison-table {
      display: block;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 480px) {
  .hero-container h1 {
      font-size: 1.7rem;
  }

  .hero-container p:nth-of-type(1) {
      font-size: 1.1rem;
  }

  .hero-container p:nth-of-type(2) {
      font-size: 1rem;
  }

  .comparison-table th,
  .comparison-table td {
      padding: 0.75rem 0.5rem;
      font-size: 0.9rem;
  }
}