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

.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:85vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:60px 24px;
  color:white;
}

/* 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 35%;
  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,.10) 0%,
    rgba(0,0,0,.25) 40%,
    rgba(0,0,0,.45) 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:80vh;
  padding:40px 18px;
}

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

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

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

}


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

.tour-snapshot__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.tour-snapshot__item {
  display: flex;
  align-items: flex-start; 
}

.snapshot-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.3); 
  border-radius: 50%;
  transition: var(--transition);
}

.tour-snapshot__item:hover .snapshot-icon {
  background: var(--gold);
}

.snapshot-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold); 
  transition: var(--transition);
}

.tour-snapshot__item:hover .snapshot-icon svg {
  fill: #fff;
}

.snapshot-text {
  display: flex;
  flex-direction: column;
}

.tour-snapshot__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #8c8c8c; 
  margin-bottom: 6px;
}

.tour-snapshot__value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--earth); 
  line-height: 1.1;
}

@media (max-width: 1024px) {
  .tour-snapshot__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .tour-snapshot { padding: 3rem 0; }
  .tour-snapshot__inner { grid-template-columns: 1fr; gap: 2rem; }
}


/* ====== OVERVIEW SECTION ====== */
.tour-intro {
  padding: 48px 20px;
  background-color: var(--mist);
  border-top: 1px solid rgba(44, 51, 39, 0.08);
  border-bottom: 1px solid rgba(44, 51, 39, 0.08);
}

.tour-intro .tour-head,
.tour-intro .tour-prose {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.tour-head{
  text-align:center;
  margin-bottom:22px;
}

.tour-eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.tour-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--earth);
  margin-bottom: 10px;
}

.tour-title::after{
  content:"";
  display:block;
  width:60px;
  height:2px;
  background:var(--gold);
  margin:12px auto 0;   /* reduced from 16px */
  opacity:.7;
}

.tour-prose {
  max-width:720px;
  margin:0 auto;
  text-align:left;
}

.tour-lede {
  font-size: 1.35rem;
  line-height: 1.7;
  color: var(--earth);
  font-weight: 500;
  margin-bottom:18px;   /* reduced from 28px */
}

.tour-prose p {
  font-size: 1.1rem;
  line-height: 1.85;
  color: rgba(44,51,39,0.85);
  margin-bottom:18px;   /* reduced from 26px */
}

.tour-prose strong{
  color: var(--earth);
  font-weight:600;
}

.tour-cta{
  text-align:center;
  margin-top:32px;
}

.tour-cta .btn-primary{
  display:inline-block;
  padding:12px 28px;
  background:var(--gold);
  color:var(--earth);
  text-decoration:none;
  font-weight:600;
  border-radius:3px;
  transition:var(--transition);
  width:auto;
}

.btn-primary:hover{
  opacity:.9;
}


/* ====== ROUTE MAP SECTION ====== */
.map-box .section-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 700;
    color: #af770f; 
    margin-bottom: 10px;
}

.map-box .section-title {
    font-family: 'Cormorant Garamond', serif; 
    font-size: 2.6rem; 
    color: var(--earth);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 14px;
    color: #555;
}

#route-map {
  padding: 50px 20px;
  background-color: var(--ivory);
  color: var(--earth);
}

.map-box {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

#uganda-route-map {
  width: 100%;
  height: 440px; 
  background: #fff;
  border: 1px solid #eceae0;
  border-radius: 12px;
  margin: 20px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  background-image: url('your-map-path.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.tour-route-note {
  font-style: italic;
  font-size: 1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 20px;
  border-top: 1px solid #eceae0;
}

/* --- Responsive Fix --- */
@media (max-width: 768px) {
  #uganda-route-map {
    height: 350px;
  }
}

/* Styling for the Numbered Markers */
.map-number-label {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pin-circle {
    width: 24px;
    height: 24px;
    background-color: #af770f; /* Your Gold */
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* Make the map look more premium */
.leaflet-container {
    background: #f8f7f2 !important;
}


/* ---------- ITINERARY SECTION ---------- */
#itinerary{
  padding: 100px 0;
  background: #3a4434;
  color: var(--ivory);
}

.section-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.kicker{
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  position: relative;
}

.kicker::after{
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
  opacity: .6;
}

#itinerary .section-head h2{
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2.6rem; 
  margin-bottom: 12px;
  line-height: 1.2;
}

#itinerary .section-head p{
  font-size: 1.05rem;
  color: rgba(250,249,246,.75);
  max-width: 520px;
  margin: 0 auto;
}

