
/* =============== BRAND TOKENS ============= */
:root {
  --gold: #D4AF37;
  --earth: #2C3327;
  --ivory: #FAF9F6;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

/* =============== 1. NAVIGATION HEADER ============= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition);
  border-bottom: 1px solid rgba(250, 249, 246, 0.1);
}

/* Scroll State (Applied via JS) */
.main-header.scrolled {
  background-color: var(--ivory);
  padding: 15px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: 0 4px 20px rgba(44, 51, 39, 0.08);
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center; /* Crucial for vertical alignment */
}

/* 1. LOGO STACK */
.header-logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 1px;
  line-height: 1.2;
  transition: var(--transition);
}

.logo-subtext {
  font-family: "Inter", sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-top: 2px;
}

.scrolled .brand-name {
  color: var(--earth);
}

/* 2. DESKTOP LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ivory);
  transition: var(--transition);
  opacity: 0.8;
}

.nav-links a:hover {
  color: var(--gold);
  opacity: 1;
}

.scrolled .nav-links a {
  color: var(--earth);
}

/* 3. HEADER CTA & HAMBURGER GROUP */
.header-cta {
  display: flex;
  align-items: center; /* Keeps button and hamburger centered together */
  gap: 20px;
}

.btn-header {
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--ivory);
  transition: var(--transition);
  border-radius: 4px;
  white-space: nowrap;
}

.btn-header:hover {
  background: var(--gold);
  color: var(--earth);
}

.scrolled .btn-header {
  color: var(--earth);
  border-color: var(--gold);
}

/* 4. THE HAMBURGER (STATIONING FIX) */
.mobile-toggle {
  display: none; /* Hidden on Desktop */
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001; /* Must be above the menu overlay */
  height: 40px;
}

.mobile-toggle .bar {
  width: 28px;
  height: 2px;
  background-color: var(--ivory); /* Ivory on Hero */
  transition: var(--transition);
  display: block;
  transform-origin: center; /* Ensures they rotate around the middle */
}

.scrolled .mobile-toggle .bar {
  background-color: var(--earth);
}

/* 5. RESPONSIVE ADJUSTMENTS */
@media (max-width: 992px) {
  .nav-links {
    display: none;
  }
  
  .mobile-toggle {
    display: flex; /* Stationed next to the button */
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 20px;
  }
  
  .btn-header {
    display: none; /* Hide button on very small screens to keep logo readable */
  }

  .brand-name {
    font-size: 19px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen */
    width: 80%;
    height: 100vh;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    transition: var(--transition);
    z-index: 999;
    box-shadow: -10px 0 30px rgba(44, 51, 39, 0.1);
  }

  /* When the menu is open */
  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--earth) !important; /* Force dark text on ivory menu */
    font-size: 18px;
  }

  .mobile-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--earth); /* Ensure it's visible on the Ivory menu */
  }

  .mobile-toggle.active .bar:nth-child(2) {
  opacity: 0; /* Hide the middle bar */
  }

  .mobile-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--earth); /* Ensure it's visible on the Ivory menu */
  }
}
.scrolled .mobile-toggle .bar { background-color: var(--earth); }


/* =============== 2. HERO SECTION ============= */
.hero-section {
  position: relative;
  height: 75vh;             /* Reduced from 90vh */
  min-height: 550px; 
  width: 100%;
  background: var(--earth); 
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* The Background Image Layer */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('images/hero_clean_2000.jpg') center/cover no-repeat;
  filter: brightness(0.85) contrast(1.1); 
  z-index: 0;
}

/* The Overlay Layer (Vignette) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(44, 51, 39, 0.2) 0%, 
    rgba(44, 51, 39, 0.7) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* The Content Layer */
.hero-content {
  text-align: center;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 550;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--gold);
}

.hero-subtitle {
  font-family: "Inter", sans-serif;
  font-size: clamp(0.95rem, 1.2vw, 1.20rem);
  line-height: 1.6;
  margin: 0 auto 35px;
  max-width: 650px;
  color: rgba(250, 249, 246, 0.95);
  font-weight: 400;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
  padding: 16px 36px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 4px;
  display: inline-block;
}

.btn-primary {
  background: var(--gold);
  color: var(--earth);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1); 
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ivory);
}

.btn-secondary:hover {
  background: var(--ivory);
  color: var(--earth);
  transform: translateY(-3px);
}

/* Trust Badges */
.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.hero-trust span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250, 249, 246, 0.7);
  font-weight: 600;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    padding: 120px 0 80px;
  }
  .hero-buttons {
    flex-direction: column;
    padding: 0 40px;
  }
}

