/*********************************************
  MIGRATION SAFARIS PAGE STYLES
**********************************************/

/* HERO SECTION */
.migration-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .migration-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .migration-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1rem;
  }
  .migration-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  .migration-hero-overlay p {
    font-size: 1.2rem;
  }
  
  /* INTRO SECTION */
  .migration-intro {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .migration-intro h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-intro p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* WHO SHOULD GO SECTION */
  .migration-whoshouldgo {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .migration-whoshouldgo h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-whoshouldgo p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .migration-whoshouldgo ul {
    max-width: 600px;
    margin: 1rem auto;
    text-align: left;
    line-height: 1.8;
    list-style: disc inside;
  }
  
  /* WHERE TO EXPERIENCE SECTION */
  .migration-where {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .migration-where h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-where p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* WHEN TO GO SECTION */
  .migration-besttime {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .migration-besttime h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-besttime p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .migration-besttime-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 700px;
    margin: 1rem auto;
    justify-content: center;
    text-align: center;
  }
  .besttime-item {
    flex: 1 1 220px;
    background: var(--beige);
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
  }
  
  /* CTA BANNER */
  .migration-cta-banner {
    background: var(--sunset-gradient);
    color: #fff;
    text-align: center;
    padding: 2rem 5%;
  }
  .cta-banner-content {
    max-width: 900px;
    margin: 0 auto;
  }
  .cta-banner-content h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
  }
  
  /* ACCOMMODATIONS SECTION */
  .migration-accommodations {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .migration-accommodations h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-accommodations p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* ADDITIONAL INFO SECTION */
  .migration-info {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .migration-info h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-info p {
    max-width: 900px;
    margin: 0 auto 1rem auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* MIGRATION DETAILS SECTION */
  .migration-details {
    padding: 2rem 5%;
    background: #fff;
    text-align: center;
  }
  .migration-details h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-details p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    text-align: left;
  }
  
  /* FINAL CTA SECTION */
  .migration-final-cta {
    padding: 2rem 5%;
    background: var(--beige);
    text-align: center;
  }
  .migration-final-cta h2 {
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .migration-final-cta p {
    max-width: 900px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.8;
    text-align: left;
  }
  .final-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 768px) {
    .migration-besttime-grid {
      flex-direction: column;
      align-items: center;
    }
    .migration-whoshouldgo ul {
      list-style-position: outside;
    }
  }