

/* Brand Variables Integrated */
:root {
  --gold: #D4AF37;
  --earth: #2C3327;
  --ivory: #FAF9F6;
  --mist: #E9EAE0;
  --transition: all 0.3s ease-in-out;
}

/* GLOBAL H2 HEADING STYLE */
h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.5px;
  color: var(--earth);
  margin-bottom: 15px;
}

.site-header {
  background: var(--ivory);
  border-bottom: 1px solid rgba(44, 51, 39, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

/* Brand/Logo Styling */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--earth);
}

.logo {
  background: var(--earth);
  color: var(--gold);
  font-weight: bold;
  padding: 10px;
  border-radius: 4px;
  margin-right: 12px;
  font-family: serif;
}

.brand-text b { 
  display: block; 
  font-size: 1.2rem; 
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-text .small { 
  font-size: 0.7rem; 
  color: var(--earth);
  opacity: 0.8;
}

/* Navigation Links */
#primary-nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

#primary-nav a {
  text-decoration: none;
  color: var(--earth);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

#primary-nav a:hover { 
  color: var(--gold); 
}

/* CTA & Hamburger Toggle */
.nav-cta { 
  display: flex; 
  align-items: center; 
  gap: 20px; 
}

.btn.primary {
  background: var(--gold);
  color: var(--earth); 
  padding: 12px 24px;
  border-radius: 2px; 
  text-decoration: none;
  font-weight: bold;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn.primary:hover {
  background: var(--earth);
  color: var(--gold);
}

/* Hamburger Icon */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--earth);
  transition: var(--transition);
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .nav-cta {
    gap: 12px;
  }

  .btn.primary {
    padding: 10px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    white-space: nowrap;
  }

}


@media (max-width: 992px) {
  .menu-toggle { display: flex; }

  #primary-nav {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--ivory);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    border-bottom: 2px solid var(--gold);
  }

  #primary-nav.active { 
    max-height: 500px; 
  }

  #primary-nav ul {
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    text-align: center;
  }
  
  .brand-text .small { display: none; }
}

/* ============ Background Stlying ======== */
/* 1. The Light Section (Your Current Default) */
.tour-section--light {
    background-color: var(--ivory);
    color: var(--earth);
}

/* 2. The Dark Section (High Contrast/Premium) */
.tour-section--dark {
    background-color: var(--earth); /* #2C3327 */
    color: var(--ivory);
}
.tour-section--dark .tour-section-title,
.tour-section--dark .tour-section-eyebrow {
    color: var(--gold);
}

/* 3. The Subtle "Sand" Section (For breaking up light sections) */
.tour-section--accent {
    background-color: #F2F0E9; /* Slightly deeper than ivory */
    border-top: 1px solid rgba(44, 51, 39, 0.05);
    border-bottom: 1px solid rgba(44, 51, 39, 0.05);
}


/* ========= HERO SECTION ========== */
.hero-safari{
  position:relative;
  min-height:70vh;
  display:flex;
  align-items:flex-start;  
  justify-content:center;
  overflow:hidden;
  padding:35px 24px 45px;  
  color:white;
}

.hero-container{
  transform: translateY(-20px);
}

/* Background Image */
.tour-hero__bg{
  position:absolute;
  inset:0;
  z-index:0;
}

.tour-hero__bg img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center 25%;
  filter:brightness(.85) contrast(1.1);
  transform:scale(1.02);
  transition:transform 12s ease;
}

.hero-safari:hover .tour-hero__bg img{
  transform:scale(1.08);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.18) 40%,
    rgba(0,0,0,.40) 100% );
  z-index:1;
}

/* Container */
.hero-container{
  position:relative;
  z-index:2;
  max-width:1100px;
  margin:auto;
  text-align:center;
}

/* Badge */
.badge{
  display:inline-block;
  padding:8px 18px;
  border:1px solid rgba(212,175,55,.4);
  color:var(--gold);
  letter-spacing:3px;
  font-size:.75rem;
  text-transform:uppercase;
  margin-bottom:24px;
}