.hero-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

/* Base style for both spans and the link */
.hero-trust span, 
.trust-link {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250, 249, 246, 0.7); /* Ivory with transparency */
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

/* Hover effect for the TripAdvisor link */
.trust-link:hover {
  color: var(--gold);
  opacity: 1;
  cursor: pointer;
}

/* Bullet divider logic (ensuring it works with the new <a> tag) */
.hero-trust span:not(:last-child)::after,
.trust-link::after {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  margin-left: 30px;
  vertical-align: middle;
}

.hero-trust *:last-child::after {
  display: none;
}

/* Expert Video Trigger */
.video-expert-trigger {
  display: inline-flex;
  align-items: center;
  margin-top: 40px;
  padding: 10px 24px 10px 10px;
  background: rgba(250, 249, 246, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.video-expert-trigger:hover {
  background: rgba(250, 249, 246, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.expert-thumb {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}

.expert-thumb img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.play-icon {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: var(--gold);
  color: var(--earth);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-label {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
}

.expert-title {
  font-size: 13px;
  color: var(--ivory);
  margin: 0;
  opacity: 0.9;
}

/* Modal Styling */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 51, 39, 0.98);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  width: 90%;
  max-width: 900px;
  position: relative;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.modal-footer {
  background: var(--ivory);
  padding: 25px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
}

.modal-footer p {
  color: var(--earth);
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
}

.close-modal {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 35px;
  cursor: pointer;
}


/* =============== DESTINTAIONS SECTION ============= */
.destination-strip {
  padding: clamp(60px, 8vh, 120px) 20px; /* Reduced vertical padding for mobile */
  background-color: var(--ivory);
  text-align: center;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem); /* Slightly smaller mobile baseline */
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto clamp(40px, 6vh, 65px);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--earth);
  opacity: 0.8;
  font-weight: 300;
}

.destination-grid {
  display: grid;
  /* 3 columns desktop, 2 columns tablet, 1 column mobile */
  grid-template-columns: repeat(3, 1fr); 
  gap: 25px;
}

.destination-card {
  background: rgba(255, 255, 255, 0.9); 
  /* Responsive padding: 55px on desktop, 35px on mobile */
  padding: clamp(35px, 5vh, 55px) clamp(25px, 4vw, 45px);
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(44, 51, 39, 0.12); 
  box-shadow: 0 10px 30px rgba(44, 51, 39, 0.04);
  position: relative;
  overflow: hidden;
}

.destination-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--earth);
}

.destination-card p {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.6;
  margin-bottom: 25px; /* Reduced bottom margin to shorten card */
  color: var(--earth);
  opacity: 0.85;
  font-weight: 300;
  flex-grow: 1;
}

.link-arrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

/* HOVER STATES */
.destination-card:hover {
  transform: translateY(-8px); /* Less dramatic jump for mobile/trackpad feel */
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(44, 51, 39, 0.1);
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.destination-card:hover::before {
  transform: scaleX(1);
}

/* Tablets: 2 columns look more premium than 1 giant column */
@media (max-width: 992px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile: Single column with tighter spacing */
@media (max-width: 600px) {
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 15px; /* Tighter gap between cards on small screens */
  }

  .destination-strip {
    padding: 50px 15px;
  }

  .destination-card {
    /* Hard height reduction: remove excess top/bottom whitespace on small phones */
    padding: 30px 25px; 
  }
}


/* =============== DESTINTAIONS SECTION ============= */
.destination-strip {
  padding: clamp(60px, 8vh, 120px) 20px; 
  background-color: var(--ivory);
  text-align: center;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem); 
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  max-width: 750px;
  margin: 0 auto clamp(40px, 6vh, 65px);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.6;
  color: var(--earth);
  opacity: 0.8;
  font-weight: 300;
}
 
.departures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px; 
    max-width: 1240px;
    margin: 0 auto;
    align-items: stretch; 
}

.destination-card {
  background: rgba(255, 255, 255, 0.9); 
  padding: clamp(35px, 5vh, 55px) clamp(25px, 4vw, 45px);
  border-radius: 4px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid rgba(44, 51, 39, 0.12); 
  box-shadow: 0 10px 30px rgba(44, 51, 39, 0.04);
  position: relative;
  overflow: hidden;
}

.destination-card h3 {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.5vw, 24px);
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--earth);
}

