/* Brand Variables Integrated */
:root {
  --gold: #D4AF37;
  --earth: #2C3327;
  --ivory: #FAF9F6;
  --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); /* Dark text on gold for readability */
  padding: 12px 24px;
  border-radius: 2px; /* Sharper edges for a premium look */
  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: 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: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Increase side padding to ensure a 'safe zone' on all devices */
  padding: 80px 24px; 
  box-sizing: border-box;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  /* Changed from 100% to help with browser calculation bugs on narrow screens */
  width: 100%; 
}

/* 1. Lighten the image itself using filters */
.tour-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* Adds actual "pop" to the photo */
  filter: brightness(1.1) contrast(1.05); 
}

/* 2. Soften the overlay into a radial 'vignette' */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* This creates a soft dark 'cloud' behind the text only, 
     leaving the corners and center much brighter */
  background: radial-gradient(
    circle at 20% 50%, 
    rgba(23, 23, 23, 0.7) 0%, 
    rgba(23, 23, 23, 0.2) 60%, 
    rgba(23, 23, 23, 0) 100%
  );
  z-index: 1;
}

/* 3. Mobile Specific: Maximum Brightness */
@media (max-width: 768px) {
  .hero-overlay {
    /* On mobile, we only darken the bottom 40% where the text sits */
    background: linear-gradient(
      to bottom,
      rgba(23, 23, 23, 0) 0%,
      rgba(23, 23, 23, 0.1) 40%,
      rgba(23, 23, 23, 0.8) 100%
    );
  }
  
  .tour-hero__bg img {
    /* Extra boost for smaller screens */
    filter: brightness(1.2); 
  }

  /* Protect text readability since background is now brighter */
  .hero-content h1, 
  .hero-content p {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
  }
}


/* --- Content Styling --- */
.hero-content .badge {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ivory);
  margin-bottom: 20px;
  display: inline-block;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--gold);
}

.hero-content h1 span {
  color: var(--accent);
  font-style: italic;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  /* color: var(--text-muted); */
  max-width: 500px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.8);
}

.hero-features {
  display: flex;
  gap: 40px;
  /* border-top: 1px solid var(--border-soft); */
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Make the picture tag act as a background */
.tour-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* Sits at the very bottom */
}

.feature strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: #ffffff;
}

.feature span {
  font-size: 0.8rem;
  text-transform: uppercase;
  /* color: var(--text-muted); */
  color: rgba(255, 255, 255, 0.6);
}


/* --- Form Card Styling --- */
.form-card {
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent */
  backdrop-filter: blur(10px); /* Frosty effect */
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 25px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.form-header { margin-bottom: 30px; }
.form-header h3 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 5px; }
.form-header p { font-size: 0.9rem; color: var(--text-muted); }

.safari-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-row .qty { grid-column: span 1; max-width: 100px; }

/* Base style for all devices (standard 50/50) */
.form-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 15px; 
}

@media (min-width: 992px) {
  #booking-dates {
    display: grid !important;
    /* 60% for Departure, 40% for Phone (minus gap) */
    grid-template-columns: 50% calc(50% - 15px) !important; 
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
    /* 1. Force the row to behave as a grid and ignore ALL previous settings */
    section #booking-dates.form-row {
        display: grid !important;
        /* This gives Date 40% and Phone 60% - the Phone field WILL be wider now */
        grid-template-columns: 50% 50% !important; 
        column-gap: 8px !important; 
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* 2. Reset the children so they don't fight the grid */
    #booking-dates .form-group {
        width: auto !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    /* 3. Make the inputs fit perfectly */
    #booking-dates input, 
    #booking-dates .date-selector {
        width: 100% !important;
        display: block !important;
        padding: 10px 4px !important; /* Minimal internal padding */
        font-size: 0.8rem !important;
        box-sizing: border-box !important;
    }

    /* 4. Hide the select arrow entirely if it's still crowding the date field */
    #booking-dates .date-selector {
        background-image: none !important;
        text-align: left;
    }
}