/* Title */
.hero-content h1{
  font-family:var(--font-head);
  font-size:clamp(2.8rem,4vw,4rem);
  color:var(--ivory);
  line-height:1.1;
  margin-bottom:20px;
}

/* Description */
.hero-content p{
  max-width:650px;
  margin:auto;
  font-size:1.1rem;
  line-height:1.7;
  color:rgba(255,255,255,.85);
  margin-bottom:35px;
}

/* Features */
.hero-features{
  display:flex;
  justify-content:center;
  gap:40px;
  border-top:1px solid rgba(255,255,255,.2);
  padding-top:20px;
  margin-bottom:25px;
}

.feature strong{
  display:block;
  font-size:1.5rem;
  color:white;
}

.feature span{
  font-size:.8rem;
  text-transform:uppercase;
  opacity:.7;
}

/* Actions */
.hero-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:16px;
}

/* CTA */
.hero-cta{
  padding:16px 38px;
  border:1px solid var(--gold);
  color:var(--gold);
  text-decoration:none;
  letter-spacing:2px;
  font-size:.85rem;
  text-transform:uppercase;
  transition:.3s;
}

.hero-cta:hover{
  background:var(--gold);
  color:var(--earth);
  transform:translateY(-2px);
}

/* TripAdvisor */
.tour-link{
  font-size:.85rem;
  letter-spacing:1px;
  text-transform:uppercase;
  text-decoration:none;
  color:white;
  border-bottom:1px solid rgba(212,175,55,.3);
  padding-bottom:3px;
  transition:.3s;
}

.tour-link:hover{
  border-color:white;
  transform:translateX(4px);
}

/* Mobile */
@media (max-width:768px){

.hero-safari{
  min-height:65vh;
  padding:30px 18px 35px;
}

.hero-container{
  transform: translateY(-20px);
}

.hero-content h1{
  font-size:2.2rem;
}

.hero-content p{
  font-size:1rem;
}

.hero-features{
  flex-direction:column;
  gap:14px;
}

}


/* ============ TOUR SNAPSHOT ============ */
.snapshot-section {
    padding: 60px 0;
    background-color: var(--ivory); 
    color: var(--earth);
    border-bottom: 1px solid rgba(44, 51, 39, 0.05);
}

.section-head {
    text-align: center; 
    margin-bottom: 40px;
}

.section-head .kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--earth);
}

.snapshot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
}

.snap-card {
    background: #ffffff;
    padding: 20px;
    border: 1px solid rgba(44, 51, 39, 0.1);
    display: flex;
    align-items: center; 
    gap: 15px;
    transition: var(--transition);
}

.snap-card:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(44, 51, 39, 0.05);
}

.snap-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.snap-info b {
    display: block;
    color: var(--earth);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.snap-info span {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.3;
    color: rgba(44, 51, 39, 0.8);
}

/* Specific highlight for the Permit card */
.highlight-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--gold);
}

@media (max-width: 500px) {
    .snapshot-grid {
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 992px) {
    .snapshot-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .snapshot-section { padding: 40px 0; }
    .snapshot-grid { grid-template-columns: 1fr; gap: 10px; }
    .snap-card { padding: 15px; }
    .section-head h2 { font-size: 1.8rem; } 
}


/* ============ ITINERARY (PREMIUM DARK THEME) ============ */
#itinerary {
    padding: 100px 0;
    background-color: var(--earth);
    color: var(--ivory);
}

/* Header adjustments for dark background */
#itinerary .section-head h2 {
    color: var(--gold);
}
#itinerary .section-head p {
    color: rgba(250, 249, 246, 0.7);
}

.itinerary-grid {
    max-width: 900px;
    margin: 50px auto;
    position: relative;
}

.day-block {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
    border-left: 2px solid rgba(250, 249, 246, 0.1);
}