.destination-card p {
  font-size: clamp(14px, 1.1vw, 15px);
  line-height: 1.6;
  margin-bottom: 25px; 
  color: var(--earth);
  opacity: 0.85;
  font-weight: 300;
  flex-grow: 1;
}

.link-arrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

/* HOVER STATES */
.destination-card:hover {
  transform: translateY(-8px); 
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(44, 51, 39, 0.1);
}

.destination-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.destination-card:hover::before {
  transform: scaleX(1);
}

/* Tablets: 2 columns look more premium than 1 giant column */
@media (max-width: 992px) {
  .destination-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Mobile: Single column with tighter spacing */
@media (max-width: 600px) {
  .destination-grid {
    grid-template-columns: 1fr;
    gap: 15px; /* Tighter gap between cards on small screens */
  }

  .destination-strip {
    padding: 50px 15px;
  }

  .destination-card {
    /* Hard height reduction: remove excess top/bottom whitespace on small phones */
    padding: 30px 25px; 
  }
}


/* =============== DEPARTURES SECTION ============= */
.departures-section {
  padding: clamp(80px, 12vh, 140px) 20px;
  background: #f0f2ef; 
  position: relative;
}

.departures-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.departures-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--earth); 
  margin-bottom: 20px;
  line-height: 1.2;
}

.departures-header p {
  font-size: clamp(1rem, 1.5vw, 1.1rem); 
  line-height: 1.8;
  color: var(--earth);
  opacity: 0.8;
  font-weight: 300;
}

.departures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px; 
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;  
}

@media (max-width: 1200px) {
    .departures-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 25px;
    }
}

@media (max-width: 992px) {
  .departures-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
 
.departure-card {
  background: #ffffff;
  border-radius: 4px; 
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(44, 51, 39, 0.05); 
  display: flex;
  flex-direction: column;
  height: 100%;
}
 
.departure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(44, 51, 39, 0.1);
  border-color: var(--gold); 
}

@media (max-width: 992px) {
  .departure-card {
    height: auto !important; 
    overflow: visible !important; 
  }
  
  .departure-content {
    height: auto !important;
  }
}

@media (max-width: 768px) {
  .departure-content {
    padding: 30px 20px; 
  }
  
  .tier-grid.horizontal {
    grid-template-columns: 1fr 1fr 1fr; 
  }
}

.departure-image {
    position: relative;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    background-color: var(--earth); 
    filter: brightness(1.05) contrast(1.05); 
}

.departure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease; 
}

.departure-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top, 
      rgba(44, 51, 39, 0.9) 0%,     
      rgba(44, 51, 39, 0.3) 25%,     
      transparent 45%               
    );
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--ivory);
    transition: var(--transition); 
    text-align: left;
}

.departure-overlay h3 {
    margin-bottom: 8px;
    color: var(--ivory);
    font-size: 1.3rem; 
    font-weight: 600;  
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
}

.departure-card:hover .departure-overlay {
    background: linear-gradient(
      to top, 
      rgba(44, 51, 39, 0.95) 0%, 
      rgba(44, 51, 39, 0.5) 40%,
      transparent 70%
    );
}

.departure-date {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  /*color: var(--gold);*/
  font-weight:700;
}

.departure-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1; 
  text-align: left !important;
}

.from-price {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 15px;
}

.tour-seo {
  font-size: 14px;
  line-height: 1.8;
  color: var(--earth);
  opacity: 0.8;
  margin-bottom: 30px;
  flex-grow: 1; 
}

.tier-grid.horizontal {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 10px;
    margin-top: 10px;
}

.tier-item {
    padding: 12px 5px; 
    border: 1px solid rgba(44, 51, 39, 0.1);
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.tier-item.highlighted {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.tier-label {
    display: block;
    font-size: 9px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--earth);
    margin-bottom: 4px;
    font-weight: 700;
}

.tier-price {
    font-size: 12px;
    color: var(--earth);
}

.tier-price strong {
    font-size: 15px; 
    color: var(--gold);
    display: block;
}

@media (max-width: 350px) {
    .tier-grid.horizontal {
        grid-template-columns: 1fr; 
    }
}

.tier-desc {
  font-size: 11px;
  line-height: 1.4;
  color: rgba(44, 51, 39, 0.7);
  margin: 0;
}

@media (max-width: 480px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
}

.card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 12px;
    margin-top: 15px;
}