.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;
}

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

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

.itinerary-btn{
  text-align:center;
  margin-top:40px;
}

.btn{
  display:inline-block;
  padding:14px 28px;
  text-decoration:none;
  font-family:'Work Sans', sans-serif;
  font-weight:600;
  font-size:.85rem;
  transition:all .25s ease;
  border:1px solid var(--gold);
  color:var(--gold);
  background:transparent;
}

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

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

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

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

}

@media (max-width: 768px) {

  #itinerary .btn {
      flex: 1;
      width: auto;
      padding: 12px 16px;
      font-size: 0.8rem;
      text-align: center;
  }

  #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;
    }
}


/* ========= PRICING & INCLUSION SECTION ========= */
#pricing{
  background: var(--ivory);
  padding:100px 20px;
  color:var(--earth);
}

/* Header */
.tour-pricing-header{
  text-align:center;
  max-width:800px;
  margin:0 auto 60px;
}

.tour-section-eyebrow{
  display:block;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:.8rem;
  color:var(--gold);
  margin-bottom:8px;
}

#pricing .tour-title{
  font-family:'Cormorant Garamond', serif;
  font-size:2.6rem;
  color:var(--earth);
}

.tour-pricing-intro{
  font-size:1.05rem;
  color:rgba(44,51,39,.75);
  margin-top:12px;
}

/* ===== PRICING GRID ===== */
.pricing-table-wrap{
max-width:900px;
margin:0 auto 30px;
}

.tour-pricing-table{
width:100%;
border-collapse:collapse;
background:#fff;
border:1px solid rgba(44,51,39,.08);
}

.tour-pricing-table thead{
background:var(--earth);
color:#fff;
}

.tour-pricing-table th{
padding:14px 18px;
text-align:left;
font-size:.8rem;
letter-spacing:1px;
text-transform:uppercase;
}

.tour-pricing-table td{
padding:16px 18px;
border-top:1px solid rgba(44,51,39,.08);
font-size:.92rem;
color:rgba(44,51,39,.85);
}

.tour-pricing-table .price{
font-family:'Cormorant Garamond', serif;
font-size:1.5rem;
color:var(--earth);
font-weight:600;
}

/* Highlight recommended */
.tour-pricing-table .recommended{
background:rgba(212,175,55,.05);
}

.tag{
background:var(--gold);
color:#fff;
font-size:.6rem;
padding:3px 8px;
margin-left:8px;
border-radius:20px;
text-transform:uppercase;
letter-spacing:1px;
}

/* pricing note */
.tour-pricing-note{
text-align:center;
font-size:.85rem;
color:rgba(44,51,39,.6);
margin-top:20px;
}

@media (max-width:768px){

/* hide header */
.tour-pricing-table thead{
display:none;
}

/* table becomes cards */
.tour-pricing-table,
.tour-pricing-table tbody,
.tour-pricing-table tr,
.tour-pricing-table td{
display:block;
width:100%;
}

/* card style */
.tour-pricing-table tr{
margin-bottom:20px;
border:1px solid rgba(44,51,39,.08);
border-radius:6px;
overflow:hidden;
background:#fff;
}

/* cells */
.tour-pricing-table td{
padding:14px 18px;
border:none;
border-bottom:1px solid rgba(44,51,39,.06);
font-size:.9rem;
}

/* labels */
.tour-pricing-table td::before{
content:attr(data-label);
display:block;
font-size:.7rem;
letter-spacing:1px;
text-transform:uppercase;
color:rgba(44,51,39,.6);
margin-bottom:4px;
}

/* price */
.tour-pricing-table .price{
font-size:1.4rem;
}

/* recommended */
.tour-pricing-table .recommended{
background:rgba(212,175,55,.08);
}

}

/* ===== INCLUSIONS ===== */
.tour-inclusions__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  background:#fff;
  border:1px solid rgba(44,51,39,.08);
  padding:55px;
  border-radius:6px;
  max-width:1100px;
  margin:0 auto;
}

.tour-inclusions-group .tour-subtitle{
  font-family:'Cormorant Garamond', serif;
  color:var(--gold);
  font-size:1.3rem;
  margin-bottom:25px;
  border-bottom:1px solid rgba(212,175,55,.3);
  padding-bottom:10px;
}

.tour-inclusions-group ul{
  list-style:none;
  padding:0;
}

.tour-inclusions-group li{
  position:relative;
  padding-left:28px;
  margin-bottom:16px;
  font-size:.95rem;
  color:rgba(44,51,39,.8);
}