/* The Gold "Bullet" Point */
.day-block::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.4);
}

.day-num {
    position: absolute;
    left: -45px;
    top: -2px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--gold);
}

.day-title b {
    display: block;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--ivory);
}

.day-title span {
    font-size: 0.95rem;
    color: var(--gold);
    font-style: italic;
    opacity: 0.9;
}

.day-body {
    margin-top: 20px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.8;
    color: rgba(250, 249, 246, 0.85); 
}

/* Tags/Chips - subtle glass effect */
.chips {
    margin: 20px 0;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    background: rgba(250, 249, 246, 0.05);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(250, 249, 246, 0.2);
    color: var(--gold);
}

/* Accommodation Box - adjusted for dark background */
.stay {
    background: rgba(250, 249, 246, 0.03); 
    padding: 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-top: 25px;
    border-radius: 4px;
}

.stay b {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.stay ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.stay li {
    margin-bottom: 8px;
    color: var(--ivory);
}

.stay li strong {
    color: var(--gold);
    font-weight: 600;
}

/* Secondary Button for dark background */
.btn {
    display: inline-block;
    padding: 14px 28px;
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn:hover {
    background: var(--gold);
    color: var(--earth);
}

.itinerary-actions {
    display:flex;
    justify-content:center;
    margin-top:30px;
    padding-right:60px;
}

@media (max-width:768px){
  .itinerary-actions{
    padding-right:0;
  }
}

/* Ensure the button stays its natural size on desktop */
#itinerary .itinerary-actions .btn {
    display: inline-block;
    width: auto;
}

@media (max-width: 768px) {
    #itinerary {
        padding: 60px 0; 
    }

    .itinerary-grid {
        margin: 30px 15px; 
    }

    .day-block {
        padding-left: 30px; 
    }

     /* CTA BUTTON FIX:  */
  

    /* Remove the line from the very last day block so it doesn't "hang" */
    .day-block:last-child {
        border-left: 2px solid transparent;
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {

  #itinerary .itinerary-actions,
  #itinerary .day-body > div {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
  }
}

@media (max-width: 480px) {

    .itinerary-grid {
        margin: 20px 10px; 
    }

    .day-block {
        padding-left: 25px; 
    }

    /* Ensure the bullet stays aligned on the ultra-thin padding */
    .day-block::before {
        left: -7px;
    }
}


/* ============ PERMIT & COST (LIGHT THEME) ============ */
#permit {
    padding: 100px 0;
    background-color: var(--ivory);
    color: var(--earth);
}

#permit .section-head {
    margin-bottom: 40px;
}

/* Designing the information card */
#permit .card {
    background: #ffffff;
    border: 1px solid rgba(44, 51, 39, 0.1);
    box-shadow: 0 10px 30px rgba(44, 51, 39, 0.05);
    border-radius: 2px; 
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Subtle gold accent line at the top of the card */
#permit .card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold);
}

#permit .pad {
    padding: 50px;
}

#permit h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--earth);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#permit p {
    font-family: 'Work Sans', sans-serif;
    line-height: 1.7;
    color: rgba(44, 51, 39, 0.8);
    margin-bottom: 20px;
}

#permit strong {
    color: var(--earth);
    font-weight: 700;
}

/* Highlighting the price points */
#permit p strong:contains("$") {
    color: var(--gold);
}

.permit-actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #permit {
        padding: 60px 0; 
    }

    #permit .card {
        margin: 0 15px; 
        border-radius: 4px; 
    }

    #permit .pad {
        padding: 35px 20px; 
        text-align: left;
    }

    #permit h3 {
        font-size: 1.4rem;
        flex-direction: column; 
        align-items: flex-start;
        gap: 5px;
    }

    #permit p {
        font-size: 0.95rem; 
        margin-bottom: 15px;
    }

    /* FIX: Aligning CTA buttons for mobile thumbs */
    #permit .btn {
    flex: 1;
    width: auto;
    text-align: center;
    padding: 12px 16px;
    font-size: 0.8rem;
    }
}