.pricing-toggle, .itinerary-toggle {
    padding: 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.pricing-toggle {
    background: var(--gold);
    color: var(--earth);
    border: 1px solid var(--gold);
}

.itinerary-toggle {
    background: transparent;
    border: 1px solid var(--earth);
    color: var(--earth);
}

.dropdown-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(44, 51, 39, 0.1);
    width: 100%;
    display: block; 
}

.details-dropdown .btn-outline.full-width {
    display: block;
    width: 100%;
    flex: none;           
    padding: 18px 0;      
    margin: 0;            
    box-sizing: border-box; 
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--earth);
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    transition: var(--transition);
}

.details-dropdown .btn-outline.full-width:hover {
    background: var(--gold);
    color: var(--earth);
    letter-spacing: 3px; 
}

.btn-outline {
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--earth);
  border: 1px solid var(--gold);
  padding: 16px 20px;
  transition: var(--transition);
  margin-top: auto;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--earth);
}

.departures-footer {
  text-align: center;
  margin-top: 80px;
}

.btn-primary {
  display: inline-block;
  background: var(--earth);
  color: var(--ivory);
  padding: 22px 50px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid var(--earth);
}

.btn-primary:hover {
  background: transparent;
  color: var(--earth);
  border-color: var(--gold);
}

.badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold);
  color: var(--earth);
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
}

.badge.early {
  background: var(--earth);
  color: var(--ivory);
}

.card-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-outline, .itinerary-toggle {
  flex: 1;
  padding: 14px 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  border-radius: 2px;
  transition: var(--transition);
}

.itinerary-toggle {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
}

.itinerary-toggle:hover {
  background: var(--gold);
  color: var(--earth);
}

.itinerary-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(44, 51, 39, 0.02); 
}

.itinerary-dropdown.is-open {
  max-height: 600px; 
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(44, 51, 39, 0.1);
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-list li {
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(44, 51, 39, 0.05);
  color: var(--earth);
}

.dropdown-list li span {
  color: var(--gold);
  font-weight: 700;
  margin-right: 10px;
}

.details-toggle {
    width: 100%;
    padding: 16px;
    background: var(--earth);
    color: var(--ivory);
    border: none;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition);
}

.details-toggle:hover {
    background: var(--gold);
    color: var(--earth);
}

.details-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.details-dropdown.is-open {
    max-height: 1200px; 
    opacity: 1;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(44, 51, 39, 0.1);
}

.dropdown-section {
    margin-bottom: 25px;
}

.dropdown-section h4 {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--gold);
    letter-spacing: 1px;
    margin-bottom: 12px;
    font-weight: 800;
}

.inclusions p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--earth);
    opacity: 0.8;
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

.inclusion-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 8px 15px;
}

.inclusion-list li {
  font-size: 12px;
  color: var(--earth);
  opacity: 0.9;
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.inclusion-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 11px;
}

@media (max-width: 480px) {
  .inclusion-list {
    grid-template-columns: 1fr;
  }
}

.dropdown-footer {
    padding-top: 10px;
    border-top: 1px solid rgba(44, 51, 39, 0.05); 
    margin-top: 15px;
}

@media (min-width: 993px) {
    .departure-card:hover .details-dropdown {
        max-height: 1200px; 
        opacity: 1;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(44, 51, 39, 0.1);
    }

    .departure-card:hover .details-toggle {
        background: var(--gold);
        color: var(--earth);
        opacity: 0.8;
    }
}

.details-dropdown.is-open {
    max-height: 1500px; 
    opacity: 1;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(44, 51, 39, 0.1);
    overflow: visible; 
}

.details-dropdown.is-open {
    max-height: none !important; 
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important; 
}

@media (max-width: 992px) {
    .departure-card {
        display: block; 
        height: auto !important;
    }

    .departure-content {
        display: block; 
        height: auto !important;
    }
}


/* =============== POPULAR TOURS SECTION ============= */
.signature-section {
  padding: clamp(80px, 12vh, 140px) 20px;
  background-color: var(--ivory); 
}

.signature-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.signature-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 2.5rem); 
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 20px;
  line-height: 1.2;
}

.signature-header p {
  font-size: clamp(1rem, 1.5vw, 1.1rem); 
  line-height: 1.8;
  color: var(--earth);
  opacity: 0.8;
  font-weight: 300;
}

.signature-card  {
  background: #ffffff;
  border-radius: 4px; 
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(44, 51, 39, 0.05); 
  display: flex;
  flex-direction: column;
  height: 100%;
}

.signature-card:hover  {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(44, 51, 39, 0.1);
  border-color: var(--gold); 
}