/* Specific styling for screens 480px and down */
@media screen and (max-width: 480px) {
    /* 1. Refined Grid Split */
    section #booking-dates.form-row {
        display: grid !important;
        /* At 480px, we can go 45/55 for a very balanced look */
        grid-template-columns: 45% 55% !important; 
        column-gap: 12px !important; /* Wider gap for a cleaner look */
        width: 100% !important;
    }

    /* 2. Enhanced Input Touch Area */
    #booking-dates input, 
    #booking-dates .date-selector {
        padding: 12px 10px !important; /* Taller inputs are easier to tap */
        font-size: 0.9rem !important;  /* Slightly larger text for readability */
        border-radius: 8px !important;
        background-color: #eceae0 !important; /* Your Ivory/Sand accent */
    }

    /* 3. Label Polish */
    #booking-dates label {
        font-size: 0.7rem !important;
        letter-spacing: 1px;
        color: #2C3327; /* Using your --earth color */
        margin-bottom: 6px !important;
        text-transform: uppercase;
    }

    /* 4. Select Arrow Adjustment */
    #booking-dates .date-selector {
        background-position: right 10px center !important;
        background-size: 0.8em !important;
    }
}

/* 5. Extra Safety for the "Absolute Smallest" (Legacy phones) */
@media screen and (max-width: 340px) {
    section #booking-dates.form-row {
        grid-template-columns: 50% 50% !important; /* Almost 50/50 when space is critical */
        column-gap: 6px !important;
    }
    
    #booking-dates input, 
    #booking-dates .date-selector {
        font-size: 0.75rem !important; /* Shrink text so it doesn't clip */
        padding: 10px 4px !important;
    }

    /* 6. Absolute Smallest Devices (320px - 340px) */
@media screen and (max-width: 340px) {
    section #booking-dates.form-row {
        /* Shifted to 42/58 to prioritize the Phone/Pax input field */
        grid-template-columns: 50% 50% !important; 
        column-gap: 5px !important; /* Minimum possible gap */
    }

    #booking-dates label {
        /* Tiny but bold labels to save vertical and horizontal space */
        font-size: 0.6rem !important;
        letter-spacing: 0; 
    }

    #booking-dates input, 
    #booking-dates .date-selector {
        /* Very tight padding to maximize visible text area */
        padding: 10px 4px !important;
        font-size: 0.78rem !important; 
        height: 40px !important; /* Fixed height for consistency */
    }

    /* Remove the arrow icon on ultra-small screens to free up space */
    #booking-dates .date-selector {
        background-image: none !important;
        padding-left: 2px !important;
    }
  }
}


  #booking-dates .form-group:first-child {
    width: 100%;
  }

  #booking-dates .form-group:last-child {
    width: 100%;
  }

/* Ensure the quantity field still behaves */
.form-row .qty { 
  grid-column: span 1; 
  max-width: 100px; 
}

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: var(--text-muted); }

.form-group input {
  padding: 12px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background-color: #faf9f6;
}

.form-footer {
  margin-top: 25px;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Textarea Styling --- */
textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: none; /* Keeps the card height stable */
  background: #ffffff;
  transition: border-color 0.3s ease;
}

textarea:focus {
  outline: none;
  border-color: var(--accent);
}

/* --- One-Line Button Action Logic --- */
.form-actions {
  display: flex;
  gap: 12px; /* Space between buttons */
  margin-top: 15px;
  align-items: center;
}

.submit-btn, .wa-link {
  flex: 1; /* This forces both to take exactly 50% space */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px; /* Uniform height */
  padding: 0 10px; 
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.2s ease, background 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap; /* Keeps text on one line */
}

.submit-btn {
  background: var(--gold); /* Using your token */
  color: white;
}

.wa-link {
  background-color: #25D366;
  color: #ffffff;
  text-decoration: none;
}

.submit-btn:hover, .wa-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* --- Mobile Fix --- */
@media (max-width: 480px) {
  .form-actions {
    gap: 8px; /* Slightly tighter on small phones */
  }
  .submit-btn, .wa-link {
    font-size: 0.75rem; /* Prevents text overflow */
  }
}

/* --- Responsive Optimization --- */
@media (max-width: 992px) {
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-content p { margin: 0 auto 40px; }
  .hero-features { justify-content: center; }
  .hero-overlay {
    background: linear-gradient(
      to bottom, 
      rgba(23, 23, 23, 0.9) 0%, 
      rgba(23, 23, 23, 0.6) 100%
    );
  }
}