@media (max-width:768px){

  #permit .permit-actions{
      display:flex;
      gap:12px;
  }

  #permit .permit-actions .btn{
      flex:1;
      text-align:center;
      padding:14px 18px;
      font-size:0.85rem;
  }

}

@media (max-width:480px){

  #permit .permit-actions{
      flex-direction:column;
      gap:10px;
  }

  #permit .permit-actions .btn{
      width:100%;
      padding:16px 20px;
      font-size:0.9rem;
  }

}

@media (max-width: 480px) {
    #permit .pad {
        padding: 30px 15px;
    }
    
    #permit h3 {
        font-size: 1.2rem;
    }

    #permit .btn {
      flex: 1 1 calc(50% - 5px);
      padding: 12px 10px;
      font-size: 0.75rem;
  }
}


/* ============ TOUR PRICING (SUBTLE ACCENT) ============ */
#tour-pricing {
    padding: 100px 0;
    background-color: #F2F0E9; 
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.plan {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid rgba(44, 51, 39, 0.1);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    position: relative;
}

/* Elevate the Classic (Middle) plan as the 'Popular' choice */
.plan:nth-child(2) {
    border: 2px solid var(--gold);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(44, 51, 39, 0.1);
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(44, 51, 39, 0.08);
}

.plan .tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.plan .price {
    margin-bottom: 20px;
}

.plan .price b {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--earth);
    display: block;
}

.plan .price .small {
    font-size: 0.8rem;
    color: rgba(44, 51, 39, 0.6);
    text-transform: uppercase;
}

.plan p.small {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--earth);
    margin-bottom: 25px;
    min-height: 60px; 
}

.plan ul {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(44, 51, 39, 0.05);
    padding-top: 20px;
}

.plan li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: rgba(44, 51, 39, 0.8);
}

/* Luxury Bullet Points */
.plan li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

#tour-pricing .permit-actions {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }

    .plan:nth-child(2) {
        transform: none; 
        box-shadow: 0 10px 25px rgba(44, 51, 39, 0.08);
    }
}

@media (max-width: 768px) {
    #tour-pricing {
        padding: 60px 0;
    }

    .pricing-grid {
        grid-template-columns: 1fr; 
        max-width: 450px; 
        margin: 0 auto 40px;
    }

    .plan {
        padding: 35px 25px;
        text-align: center; 
    }

    .plan li {
        text-align: left; 
        font-size: 0.9rem;
    }

    .plan .price b {
        font-size: 2.2rem;
    }

    .plan p.small {
        min-height: auto; 
        margin-bottom: 20px;
    }

  
    .plan .btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 25px;
        padding: 18px 0;
    }
}

@media (max-width: 480px) {
    #tour-pricing {
        padding: 50px 15px;
    }
    
    .plan {
        padding: 30px 20px;
    }
}

#tour-pricing .btn.primary {
  background: var(--gold);
  color: var(--earth);
  padding: 12px 24px;
  border-radius: 2px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

#tour-pricing .btn.primary:hover {
    background-color: var(--ivory);
    color: var(--earth);
    transform: translateY(-2px);
}


/* ============ INCLUSIONS & EXCLUSIONS ============ */
#inclusions {
    padding: 100px 0;
    background-color: var(--ivory);
    color: var(--earth);
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.listbox {
    padding: 40px;
    background: #ffffff;
    border: 1px solid rgba(44, 51, 39, 0.08);
    transition: var(--transition);
}

.listbox h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: var(--earth);
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 5px;
}

/* Base list styling */
.listbox ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.listbox li {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: rgba(44, 51, 39, 0.9);
}

/* Styling the "Included" checkmarks */
.listbox:first-child li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Styling the "Not Included" indicators */
.listbox:last-child li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: rgba(44, 51, 39, 0.3);
    font-weight: normal;
}