.signature-image {
    position: relative;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    background-color: var(--earth); 
    filter: brightness(1.05) contrast(1.05); 
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease; 
}

.signature-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top, 
      rgba(44, 51, 39, 0.9) 0%,     
      rgba(44, 51, 39, 0.3) 25%,     
      transparent 45%               
    );
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--ivory);
    transition: var(--transition); 
    text-align: left;
}

.signature-overlay h3 {
    margin-bottom: 8px;
    color: var(--ivory);
    font-size: 1.3rem; 
    font-weight: 600;  
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3); 
}

.signature-card:hover .signature-overlay {
    background: linear-gradient(
      to top, 
      rgba(44, 51, 39, 0.95) 0%, 
      rgba(44, 51, 39, 0.5) 40%,
      transparent 70%
    );
}

.signature-content {
    padding: 40px 30px; 
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
}

.signature-content p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--earth);
  opacity: 0.8;
  margin-bottom: 30px;
  flex-grow: 1; 
}

.tour-meta {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold); 
  color: var(--earth);
  font-size: 10px;
  font-weight: 800;
  padding: 8px 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 5;
}

.signature-footer {
  margin-top: 80px;
  text-align: center;
}

.signature-content .btn-outline {
  display: block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--earth);
  border: 1px solid var(--gold);
  padding: 16px 20px;
  transition: var(--transition);
  font-family: "Playfair Display", serif;
}

.signature-content .btn-outline:hover {
  background: var(--gold);
  color: var(--earth);
}

.signature-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.signature-actions .btn-outline, 
.itinerary-toggle {
  flex: 1;
  text-align: center;
  padding: 12px 5px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 2px;
}

.itinerary-toggle {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.itinerary-toggle:hover {
  background: var(--gold);
  color: var(--earth);
}

.signature-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(44, 51, 39, 0.02); 
  margin: 0 -20px; 
}

.signature-dropdown.is-open {
  max-height: 400px; 
  margin-top: 20px;
  padding: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-list li {
  font-size: 13px;
  line-height: 1.6;
  padding: 6px 0;
  color: var(--earth);
  border-bottom: 1px solid rgba(44, 51, 39, 0.05);
}

.dropdown-list li span {
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
  display: inline-block;
  min-width: 50px;
}

.signature-section {
    padding: clamp(80px, 12vh, 140px) 20px;
    background-color: var(--ivory); 
}

.signature-image {
    position: relative;
    aspect-ratio: 4 / 3; 
    overflow: hidden;
    background-color: var(--earth); 
    filter: brightness(1.05) contrast(1.05); 
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.signature-card:hover .signature-image img {
    transform: scale(1.05);
}

.from-price-overlay {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  color: var(--gold);
  font-weight: 700;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px; 
    max-width: 1240px;
    margin: 0 auto;
    align-items: stretch; 
}

@media (max-width: 1200px) {
    .signature-grid {
        grid-template-columns: repeat(3, 1fr); 
        gap: 25px;
    }
}

@media (max-width: 992px) {
  .signature-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
    .signature-grid {
        grid-template-columns: 1fr; 
        padding: 0 10px;
    }
    
    .signature-image {
        height: 250px; 
    }
}

.details-dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.details-dropdown.is-open {
    max-height: 1200px;
    opacity: 1;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(44, 51, 39, 0.1);
}

/* Inclusions Styling within the Dropdown */
.inclusion-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns for luxury scannability */
    gap: 10px 20px;
}

.inclusion-list li {
    font-size: 13px;
    color: var(--earth);
    opacity: 0.9;
    position: relative;
    padding-left: 20px;
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 800;
}

@media (max-width: 480px) {
    .inclusion-list {
        grid-template-columns: 1fr; /* Stack inclusions on small phones */
    }
}

@media (min-width: 992px) {
    /* 1. Expand the Dropdown */
    .departure-card:hover .details-dropdown,
    .signature-card:hover .details-dropdown {
        max-height: 1500px; 
        opacity: 1;
        margin-top: 25px;
        padding-top: 20px;
        border-top: 1px solid rgba(44, 51, 39, 0.1);
        visibility: visible;
        overflow: visible; /* Ensures content isn't clipped during expansion */
    }

    /* 2. Update Toggle Button UI on Hover */
    .departure-card:hover .details-toggle,
    .signature-card:hover .details-toggle {
        background: var(--gold) !important;
        color: var(--earth) !important;
        transform: translateY(-2px); /* Subtle lift effect */
    }

    /* 3. Rotate the arrow icon */
    .departure-card:hover .details-toggle span,
    .signature-card:hover .details-toggle span {
        display: inline-block;
        transform: rotate(180deg);
        transition: transform 0.4s ease;
    }

    /* 4. Smooth Image Zoom (Matches your refined style) */
    .departure-card:hover .departure-image img,
    .signature-card:hover .signature-image img {
        transform: scale(1.08);
    }
}

/* Ensure the Dropdown is ready for the animation */
.details-dropdown {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden; 
    will-change: max-height, opacity; /* Optimizes browser performance */
}


/* =============== WHY US SECTION ============= */
.why-section {
  padding: clamp(60px, 10vh, 100px) 20px;
  background-color: #ffffff;
}

.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px; /* Reduced from 80px */
}