@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .form-row .qty { max-width: none; }
  .form-card { padding: 25px; }
  .hero-content h1 { font-size: 2.5rem; }
}

@media (max-width: 992px) {
  /* Keep the container centered, but the form content left-aligned */
  .hero-container { 
    grid-template-columns: 1fr; 
    text-align: center; 
  }

  .form-card {
    text-align: left; /* Forces labels and text to the left */
    margin: 0 auto;
    max-width: 100%; /* Allows form to use available width */
  }

  /* Force the 2-column layout to stay active */
  .form-row { 
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; 
    gap: 12px; 
  }

  /* Force the Date & Phone row to maintain its desktop ratio */
  #booking-dates {
    display: grid !important;
    grid-template-columns: 1.5fr 0.5fr !important; 
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Ensure the row doesn't collapse to 1 column on tiny phones */
  .form-row { 
    grid-template-columns: 1fr 1fr !important; 
  }

  /* Keep labels small and left-aligned */
  .form-group label {
    font-size: 0.65rem;
    text-align: left;
  }

  /* Adjust inputs slightly for tight horizontal space */
  .form-group input, .date-selector {
    padding: 10px 8px;
    font-size: 0.85rem;
  }

  /* Ensure the quantity box doesn't hog space */
  .form-row .qty { 
    max-width: 70px; 
  }
}

@media (max-width: 480px) {
  .hero-safari {
    /* Ensure there is always a 16px gap between the card edge and the phone edge */
    padding: 40px 16px; 
  }
  .form-card { 
    /* Keep internal padding comfortable but slightly smaller for tiny screens */
    padding: 30px 20px; 
    width: 100%;
    box-sizing: border-box;
  }
  .hero-content h1 { font-size: 2.2rem; }
}

/* --- Permit Alert Styling --- */
.permit-alert {
  background: rgba(185, 152, 90, 0.1);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.permit-alert p {
  font-size: 0.8rem;
  color: var(--text-main);
  margin: 0;
  line-height: 1.4;
}

.pulse {
  width: 10px;
  height: 10px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(37, 211, 102, 0.4);
  animation: pulse-ring 1.5s infinite;
  flex-shrink: 0;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Select Styling --- */
.date-selector {
  appearance: none;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding: 12px 16px;
  border: 1.5px solid var(--border-soft);
  border-radius: 10px;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
}

.submit-btn:hover, .wa-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.departure-badge-link {
  text-decoration: none;
  display: inline-block;
  transition: transform 0.3s ease;
}

.departure-badge-link:hover {
  transform: translateY(-3px);
}

.departure-badge-link .badge {
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  /* Add a small arrow icon via CSS */
  display: flex;
  align-items: center;
  gap: 8px;
}

.departure-badge-link .badge::after {
  content: '↓';
  font-weight: bold;
}

html {
  scroll-behavior: smooth;
}

.permit-alert-link {
  text-decoration: none;
  display: block; /* Makes the entire area clickable */
  transition: transform 0.2s ease;
}

.permit-alert-link:hover {
  transform: translateY(-2px); /* Subtle lift on hover */
}

.permit-alert-link .permit-alert {
  cursor: pointer;
}

.click-hint {
  display: inline-block;
  margin-left: 5px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: underline;
}

#booking-dates {
  scroll-margin-top: 120px;
}

@media (min-width: 992px) {
  #booking-dates {
    /* This gives roughly 75% width to the date and 25% to the phone */
    grid-template-columns: 1.5fr 0.5fr; 
    gap: 15px;
  }
}

.form-group input, 
.date-selector, 
textarea {
  background-color: #eceae0 !important; 
  border: 1.5px solid #d1cfc1 !important; /* Defined border */
  color: #333; /* Ensuring text is dark and sharp */
  transition: all 0.3s ease;
}

.form-group input:focus, 
.date-selector:focus, 
textarea:focus {
  background-color: #ffffff !important; 
  border-color: #af770f !important; /* Using your gold/accent color */
  box-shadow: 0 0 8px rgba(175, 119, 15, 0.2); 
  outline: none;
}


/* ====== TOUR SNAPSHOT ====== */
.tour-snapshot {
  background-color: var(--ivory);
    color: var(--earth);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.tour-snapshot__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.tour-snapshot__item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.snapshot-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.snapshot-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-primary); /* Our Gold Accent */
}