/* Subtle hover effect */
.listbox:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 30px rgba(44, 51, 39, 0.04);
}

.inclusions-actions {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

@media (max-width: 768px) {
    #inclusions {
        padding: 60px 0; 
    }

    .two-col {
        grid-template-columns: 1fr; 
        gap: 15px; 
        margin-top: 30px;
    }

    .listbox {
        padding: 30px 20px; 
        border-radius: 4px; 
    }

    .listbox h3 {
        font-size: 1.5rem; 
        margin-bottom: 20px;
    }

    .listbox li {
        font-size: 0.9rem; 
        padding-left: 25px; 
        line-height: 1.5;
        margin-bottom: 12px;
    }

    /* Ensure bullets stay properly aligned with smaller padding */
    .listbox li::before {
        font-size: 1rem;
        top: -1px; 
    }
}

@media (max-width: 480px) {
    #inclusions {
        padding: 50px 15px; 
    }
    
    .listbox {
        padding: 25px 15px;
    }
}


/* ------------- Contact Form --------- */
.quote-section {
  padding: 60px 0; 
  background-color: var(--mist);
  font-family: 'Cormorant Garamond', serif;
  position: relative;
  overflow: hidden;
}

.container-lux {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center; 
}

/* LEFT CONTENT (The "Safari Planning" Text) */
.lux-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.75rem;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 700;
  font-family: sans-serif;
}

.contact-title {
  /* font-size: 2.8rem; */
  line-height: 1.1;
  color: var(--earth);
  margin-bottom: 15px;
}

.contact-intro {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.contact-note {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: 600;
  font-style: italic;
}

.contact-alt {
  font-family: sans-serif;
  font-size: 0.9rem;
  border-top: 1px solid rgba(44, 51, 39, 0.1); /* Earth color with low opacity */
  padding-top: 20px;
  line-height: 1.6;
}

.contact-alt a {
  color: var(--earth);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  transition: var(--transition);
}

.contact-alt a:hover {
  color: var(--gold);
}

/* THE FORM (Luxury Glass/Modern White) */
.contact-form {
  background: var(--ivory); 
  padding: 35px 40px; 
  border-radius: 8px; 
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 15px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid #d1d1d1;
  background: transparent;
  font-family: inherit;
  font-size: 1.05rem;
  color: var(--earth);
  transition: var(--transition);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--gold);
}

/* Styled Date Input to match others */
input[type="date"] {
  color: #888;
  font-family: sans-serif;
  font-size: 0.9rem;
}

.contact-form textarea {
  height: 80px;
  resize: none;
}

#travel-date:invalid {
    color: rgba(255,255,255,0.6);
}

/* Removes the default 'check' or 'arrow' icons in some mobile browsers if they interfere */
input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1); /* Makes the icon white to match your ivory theme */
    opacity: 0.5;
}

/* Action Button */
.btn-primary {
  width: 100%;
  background-color: var(--earth);
  color: var(--ivory);
  padding: 16px;
  border: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  font-size: 0.85rem;
  font-family: sans-serif;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 5px;
}

.btn-primary:hover {
  background-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-trust {
  font-size: 0.75rem;
  text-align: center;
  margin-top: 15px;
  color: #999;
  font-family: sans-serif;
  letter-spacing: 0.5px;
}

/* Responsiveness */
@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .contact-title { font-size: 2.8rem; }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 40px 25px; }
  .contact-title { font-size: 2.2rem; }
}


/* ============ FAQ SECTION (SAND THEME) ============ */
.faq-section {
    padding: 100px 0;
    background-color: #F2F0E9; /* Your Sand accent */
    color: var(--earth);
}

