/*********************************************
  SAFARIS-SPECIFIC STYLES
**********************************************/

/* HERO SECTION */
.safaris-hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
  }
  .safaris-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .safaris-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 1rem;
  }
  .safaris-hero-overlay h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  /* INTRO SECTION */
  .safaris-intro {
    padding: 2rem 5%;
    background-color: var(--beige);
  }
  .safaris-intro h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--brown);
  }
  .safaris-intro p {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
  }
  
  /* SAFARI STYLES (Image Right, Text Left) */
  .all-safaris {
    padding: 2rem 5%;
    background: #fff;
  }
  .safari-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
  }
  .safari-text-col {
    flex: 1 1 400px;
    order: 1; /* ensure text is first on wide screens */
  }
  .safari-text-col h3 {
    margin-bottom: 0.5rem;
    color: var(--brown);
  }
  .safari-text-col p {
    line-height: 1.8;
    margin-bottom: 0.5rem;
  }
  .ideal-for {
    font-style: italic;
    color: var(--deep-green);
    margin-bottom: 1rem;
  }
  .btn-safari {
    display: inline-block;
    background: var(--brown);
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
  }
  .btn-safari:hover {
    background: var(--burnt-orange);
  }
  /* Image column on the RIGHT */
  .safari-image-col {
    flex: 1 1 400px;
    order: 2;
    text-align: center;
  }
  .safari-image-col img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
  }
  
  /* ACCOMMODATIONS SECTION (Image Left, Text Right) */
  .accommodations-section {
    padding: 2rem 5%;
    background: #fafafa;
    text-align: center;
  }
  .accommodations-section .section-heading {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--brown);
  }
  .accommodations-section p {
    max-width:900px;
    margin:0 auto 2rem auto;
    line-height:1.8;
  }
  .accommodation-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
    text-align: left;
  }
  .accommodation-image-col {
    flex: 1 1 400px;
    order: 1; /* image first column */
  }
  .accommodation-text-col {
    flex: 1 1 400px;
    order: 2; /* text second column */
  }
  .accommodation-lrg-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius:6px;
  }
  .accommodation-text-col h3 {
    margin-bottom:0.5rem;
    color:var(--brown);
  }
  
  /* FINAL CTA (matching homepage color consistency) */
  .final-cta-banner {
    background: var(--sunset-gradient); /* same gradient as homepage */
    color: #fff;
    padding: 2rem 5%;
    text-align: center;
  }
  .final-cta-content {
    max-width: 800px;
    margin: 0 auto;
  }
  .final-cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  .final-cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height:1.8;
  }
  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap:1rem;
    justify-content:center;
  }
  .cta-buttons .btn {
    margin:0;
  }
  
  /* RESPONSIVE */
  @media (max-width:768px) {
    .safari-row {
      flex-direction:column;
    }
    .safari-text-col, .safari-image-col {
      order:unset; /* default order for mobile */
      flex:1 1 auto;
    }
    .accommodation-row {
      flex-direction:column;
    }
    .accommodation-image-col, .accommodation-text-col {
      order:unset;
      flex:1 1 auto;
    }
  }

  /*********************************************
 INTRO-SAFARIS SECTION
**********************************************/
.intro-safaris {
    padding: 2rem 5%;
    background-color: var(--beige);
    text-align: left;
  }
  .intro-safaris-content {
    max-width: 900px;
    margin: 0 auto;
  }
  .intro-safaris-content h2 {
    margin-bottom: 1rem;
    color: var(--brown);
    text-align: center;
  }
  .intro-safaris-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  
  /*********************************************
   EXPERIENCE SECTION (GAME DRIVES, PHOTO, ETC.)
  **********************************************/
  .extra-experiences {
    padding: 2rem 5%;
    background-color: #fff;
  }
  .extra-experiences h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: var(--brown);
  }
  .experience-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 2rem;
  }
  /* Text on the left, image on the right */
  .experience-text-col {
    flex: 1 1 400px;
    order: 1;
  }
  .experience-text-col h3 {
    margin-bottom: 0.5rem;
    color: var(--brown);
  }
  .experience-text-col p {
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .experience-text-col a {
    color: var(--brown);
    text-decoration: underline;
    font-weight: 600;
  }
  .experience-image-col {
    flex: 1 1 400px;
    order: 2;
    text-align: center;
  }
  .experience-image-col img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
  }
  /* Subheading for beaches */
  .extras-subheading {
    margin-top: 2rem;
    color: var(--brown);
    font-size: 1.3rem;
    text-align: center;
  }
  .trekking-cta {
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
  
  /*********************************************
   RESPONSIVE
  **********************************************/
  @media (max-width: 768px) {
    .experience-row {
      flex-direction: column;
    }
    .experience-text-col,
    .experience-image-col {
      order: unset;
      flex: 1 1 auto;
    }
  }