.snapshot-text {
  display: flex;
  flex-direction: column;
}

.tour-snapshot__label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #888;
  margin-bottom: 4px;
}

.tour-snapshot__value {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-dark);
  line-height: 1.2;
}

/* Responsive: 2x2 on Tablets, 1 column on Mobile */
@media (max-width: 992px) {
  .tour-snapshot__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
}

@media (max-width: 500px) {
  .tour-snapshot__inner {
    grid-template-columns: 1fr;
  }
}


/* ====== OVERVIEW SECTION ====== */
.tour-intro {
  padding: 80px 20px;
  max-width: 900px; /* Keeping text readable and centered */
  margin: 0 auto;
  text-align: center;
  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);
}

.tour-eyebrow {
  color: #af770f; /* Gold accent */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  margin-bottom: 10px;
}

.tour-title {
  font-family: var(--font-head); /* Use your serif/heading font */
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 25px;

  position: static; /* Force it to stay in place */
  background: transparent;
  backdrop-filter: none;
  width: auto;
  padding: 0;
  border: none;
}

.tour-lede {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #333;
  font-weight: 500;
  margin-bottom: 30px;
}

.tour-prose p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 40px;
}

.tour-prose {
  clear: both;
  display: block;
}

/* --- High-End Badges --- */
.tour-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.tour-badge {
  background: #f8f7f2; /* Soft stone/cream */
  border: 1px solid #eceae0;
  padding: 10px 20px;
  border-radius: 50px; /* Pill shape */
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.tour-badge:hover {
  background: #ffffff;
  border-color: #af770f;
  color: #af770f;
  transform: translateY(-2px);
}

/* --- Mobile Adjustments --- */
@media (max-width: 768px) {
  .tour-title { font-size: 1.8rem; }
  .tour-lede { font-size: 1.1rem; }
  .tour-badges { flex-direction: column; align-items: center; }
  .tour-badge { width: 100%; max-width: 300px; justify-content: center; }
}


/* ====== 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; /* Your Gold Accent */
    margin-bottom: 15px;
}

.map-box .section-title {
    font-family: var(--font-serif); /* Ensures it uses your elegant serif font */
    font-size: 2.8rem; /* Large impact size */
    color: var(--earth);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 750px;
    margin: 0 auto 30px;
    color: #555;
}

#route-map {
  padding: 80px 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: 500px; /* Adjust based on your map height */
  background: #fff;
  border: 1px solid #eceae0;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  /* If using an image instead of a JS map: */
  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 =========== */
.tour-days {
    margin-top: 80px; /* Prevents touching the section above */
    padding: 100px 20px;
    background-color: #F2F0E9; /* Your Light Sand/Ivory accent */
    border-top: 1px solid rgba(44, 51, 39, 0.05);
}

.itinerary-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px; /* Large bottom margin before the first day starts */
}

/* Container Layout */
.itinerary-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Individual Day Row */
.luxury-day {
    display: flex;
    gap: 40px;
    margin-bottom: 60px; /* Space between each day card */
}

/* Day Counter (Left Side) */
.day-side-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60px;
    flex-shrink: 0;
}

.day-count {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    color: #af770f;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.day-route-visual {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
}

.day-route-visual .dot {
    width: 10px;
    height: 10px;
    background: #af770f;
    border-radius: 50%;
}

.day-route-visual .line {
    width: 1px;
    flex-grow: 1;
    background: linear-gradient(to bottom, #af770f, rgba(175, 119, 15, 0.1));
    margin: 10px 0;
}

/* Main Card (Right Side) */
.day-main-card {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1.6fr 1fr; /* Narrative gets more room */
    gap: 40px;
    background: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}

.day-main-card:hover {
    transform: translateY(-5px);
}

.day-heading {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.day-narrative p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* Logistics Box */
.day-logistics-box {
    background: #f9f8f4;
    padding: 30px;
    border-radius: 4px;
    align-self: start;
    border: 1px solid #f0efea;
}

.log-item {
    margin-bottom: 25px;
}

.log-item:last-child { margin-bottom: 0; }

.log-label {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #af770f;
    margin-bottom: 8px;
}

.log-item p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
    margin: 0;
}

/* Highlight for Day 5 */
.highlight-box {
    background: #af770f !important;
}
.highlight-box .log-label, 
.highlight-box .log-item p {
    color: #ffffff !important;
}
.highlight-card {
    border: 1px solid #af770f;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .day-main-card {
        grid-template-columns: 1fr;
        padding: 30px;
    }
    .luxury-day { gap: 20px; }
}