.why-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-header p {
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--earth);
  opacity: 0.8;
  font-weight: 300;
}

/* 2. COMPACT GRID & CARDS */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px; /* Tighter gap helps cards feel smaller */
  max-width: 1240px;
  margin: 0 auto;
  align-items: start; /* STOP cards from stretching to equal height */
}

.why-card {
  background: var(--ivory);
  border-radius: 4px;
  padding: 30px 25px; /* Reduced vertical padding from 40px to 30px */
  transition: var(--transition);
  border: 1px solid rgba(44, 51, 39, 0.05);
  display: flex;
  flex-direction: column;
  /* height: 100%; <- Removed to allow height to shrink to content */
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 15px 30px rgba(44, 51, 39, 0.08);
}

/* 3. TEXT STYLING */
.why-icon {
  font-size: 1.8rem; /* Slightly smaller icon */
  margin-bottom: 15px; /* Tighter spacing */
  display: block;
}

.why-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 18px; /* Slightly smaller than tours for better fit */
  margin-bottom: 12px;
  color: var(--earth);
  line-height: 1.3;
}

.why-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--earth);
  opacity: 0.8;
  margin-bottom: 0;
}

/* 4. CTA ALIGNMENT */
.why-cta {
  margin-top: 60px;
  text-align: center;
}

.why-cta p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--earth);
  opacity: 0.8;
  margin-bottom: 25px;
}

.btn-primary {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
  background: var(--earth);
  color: var(--ivory);
  padding: 14px 30px; /* Slimmer button */
  transition: var(--transition);
  border: 1px solid var(--earth);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--earth);
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* =============== REVIEWS SECTION ============= */
.reviews-section {
  padding: clamp(80px, 12vh, 140px) 20px;
  background: var(--ivory);
}

.reviews-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.reviews-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 20px;
}

/* 1. THREE-COLUMN GRID (Locked) */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Fixed 3-column layout */
  gap: 35px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

.review-card {
  background: #ffffff;
  padding: 45px 35px;
  border-radius: 4px;
  border: 1px solid rgba(44, 51, 39, 0.05);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(44, 51, 39, 0.08);
}

/* 2. INTERNAL TYPOGRAPHY */
.review-stars {
  font-size: 14px; /* Refined/Smaller */
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 3px;
}

.review-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--earth);
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 30px;
  flex-grow: 1; /* Pushes author to bottom so cards look uniform */
}

.review-author strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: var(--earth);
  margin-bottom: 4px;
}

.review-author span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
}

/* 3. FOOTER, BADGES & CTA */
.reviews-footer {
  text-align: center;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(44, 51, 39, 0.1);
  width: 100%;
  max-width: 600px;
}

.review-badges span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--earth);
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.5;
  transition: var(--transition);
}

.review-badges span:hover {
  opacity: 1;
  color: var(--gold);
}

/* Unified Primary Button */
.btn-primary {
  display: inline-block;
  background: var(--earth);
  color: var(--ivory);
  padding: 18px 40px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid var(--earth);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--earth);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr); /* Drops to 2 on tablets */
    gap: 25px;
  }
}

@media (max-width: 650px) {
  .reviews-grid {
    grid-template-columns: 1fr; /* Stacked on mobile */
  }
  
  .review-badges {
    gap: 15px;
  }
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid var(--earth);
    color: var(--earth);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
    border-radius: 4px;
}

.btn-outline:hover {
    background-color: var(--earth);
    color: var(--ivory);
    /* Subtle lift effect */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 51, 39, 0.1);
}


/* =============== FAQS SECTION ============= */
.faq-section {
  padding: clamp(100px, 15vh, 160px) 20px;
  background-color: #f0f2ef;
  font-family: 'Inter', sans-serif;
}