.faq-container {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* The Accordion Card */
details {
    background: #ffffff;
    border: 1px solid rgba(44, 51, 39, 0.1);
    border-radius: 4px;
    transition: var(--transition);
    overflow: hidden;
}

summary {
    padding: 24px 30px;
    list-style: none; /* Hide default arrow */
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

summary::-webkit-details-marker {
    display: none; /* Hide for Safari */
}

summary:hover {
    background-color: rgba(212, 175, 55, 0.05);
}

/* The Chevron Icon */
.chev {
    width: 20px;
    height: 20px;
    position: relative;
}

.chev::before, .chev::after {
    content: "";
    position: absolute;
    background-color: var(--gold);
    transition: transform 0.3s ease;
}

/* Horizontal line */
.chev::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Vertical line (turns into minus when open) */
.chev::after {
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* Rotate Vertical Line when Open */
details[open] .chev::after {
    transform: translateX(-50%) rotate(90deg);
}

details[open] {
    border-color: var(--gold);
    box-shadow: 0 10px 25px rgba(44, 51, 39, 0.05);
}

/* Content inside the drawer */
.faq-container .content {
    padding: 0 30px 30px;
    font-family: 'Work Sans', sans-serif;
    line-height: 1.7;
    color: rgba(44, 51, 39, 0.85);
}

.faq-container .content p {
    margin-bottom: 15px;
}

.faq-container .content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.faq-container .content li {
    margin-bottom: 8px;
    color: var(--earth);
}

/* Bottom CTA link */
.faq-cta {
    text-align: center;
    margin-top: 50px;
}

.faq-cta .btn.primary {
    background-color: #25D366; 
    border: none;
    color: #fff;
}

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

    .faq-container {
        margin: 30px 15px; 
        gap: 10px;
    }

    summary {
        padding: 18px 20px; 
        font-size: 1.15rem; 
        line-height: 1.4;
    }

    /* Ensure the chevron doesn't shrink or move weirdly with long questions */
    .chev {
        width: 16px; 
        height: 16px;
        flex-shrink: 0; 
        margin-left: 15px;
    }

    .faq-container .content {
        padding: 0 20px 25px; 
        font-size: 0.95rem;
    }

    .faq-cta {
        margin-top: 40px;
        padding: 0 15px;
    }

    /* Make the WhatsApp/CTA button full width on small screens */
    .faq-cta .btn {
      display: block;
      width: auto;
      max-width: 200px;
      margin: 0 auto;
      padding: 14px 20px;
      text-align: center;
  }
}

@media (max-width: 480px) {
    summary {
        font-size: 1.05rem;
        padding: 15px;
    }
    
    .faq-container .content {
        padding: 0 15px 20px;
    }
}


/* ============ WHY BOOK WITH US (DARK PREMIUM) ============ */
.why-section {
    padding: 100px 0;
    background-color: var(--earth); /* Re-establishing the dark brand anchor */
    color: var(--ivory);
}

#why .section-head h2 {
    color: var(--ivory);
}

.why-flex-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.why-box {
    background: rgba(250, 249, 246, 0.03); /* Extremely subtle ivory tint */
    border: 1px solid rgba(212, 175, 55, 0.2); /* Soft gold border */
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-box:hover {
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.why-box-icon {
    font-size: 2.2rem;
    margin-bottom: 20px;
    /* Soft glow behind the emoji icon */
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.why-box b {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold);
    margin-bottom: 12px;
}

.why-box p {
    font-family: 'Work Sans', sans-serif;
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(250, 249, 246, 0.7);
}

/* TripAdvisor Link Styling */
.why-box a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-weight: 600;
}

.why-box a:hover {
    color: var(--ivory);
}

.why-buttons {
    text-align: center;
    margin-top: 40px;
}


@media (max-width: 992px) {
    .why-section {
        padding: 80px 0;
    }
    
    .why-flex-grid {
        /* Force a clean 2x2 grid on tablets to avoid 'lonely' cards */
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

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

    .why-flex-grid {
        margin: 30px 15px;
    }

    .why-box {
        padding: 30px 20px;
    }

    .why-box b {
        font-size: 1.25rem; /* Slightly smaller title for better line-wrapping */
    }

    .why-box p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .why-flex-grid {
        grid-template-columns: 1fr; /* Full stack on phones */
    }

    .why-buttons {
        padding: 0 15px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* Make CTA buttons full width at the bottom of the section */
    .why-buttons .btn {
    display: block;
    width: auto;
    max-width: 260px;
    margin: 0 auto;
    text-align: center;
    padding: 14px 18px;
}
}


/* ============ RELATED TOURS (CLEANED & FIXED) ============ */
.related-section {
    padding: 100px 0;
    background-color: var(--ivory);
    color: var(--earth);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 25px;
    margin-top: 40px;
}

.related-tour-card {
    background: #ffffff;
    border: 1px solid rgba(44, 51, 39, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition);
    overflow: hidden;
}

/* FIX: Ensure the link allows internal content to grow */
.related-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.related-tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(44, 51, 39, 0.1);
}

/* Media/Image Area */
.related-tour-media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.related-tour-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.related-tour-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
}

.related-tour-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
}

.related-tour-price {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Body Content Styling */
.related-tour-body {
    padding: 25px;
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
}

.related-tour-info {
    margin-bottom: 20px;
}

.info-group {
    margin-bottom: 15px;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(44, 51, 39, 0.8);
}

/* Labels styled in Gold */
.info-group strong {
    display: block;
    color: var(--gold); 
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
    font-weight: 700;
}

/* Tags/Pills */
.related-tour-tags {
    display: flex;
    gap: 8px;
    margin-top: auto; /* Pushes tags to the bottom of the body area */
    padding-top: 15px;
}

.related-tour-pill {
    background-color: var(--earth);
    color: var(--ivory);
    font-family: 'Work Sans', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 2px;
}

/* Footer & Button */
.related-tour-footer {
    border-top: 1px solid rgba(44, 51, 39, 0.05);
    background: #F9F9F7;
    transition: var(--transition);
}

.related-tour-btn {
    display: block;
    padding: 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--earth);
    transition: var(--transition);
}

/* Unified Hover Effect */
.related-tour-card:hover .related-tour-footer {
    background-color: var(--gold);
}

.related-tour-card:hover .related-tour-btn {
    color: #ffffff;
}

/* Responsive adjustment */
/* @media (max-width: 992px) {
    .related-grid {
        grid-template-columns: 1fr;
    }
} */

@media (max-width: 992px) {
    .related-section {
        padding: 60px 0;
    }

    .related-grid {
        /* Instead of just 1fr, let's keep 2 columns for tablets 
           and only drop to 1 column for phones */
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .related-grid {
        grid-template-columns: 1fr;
        /* Prevent cards from stretching too wide on large phones */
        max-width: 480px; 
        margin: 30px auto 0;
    }

    .related-tour-media {
        height: 200px; /* Slightly shorter images for mobile vertical space */
    }

    .related-tour-title {
        font-size: 1.1rem;
    }

    .related-tour-body {
        padding: 20px; /* Tighter padding for mobile */
    }

    /* FIX: Button Alignment for Mobile */
    .related-tour-btn {
        text-align: center; /* Center the text for mobile focus */
        padding: 22px 15px; /* Taller tap target for thumbs */
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .related-tour-tags {
        /* Allow tags to wrap if the phone is very narrow (like iPhone SE) */
        flex-wrap: wrap; 
    }
    
    .related-tour-pill {
        font-size: 0.6rem;
        padding: 4px 8px;
    }
}


/* ============ SITE FOOTER (THE FINAL ANCHOR) ============ */
.site-footer {
    background-color: var(--earth);
    color: var(--ivory);
    padding: 60px 0 20px;
    position: relative;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; 
    align-items: center;
    gap: 35px;
}

/* Brand Section */
.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--gold);
}

.brand-name {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.brand-tagline {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    display: block;
    margin-top: 5px;
}

.foot-description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 450px;
    color: rgba(250, 249, 246, 0.7);
    margin-bottom: 18px;
}

/* TripAdvisor Badge */
.ta-badge {
    display: inline-flex;
    flex-direction: column;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 4px;
    border-left: 3px solid #00af87; 
}

.ta-stars { font-size: 0.9rem; margin-bottom: 5px; }
.ta-label { color: var(--ivory); font-size: 0.8rem; font-weight: 600; }

/* Contact Card Styling */
.foot-contact-card {
    background-color: rgba(250, 249, 246, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.contact-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.contact-list a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover { color: var(--gold); }

/* Footer Buttons */
.foot-actions {
    display: flex;
    gap: 15px;
}

.white-btn {
    background: var(--ivory);
    color: var(--earth);
    border: none;
}

.outline-btn {
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--ivory);
}

.white-btn:hover, .outline-btn:hover {
    background: var(--gold);
    color: var(--ivory);
    border-color: var(--gold);
}

/* Copyright Area */
.copyright {
    grid-column: 1 / -1; 
    text-align: center;
    padding-top: 18px;
    margin-top: 18px;
    border-top: 1px solid rgba(250, 249, 246, 0.05);
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.4);
}

@media (min-width: 769px) {
  .foot-actions {
      display: flex;
      flex-direction: row;
      justify-content: center;
      gap: 10px;
      width: auto;
  }

  .foot-actions .btn {
      width: auto;
      padding: 12px 22px;
      font-size: 0.8rem;
  }

}

@media (max-width: 850px) {

    .foot-grid {
        grid-template-columns: 1fr;
        gap: 18px; /* reduced from 25 */
        text-align: center;
    }

    .contact-list {
        margin: 0 0 10px 0; /* reduced from 15 */
    }

    .foot-actions {
        gap: 10px; /* slightly tighter buttons */
    }

    .copyright {
        margin-top: 0;
        padding-top: 10px; /* reduced from 12 */
        font-size: 0.75rem;
    }

}

@media (max-width: 480px) {
    .brand-name {
        font-size: 1.5rem;
    }
    
    .contact-inner h3 {
        font-size: 1.5rem;
    }
}


/* Optimized CSS Variables (Integrated with your root) */
:root {
    --wa-green: #25D366;
    --wa-shadow: rgba(37, 211, 102, 0.3);
}

.wa-fab {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    
    background: var(--wa-green);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px var(--wa-shadow);
    transition: var(--transition);
    overflow: hidden;
    white-space: nowrap;
}

/* Hover effects */
.wa-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--wa-shadow);
    filter: brightness(1.05);
}