@media (max-width: 768px) {
    /*.tour-days { margin-top: 40px; padding: 60px 15px; }*/
    .day-side-meta { display: none; } /* Hide the vertical timeline on mobile */
    .day-main-card { padding: 25px; }
    .day-heading { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    /* .tour-days { margin-top: 40px; padding: 60px 15px; } */
    .day-side-meta { display: none; } /* Hide the vertical timeline on mobile */
    .day-main-card { padding: 25px; }
    .day-heading { font-size: 1.5rem; }
}

@media (max-width: 768px) {
    .tour-days { 
        margin-top: 40px; 
        padding: 60px 15px; 
    }

    /* Change flex direction to stack the day label on top of the card */
    .luxury-day { 
        flex-direction: column; 
        gap: 15px; 
    }

    /* Re-enable the meta section but change its layout */
    .day-side-meta { 
        display: flex; 
        flex-direction: row; /* Stack horizontally on mobile */
        width: 100%; 
        align-items: center;
        gap: 15px;
    }

    /* Hide the vertical line on mobile as it won't connect well */
    .day-route-visual { 
        display: none; 
    }

    .day-main-card { 
        padding: 25px; 
    }

    .day-heading { 
        font-size: 1.5rem; 
    }
    
    /* Optional: Make the day count stand out more on mobile */
    .day-count {
        font-size: 1rem;
        background: var(--earth); /* Using your saved --earth color */
        color: var(--ivory);      /* Using your saved --ivory color */
        padding: 4px 12px;
        border-radius: 20px;
    }
}


/* ========= PRICING & INCLUSION SECTION ========= */
/* Main Section Container */
.tour-section--dark {
    background-color: #1a1a1a; /* Rich dark background */
    color: #FAF9F6; /* Ivory text */
    padding: 100px 20px;
    overflow: hidden; /* Prevents scaled cards from causing scrollbars */
}

.tour-pricing-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.tour-pricing-intro {
    font-size: 1.1rem;
    color: rgba(250, 249, 246, 0.8);
    margin-top: 15px;
}

/* --- Pricing Grid --- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center; /* Centers shorter cards vertically relative to featured */
}

.price-card {
    background: #ffffff;
    border: 1px solid #eee;
    padding: 50px 30px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #1a1a1a; /* Dark text inside light cards */
}

.price-card h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 10px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 20px 0;
}

.price-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

/* Featured / Recommended Card */
.price-card.featured {
    border: 2px solid #af770f;
    transform: scale(1.08); /* Stronger scale for focus */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 10;
    background: #fff;
}

.featured-label {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #af770f;
    color: #fff;
    padding: 6px 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    white-space: nowrap;
}

.tour-pricing-note {
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.6);
    margin: 40px 0 80px;
}

/* --- Inclusions & Exclusions Grid --- */
.tour-inclusions__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: rgba(255, 255, 255, 0.03); /* Translucent Glass Effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px;
    border-radius: 20px;
    max-width: 1100px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}

.tour-inclusions-group .tour-subtitle {
    color: #af770f; /* Gold Heading */
    font-family: var(--font-head);
    font-size: 1.4rem;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(175, 119, 15, 0.2);
    padding-bottom: 15px;
}

.tour-inclusions-group ul {
    list-style: none;
    padding: 0;
}

.tour-inclusions-group li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 18px;
    line-height: 1.6;
    font-size: 1rem;
    color: rgba(250, 249, 246, 0.9);
}

/* Custom Icons */
.tour-inclusions-group:first-child li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ade80; /* Bright Green */
    font-weight: 900;
}