.faq-section .container {
  max-width: 850px;
  margin: 0 auto;
}

/* 1. HEADER REFINEMENT */
.faq-header {
  text-align: center;
  margin-bottom: 80px;
}

.faq-header h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--earth);
  margin-bottom: 20px;
  /* line-height: 1.2; */
}

.faq-header p {
  /* font-size: 1.1rem;
  color: var(--earth);
  opacity: 0.7;
  font-weight: 300;
  letter-spacing: 0.5px; */
  font-family: "Playfair Display", serif;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--earth);
  opacity: 0.8;
  font-weight: 300;
}


/* 2. MODERN ACCORDION (Card Style) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 15px; 
}

.faq-item {
  background: rgba(255, 255, 255, 0.4); 
  border: 1px solid rgba(44, 51, 39, 0.05);
  border-radius: 8px; 
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 0 30px;
  counter-increment: faq-counter; 
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--gold);
}

.faq-item.active {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(44, 51, 39, 0.06);
  border-color: rgba(212, 175, 55, 0.3);
  transform: scale(1.02); 
}

/* 3. QUESTION WITH NUMBERS */
.faq-question {
  width: 100%;
  padding: 35px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-family: "Playfair Display", serif;
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--earth);
  position: relative;
  font-weight: 550;
}

/* Add the editorial number */
.faq-question::before {
  content: counter(faq-counter, decimal-leading-zero);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-right: 25px;
  letter-spacing: 2px;
  opacity: 0.6;
}

.faq-question::after {
  content: "\2192"; 
  font-family: serif;
  font-size: 20px;
  color: var(--gold);
  margin-left: auto;
  transition: transform 0.4s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(90deg);
}

/* 4. ANSWER REFINEMENT */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-bottom: 40px;
  padding-left: 45px; 
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.9;
  color: var(--earth);
  opacity: 0.8;
  margin-bottom: 20px;
}

/* 5. CTA REFINEMENT */
.faq-cta {
  margin-top: 100px;
  padding: 60px;
  background: var(--earth);
  border-radius: 12px;
  color: var(--ivory);
  text-align: center;
}

.faq-cta p {
  font-style: normal;
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 30px;
  font-family: "Playfair Display", serif;
}

.faq-cta .btn-primary {
  background: var(--gold);
  color: var(--earth);
  border: none;
  padding: 20px 45px;
  font-family: "Playfair Display", serif;
}

.faq-cta .btn-primary:hover {
  background: var(--ivory);
}

/* 6. RESPONSIVE */
/* @media (max-width: 768px) {
  .faq-item { padding: 0 20px; }
  .faq-item.active .faq-answer { padding-left: 0; }
  .faq-cta { padding: 40px 20px; }
} */

/* FAQ VIDEO GRID */
/* .faq-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    margin-top: 50px;
}

.faq-video-card {
    background: #ffffff;
    border: 1px solid rgba(44, 51, 39, 0.08);
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    display: flex; 
    align-items: center;
}

.faq-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(44, 51, 39, 0.05);
}

.faq-video-thumb {
    position: relative;
    width: 160px; 
    height: 120px;
    flex-shrink: 0;
}

.faq-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-play-btn {
    position: absolute;
    inset: 0;
    background: rgba(44, 51, 39, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.faq-video-card:hover .faq-play-btn {
    opacity: 1;
}

.faq-play-btn span {
    font-size: 10px;
    color: var(--ivory);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    border: 1px solid var(--gold);
    padding: 5px 10px;
}

.faq-video-content {
    padding: 20px 25px;
}

.faq-number {
    font-size: 10px;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 5px;
}

.faq-video-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    color: var(--earth);
    margin-bottom: 8px;
    line-height: 1.3;
}

.faq-video-content p {
    font-size: 13px;
    color: var(--earth);
    opacity: 0.7;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-video-grid {
        grid-template-columns: 1fr;
    }
    .faq-video-card {
        flex-direction: column;
    }
    .faq-video-thumb {
        width: 100%;
        height: 180px;
    }
} */


/* =============== CTA SECTION ============= */
.portal-inquiry-section {
    padding: 80px 5%;
    background-color: var(--ivory);
    display: flex;
    justify-content: center;
}

.inquiry-content {
    max-width: 900px;
    width: 100%;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 50px;
}

.inquiry-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 2.5rem);
  font-weight: 500;
  color: var(--earth); 
  margin-bottom: 20px;
  line-height: 1.2;
}