/* icons */
.tour-inclusions-group:first-child li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:#3aa76d;
  font-weight:700;
}

.tour-inclusions-group:last-child li::before{
  content:"✕";
  position:absolute;
  left:0;
  color:#c74d4d;
}

/* ===== RESPONSIVE ===== */
@media (max-width:1024px){

  .pricing-grid{
    grid-template-columns:1fr;
    max-width:500px;
    gap:30px;
  }

  .price-card.featured{
    transform:scale(1.02);
  }

  .tour-inclusions__grid{
    grid-template-columns:1fr;
    padding:40px 25px;
    gap:40px;
  }

}

@media (max-width:768px){

  #pricing{
    padding:60px 15px;
  }

  .price-amount{
    font-size:2.3rem;
  }

}


/* ============= PERMIT COST ========= */
#permit{
  padding:100px 0;
  background: var(--mist);
}

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

#permit .kicker{
  display:block;
  font-size:.75rem;
  letter-spacing:2px;
  text-transform:uppercase;
  font-weight:600;
  color:var(--gold);
  margin-bottom:8px;
}

#permit .section-head h2{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--earth);
  margin-bottom: 10px;
  line-height:1.2;
}

/* Permit price grid */
.permit-prices{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  max-width:850px;
  margin:0 auto 30px;
}

.permit-item{
  background:#f6f4ec;
  padding:20px;
  border:1px solid rgba(44,51,39,0.08);
}

.permit-type{
  display:block;
  font-size:.8rem;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:6px;
  font-weight:600;
}

.permit-price{
  font-family:'Cormorant Garamond', serif;
  font-size:2rem;
  color:var(--gold);
  display:block;
}

.permit-item small{
  color:rgba(44,51,39,.6);
}

/* Info card */
#permit .card{
  background:#fff;
  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;
}

#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:18px;
}

#permit p{
  line-height:1.7;
  color:rgba(44,51,39,0.8);
  margin-bottom:18px;
}

.permit-factors{
  margin-top:10px;
  padding-left:18px;
}

.permit-factors li{
  margin-bottom:6px;
}

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

.tour-pricing-cta{
  text-align:center;
  margin-top:50px;
}

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

  #permit{
    padding:60px 0;
  }

  .permit-prices{
    grid-template-columns:1fr;
  }

  #permit .card{
    margin:0 15px;
  }

  #permit .pad{
    padding:35px 20px;
  }

  #permit .btn{
  width:fit-content;
  margin:0 auto;
  display:block;
}

}


/* ====== WHY US SECTION ====== */
.why-section {
  padding: 100px 0;
  background: #3a4434;
  color: var(--ivory);
}

#why .section-head h2 {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif; 
  font-size: 2.6rem; 
  margin-bottom: 12px;
  line-height: 1.2;
}

.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); 
    border: 1px solid rgba(212, 175, 55, 0.2); 
    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;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

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

.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;
}
}


/* ============== FAQs SECTION ========== */
.faq-section {
    padding: 100px 20px;
    background-color: var(--stone); 
    color: var(--earth);          
}

.faq-container {
    max-width: 850px; 
    margin: 0 auto;
}

.faq-intro {
max-width: 700px;
margin: 10px auto 40px;
text-align: center;
color: #555;
line-height: 1.7;
font-size: 1rem;
}

/* Accordion Item Styling */
details {
    border: 1px solid rgba(44, 51, 39, 0.08);
    padding: 14px 22px;
    margin-bottom: 14px;
    background: white;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
}

details:first-of-type {
    border-top: 1px solid rgba(44, 51, 39, 0.1);
}

details[open] {
    padding-bottom: 20px;
    border-color: rgba(175,119,15,0.25);
    box-shadow: 0 8px 18px rgba(0,0,0,0.05);
    background: #fffdf7;
}

/* Summary / Question Styling */
summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-family: var(--font-head);
    font-weight: 500;
    color: var(--earth);
    padding: 20px 0;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

/* Custom Gold Plus/Minus Toggle */
.chev::before {
    content: '+';
    font-size: 1.8rem;
    color: #af770f; 
    font-weight: 300;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

details[open] .chev::before {
    content: '−'; 
    transform: rotate(180deg);
}

/* Answer / Content Styling */
.faq-section .content {
    padding: 5px 40px 25px 0; 
    color: #4a4a4a; 
    line-height: 1.8;
    font-size: 1.05rem;
    animation: fadeIn 0.4s ease-out;
}

summary:hover {
color: var(--gold);
}

details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.04);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-section .content ul {
    padding-left: 20px;
    margin-top: 15px;
}