.tour-inclusions-group:last-child li::before {
    content: '✕';
    position: absolute;
    left: 4px;
    color: #f87171; /* Bright Red */
    font-weight: 400;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        gap: 40px;
    }
    
    .price-card.featured {
        transform: scale(1.02); /* Less dramatic scale on small screens */
    }
    
    .tour-inclusions__grid {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .tour-section--dark {
        padding: 60px 15px;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .tour-inclusions__grid {
        border-radius: 0; /* Full width feel on mobile */
        border-left: none;
        border-right: none;
    }
}

/* Ensure the title is visible in the dark pricing section */
.tour-section--dark .tour-title {
    color: #FAF9F6;      /* Ivory text */
    text-align: center;
    font-size: 2.8rem;   /* Adjusted for luxury feel */
    font-family: var(--font-serif);
    margin-top: 10px;
    display: block;      /* Ensures it respects centering */
}

/* Also ensure the eyebrow is visible and gold */
.tour-section--dark .tour-section-eyebrow {
    color: #af770f;      /* Gold */
    display: block;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}


/* ====== WHY US SECTION ====== */
.tour-why {
    padding: 100px 20px;
    background-color: var(--ivory); /* #FAF9F6 - Using your variable */
    color: var(--earth);           /* #2C3327 - Using your variable */
}

.tour-why .tour-subtitle {
    text-align: center;
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--earth);
    margin-bottom: 60px;
}

.tour-why__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

/* --- The Premium Card --- */
.tour-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    background: #ffffff; /* Crisp white cards on ivory background */
    border: 1px solid rgba(44, 51, 39, 0.08); /* Subtle earth-toned border */
    border-radius: 4px; /* Sharper corners for a more formal look */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(44, 51, 39, 0.03);
}

.tour-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 12px 30px rgba(44, 51, 39, 0.08);
}

.tour-card__top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-icon {
    font-size: 1.8rem;
    background: var(--ivory);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(175, 119, 15, 0.1);
}

.tour-card__title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--earth);
    margin: 0;
}

.tour-card__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a4a4a; /* Soft charcoal for better readability on light */
    margin-bottom: 0;
}

/* --- Review & TripAdvisor Link --- */
.tour-rating {
    color: var(--gold);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-text {
    color: var(--earth);
    opacity: 0.7;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tour-link {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.tour-link:hover {
    color: var(--earth);
    padding-left: 5px;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .tour-why__grid {
        grid-template-columns: 1fr;
    }
    
    .tour-why {
        padding: 80px 20px;
    }
}


/* ========= BOTTOM EQUIRY FORM  ========== */
/* The "Next Steps" Kicker */
.tour-bottom-cta .tour-section-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 700;
    color: #af770f; /* Your Gold Accent */
    margin-bottom: 1.5rem;
}

/* The Main Heading */
.tour-bottom-cta .tour-section-title {
    font-family: var(--font-serif); /* Ensures it uses your elegant serif font */
    font-size: 3rem; /* Large and impactful */
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 2rem;
}

/* The Paragraph Text */
.tour-bottom-cta__copy p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .tour-bottom-cta__inner {
        grid-template-columns: 1fr; /* Stack text above form */
        gap: 50px;
    }

    .tour-bottom-cta .tour-section-title {
        font-size: 2.2rem; /* Slightly smaller on tablets */
    }
}

.tour-bottom-cta {
    padding: 100px 20px;
    background-color: #F2F0E9; /* Your accent color */
    border-top: 1px solid rgba(44, 51, 39, 0.05);
    border-bottom: 1px solid rgba(44, 51, 39, 0.05);
}

.tour-bottom-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px; /* Increased gap for a more premium, spacious feel */
    align-items: start;
}

/* --- Copy Styling --- */
.tour-bottom-cta__copy .tour-section-eyebrow {
    text-align: left; /* Keep it aligned with the copy */
    margin-bottom: 15px;
}

.tour-bottom-cta__copy .tour-subtitle {
    text-align: left;
    font-size: 2.5rem;
    color: var(--earth);
    margin-bottom: 30px;
}

/* .tour-bottom-cta__copy p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
} */

/* --- Form Container Section --- */
.tour-bottom-cta {
    padding: 100px 20px;
    background-color: #F2F0E9; /* Keeping your specific section tint */
    border-top: 1px solid rgba(44, 51, 39, 0.05);
    border-bottom: 1px solid rgba(44, 51, 39, 0.05);
    box-sizing: border-box;
}

.tour-bottom-cta__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

/* --- Copy Styling --- */
.tour-bottom-cta .tour-section-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
}