.portal-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(44, 51, 39, 0.05); /* Soft Earth shadow */
    border: 1px solid rgba(212, 175, 55, 0.2); /* Subtle Gold border */
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

/* Mobile Responsive Grid */
/* @media (max-width: 600px) {
    .form-grid { grid-template-columns: 1fr; }
    .inquiry-header h2 { font-size: 1.8rem; }
} */

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--earth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.field input, .field select, .field textarea {
    padding: 12px 15px;
    border: 1px solid #E0E0E0;
    border-radius: 4px;
    background: var(--ivory);
    font-family: inherit;
    transition: var(--transition);
}

.field input:focus, .field select:focus, .field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.field-group {
    margin-bottom: 20px;
}

input[type="date"] {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(44, 51, 39, 0.1);
    border-radius: 4px;
    /* background-color: #ffffff;  */
    color: var(--earth);
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    height: 46px; /* Adjust based on your text input height */
    box-sizing: border-box;
    background-color: var(--ivory) !important; /* Match other fields */
}

input[type="date"]:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.1);
}

/* Ensure date fields match the height and padding of text fields exactly */
input[type="date"] {
    height: 46px; /* Adjust based on your text input height */
    box-sizing: border-box;
    background-color: var(--ivory) !important; /* Match other fields */
}

/* Make the placeholder text in the select field look better */
select:invalid {
    color: rgba(44, 51, 39, 0.5);
}

.full-width {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.form-footer {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.portal-submit {
    background: var(--earth);
    color: var(--ivory);
    border: none;
    padding: 15px 45px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
}

.portal-submit:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.portal-submit svg {
    transition: var(--transition);
}

.portal-submit:hover svg {
    transform: translateX(5px);
}

/* 1. Global Box-Sizing (CRITICAL) */
/* This forces padding to stay INSIDE the 100% width */
.portal-form, 
.portal-form *, 
.portal-form *:before, 
.portal-form *:after {
    box-sizing: border-box !important;
}

/* 2. Responsive Form Padding */
.portal-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(44, 51, 39, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    width: 100%; /* Ensure the form stays in the parent */
    max-width: 100%;
    overflow: hidden; /* Prevent horizontal spill */
}

/* 3. Force Inputs to stay within the lines */
.field input, 
.field select, 
.field textarea, 
input[type="date"] {
    width: 100% !important; /* Force take up parent width only */
    max-width: 100%;        /* Hard limit */
    margin: 0;             /* Remove default browser margins */
    display: block;
}

/* 4. Mobile Overrides */
@media (max-width: 600px) {
    .portal-inquiry-section {
        padding: 40px 10px; /* Thinner gutters on the edge of the screen */
    }

    .portal-form {
        padding: 20px; /* Less padding inside the form gives more room to inputs */
    }
    
    .form-grid {
        display: flex; /* Flex is sometimes more reliable than Grid on old mobile browsers */
        flex-direction: column;
        gap: 20px;
    }
}

/* =============== FOOTER SECTION ============= */
.site-footer {
  background: #1f2b24;
  color: #ffffff;
  padding: 90px 20px 40px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #D4AF37;
}

.footer-col p {
  line-height: 1.7;
  color: #c7d0cb;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #c7d0cb;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-col ul li a:hover {
  color: #9c7c38;
}

.footer-cta {
  display: inline-block;
  margin-top: 15px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #9c7c38;
  padding-bottom: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal a {
  margin-left: 15px;
  color: #c7d0cb;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #9c7c38;
}

.footer-trust span {
  margin-left: 15px;
  color: #c7d0cb;
}

.footer-trust {
  display: flex;
  align-items: center;
  gap: 20px; /* Space between the items */
}

.footer-trust span, 
.footer-trust-link {
  font-size: 11px; /* Matching your refined typography */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(250, 249, 246, 0.6); /* Ivory with soft opacity */
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-trust-link:hover {
  color: var(--gold); /* Subtle gold highlight on hover */
  opacity: 1;
}

/* Bullet divider between items */
.footer-trust span:not(:last-child)::after,
.footer-trust-link:not(:last-child)::after {
  content: "•";
  margin-left: 20px;
  color: var(--gold);
  opacity: 0.5;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-socials a:hover {
    color: var(--gold) !important;
    transform: translateY(-3px);
}


/*========== WhatsApp FAB ============ */
.wa-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.wa-fab:hover { transform: scale(1.05); }

.wa-pulse {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@media (max-width: 800px) {
    .foot-grid { grid-template-columns: 1fr; gap: 40px; }
}