.faq-section .content li {
    margin-bottom: 10px;
}

/* WhatsApp CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    /* background: white; */
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.faq-cta .btn.primary {
    background: #25d366; /* WhatsApp Green */
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.faq-cta .btn.primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
    .faq-section {
        padding: 80px 15px;
    }
    
    summary {
        font-size: 1.1rem;
        padding: 15px 0;
    }
    
    .faq-cta .btn.primary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
}

    .faq-cta {
        margin-top: 40px;
        padding: 25px 20px;
        display: flex;
        justify-content: center;
    }
}


/* ============ RELATED TOURS (CLEANED & FIXED) ============ */
.related-section .section-head h2{
font-family:'Cormorant Garamond', serif;
font-size:2.6rem;
color:var(--earth);
margin-bottom:12px;
line-height:1.2;
}

.related-section .section-head{
margin-bottom:30px;
}

.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-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.2;
}

.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-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;
}

@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;
    }
}


/* ========= BOTTOM EQUIRY FORM  ========== */
.tour-bottom-cta{
padding:70px 20px;
background:var(--mist);
border-top:1px solid rgba(44,51,39,.05);
border-bottom:1px solid rgba(44,51,39,.05);
}

/* GRID LAYOUT */
.tour-bottom-cta__inner{
max-width:1100px;
margin:0 auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:55px;
align-items:start;
}

/* LEFT COPY */
.tour-section-eyebrow{
text-transform:uppercase;
letter-spacing:.15em;
font-size:.85rem;
font-weight:700;
color:var(--gold);
display:block;
margin-bottom:15px;
}

.tour-section-title{
font-family:'Cormorant Garamond', serif;
font-size:2.6rem;
color:var(--earth);
margin-bottom:12px;
line-height:1.2;
}

.tour-bottom-cta__copy p{
font-size:1.1rem;
line-height:1.7;
color:#444;
margin-bottom:22px;
max-width:480px;
}

/* LINK BUTTON */
.tour-bottom-cta__btn{
font-weight:700;
text-decoration:none;
color:var(--earth);
border-bottom:2px solid var(--gold);
padding-bottom:3px;
transition:.25s;
}

.tour-bottom-cta__btn:hover{
color:var(--gold);
}

/* FORM CARD */
.tour-form{
background:#fff;
padding:36px;
border-radius:6px;
box-shadow:0 25px 60px rgba(44,51,39,.10);
border:1px solid rgba(44,51,39,.06);
}

/* FORM FIELDS */
.tour-form-field{
margin-bottom:18px;
}

.tour-form-field label{
display:block;
font-size:.75rem;
letter-spacing:1.5px;
text-transform:uppercase;
font-weight:700;
margin-bottom:8px;
color:var(--earth);
}

.tour-form-field input,
.tour-form-field textarea,
.tour-form-field select{
width:100%;
padding:14px;
background:#fcfcf9;
border:1px solid #e2e2d5;
border-radius:3px;
font-size:1rem;
transition:.2s;
box-sizing:border-box;
}

.tour-form-field input:focus,
.tour-form-field textarea:focus{
outline:none;
border-color:var(--gold);
background:#fff;
box-shadow:0 0 0 3px rgba(212,175,55,.1);
}

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

@media (max-width:600px){
.tour-form-row{
grid-template-columns:1fr;
}

}

/* SUBMIT BUTTON */
.btn-primary{
display:block;
width:100%;
max-width:260px;
margin:20px auto 0;
background:var(--gold);
color:var(--earth);
padding:16px 22px;
border:none;
font-weight:800;
letter-spacing:2px;
text-transform:uppercase;
cursor:pointer;
transition:.25s;
text-align:center;
}

.btn-primary:hover{
background:var(--earth);
color:var(--gold);
transform:translateY(-2px);
box-shadow:0 10px 20px rgba(44,51,39,.15);
}


/* MOBILE */

@media (max-width:992px){

.tour-bottom-cta__inner{
grid-template-columns:1fr;
gap:50px;
}

.tour-section-title{
font-size:2.2rem;
}

}

@media (max-width:600px){

.tour-bottom-cta{
padding:55px 16px;
}

.tour-form{
padding:30px 22px;
}

.budget-options{
grid-template-columns:1fr;
}

}


/* ========== Site Footer ========== */
.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;
  }

}