.tour-bottom-cta .tour-section-title,
.tour-bottom-cta__copy .tour-subtitle {
    font-family: var(--font-serif, serif);
    font-size: 3rem;
    line-height: 1.1;
    color: var(--earth);
    margin-bottom: 2rem;
    text-align: left;
}

.tour-bottom-cta__copy p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
}

/* --- Form Container (The Card) --- */
.tour-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(44, 51, 39, 0.1);
    border: 1px solid rgba(44, 51, 39, 0.05);
    /* CRITICAL FIX: Ensures padding doesn't push width over 100% */
    box-sizing: border-box; 
}

.tour-form-field {
    margin-bottom: 25px;
    box-sizing: border-box;
}

.tour-form-field label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--earth);
}

.tour-form-field input, 
.tour-form-field textarea,
.tour-form-field select {
    width: 100%;
    box-sizing: border-box; /* Fixes field overflow */
    padding: 15px;
    background-color: #fcfcf9;
    border: 1px solid #e2e2d5;
    border-radius: 2px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.tour-form-field input:focus,
.tour-form-field textarea:focus {
    border-color: var(--gold);
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* --- Budget/Checkbox Grid --- */
.budget-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 10px;
}

.budget-option {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f7f2;
    padding: 12px 15px;
    border: 1px solid #e2e2d5;
    border-radius: 2px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--earth);
    transition: var(--transition);
    box-sizing: border-box;
}

.budget-option:hover {
    border-color: var(--gold);
}

.budget-option input[type="checkbox"] {
    width: auto;
    accent-color: var(--gold);
}

/* --- Submit Button --- */
.btn-primary {
    width: 100%;
    background: var(--gold);
    color: var(--earth); /* Swapped for better contrast on gold */
    padding: 20px;
    border: none;
    border-radius: 2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 15px;
}

.btn-primary:hover {
    background: var(--earth);
    color: var(--gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 51, 39, 0.15);
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .tour-bottom-cta__inner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tour-bottom-cta .tour-section-title,
    .tour-bottom-cta__copy .tour-subtitle {
        font-size: 2.2rem;
    }
}

@media (max-width: 600px) {
    .tour-bottom-cta {
        padding: 60px 15px;
    }

    .tour-form {
        padding: 30px 20px; /* Thinner padding so form fields have more room */
    }

    .budget-options {
        grid-template-columns: 1fr; /* Stack checkboxes on mobile */
    }

    .tour-form-field input, 
    .tour-form-field textarea {
        font-size: 16px; /* Prevents auto-zoom on mobile safari */
    }
}


/* ============== FAQs SECTION ========== */
.faq-section {
    padding: 100px 20px;
    background-color: var(--ivory); /* Using your variable */
    color: var(--earth);           /* Using your variable */
}

.faq-container {
    max-width: 850px; /* Slightly wider for better text flow */
    margin: 0 auto;
}

/* Accordion Item Styling */
details {
    border-bottom: 1px solid rgba(44, 51, 39, 0.1); /* Subtle earth-toned divider */
    padding: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

details:first-of-type {
    border-top: 1px solid rgba(44, 51, 39, 0.1);
}

details[open] {
    padding-bottom: 20px;
}

/* Summary / Question Styling */
summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-family: var(--font-head);
    font-weight: 700;
    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; /* Your Gold Accent */
    font-weight: 300;
    transition: transform 0.3s ease;
    display: inline-block;
    line-height: 1;
}

details[open] .chev::before {
    content: '−'; /* High-end minus sign */
    transform: rotate(180deg);
}

/* Answer / Content Styling */
.faq-section .content {
    padding: 5px 40px 25px 0; /* Padding-right to clear the icon area */
    color: #4a4a4a; /* Soft charcoal */
    line-height: 1.8;
    font-size: 1.05rem;
    animation: fadeIn 0.4s ease-out;
}

@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: rgba(255, 255, 255, 0.5); /* Soft highlight under the button */
    border-radius: 12px;
}

.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%;
        justify-content: center;
    }
}


/* ========== Site Footer ========== */
.site-footer {
  background-color: #111; /* Slightly darker than the FAQ/Why section for depth */
  color: #fff;
  padding: 80px 0 40px;
  font-size: 0.9rem;
  border-top: 1px solid #222;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr; /* Brand gets more space */
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Brand Section */
.footer-brand .site-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  margin-bottom: 25px;
}