.wa-icon {
    font-size: 1.4rem;
    line-height: 1;
}

/* Responsive Logic: Collapsing the label on Mobile */
@media (max-width: 600px) {
    .wa-fab {
        bottom: 20px;
        right: 20px;
        padding: 0;
        width: 56px; 
        height: 56px;
        border-radius: 50%;
    }
    
    .wa-text {
        display: none; 
    }
    
    .wa-pulse {
        display: none; 
    }
}

/* Simple Pulse Animation for the Icon (Optional) */
@keyframes soft-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.wa-icon { animation: soft-pulse 3s infinite ease-in-out; }

/* Mobile Adjustments for High Visibility */
@media (max-width: 600px) {
    .wa-fab {
        bottom: 80px !important; 
        right: 25px !important;
        padding: 0 !important;
        box-shadow: 0 12px 30px var(--wa-shadow);
    }

    .wa-icon {
        font-size: 1.8rem; 
    }

    .wa-text, .wa-pulse {
        display: none; 
    }
}

@media (min-width: 601px) {

  .wa-fab {
      width: 56px;
      height: 56px;
      padding: 0;
      border-radius: 50%;
      transition: all 0.3s ease;
  }

  .wa-text {
      display: none;
  }

  .wa-fab:hover {
      width: auto;
      padding: 10px 16px;
  }

  .wa-fab:hover .wa-text {
      display: inline;
  }

}