.site-logo__mark {
  background: #af770f;
  color: #fff;
  padding: 10px;
  font-weight: 800;
  border-radius: 4px;
  font-size: 1.2rem;
}

.site-logo__text {
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.1;
}

.site-logo__tagline {
  display: block;
  font-size: 0.75rem;
  color: #af770f;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.footer-text {
  color: #999;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-text--muted {
  font-size: 0.8rem;
  color: #666;
}

/* TripAdvisor Stars in Footer */
.footer-stars {
  color: #af770f;
  font-size: 1.1rem;
}

.footer-rating {
  color: #fff;
  margin-left: 8px;
  border-bottom: 1px solid #333;
}

/* Columns & Links */
.footer-heading {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #af770f;
}

/* Bottom Bar */
.footer-bottom {
  margin-top: 60px;
  padding: 30px 20px 0;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copy {
  color: #666;
}

.footer-legal a {
  color: #666;
  text-decoration: none;
  margin: 0 5px;
}

.footer-legal a:hover {
  color: #fff;
}

/* Payment Tags */
.footer-payments {
  display: flex;
  gap: 10px;
}

.pay-tag {
  font-size: 0.7rem;
  padding: 4px 8px;
  border: 1px solid #333;
  color: #888;
  border-radius: 3px;
  text-transform: uppercase;
}

.footer-related-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  margin-bottom: 15px;
}

.footer-related-link strong {
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-related-link span {
  color: #666;
  font-size: 0.8rem;
  margin-top: 2px;
}

.footer-related-link:hover strong {
  color: #af770f;
}

/* --- Footer Contact Styling --- */
.footer-contact .footer-text {
  margin-bottom: 25px;
  color: #fff; /* Making the label "Call / WhatsApp" white for better contrast */
  font-weight: 600;
}

.footer-contact a {
  display: block;
  color: #999; /* Muted color for the actual number/email */
  text-decoration: none;
  font-weight: 400;
  font-size: 1rem;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #af770f; /* Turns gold on hover */
}

/* --- Social Links Optimized for High Contrast --- */
.footer-social {
  display: flex;
  gap: 25px; /* Increased gap for better touch-targets on mobile */
  margin-top: 25px;
}

.footer-social a {
  font-size: 0.85rem;
  font-weight: 600; /* Added weight to make the text bolder */
  text-transform: uppercase;
  letter-spacing: 1.5px; /* Elegant spacing for luxury feel */
  color: #bbb; /* Much brighter than #666 for readability on dark backgrounds */
  padding: 5px 0;
  text-decoration: none;
  border-bottom: 2px solid transparent; /* Slightly thicker line for better visibility */
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.footer-social a:hover {
  color: #af770f; /* Changed hover to Gold to match your brand logo */
  border-bottom: 2px solid #af770f;
  transform: translateY(-2px); /* Subtle lift effect */
}

/* Responsive */
@media (max-width: 1024px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #af770f;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  opacity: 0; /* Hidden by default */
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #1a1a1a;
  transform: translateY(-5px);
}

/* Ensure the back-to-top button doesn't block the WhatsApp link on small phones */
@media (max-width: 600px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
  
  /* Give the footer brand more breathing room on mobile */
  .footer-brand {
    margin-bottom: 40px;
    border-bottom: 1px solid #222;
    padding-bottom: 40px;
  }
}

/* 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; /* Standard FAB size */
        height: 56px;
        border-radius: 50%;
    }
    
    .wa-text {
        display: none; /* Hide text on small screens */
    }
    
    .wa-pulse {
        display: none; /* Cleaner look for mobile circles */
    }
}

/* 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 {
        /* Moving it further up from the bottom corner */
        bottom: 80px !important; 
        right: 25px !important;
        
        /* Increasing the size of the circle for easier thumb-tapping */
        width: 80px !important; 
        height: 60px !important;
        padding: 0 !important;
        border-radius: 70%;
        
        /* Boosting the shadow for depth on small screens */
        box-shadow: 0 12px 30px var(--wa-shadow);
    }

    .wa-icon {
        font-size: 1.8rem; /* Making the icon significantly larger */
    }

    .wa-text, .wa-pulse {
        display: none; 
    }
}






