:root {
  /* ===== BASE (Luxury White System) ===== */
  --ivory: #F8F6F1;        
  --sand: #E6D8C3;         
  --soft-gray: #EDE9E1;   

  /* ===== TEXT ===== */
  --charcoal: #2A2A2A;     
  --text-muted: #6B6B6B;   

  /* ===== BRAND (Safari Identity) ===== */
  --olive: #6A6F3D;        
  --olive-dark: #404421;   

  /* ===== LUXURY ACCENT ===== */
  --gold: #C6A75E;        
  --gold-soft: #D8C187;   

  /* ===== BORDERS / UI ===== */
  --border-soft: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.08);

  --serif: 'Cormorant Garamond', serif;
  --sans: 'Work Sans', sans-serif;
  --radius: 10px;
  --transition: all 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background-color: var(--ivory);      
  font-family: var(--sans);
  color: var(--charcoal);             
  line-height: 1.6;
}

/* HEADINGS */
h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-family: var(--serif);
  color: var(--ivory);             
}

h2 {
  font-size: clamp(2.0rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-family: var(--serif);
  color: var(--charcoal);
}

h3 {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.3;
  font-weight: 500;
  font-family: var(--serif);
  color: var(--charcoal);
}

h4 {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.4;
  font-weight: 500;
  color: var(--charcoal);
}

/* BODY TEXT */
p {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1em;
  font-family: var(--sans);
  color: var(--text-muted);           
}

.btn {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.eyebrow {
    display: block;
    font-family: var(--sans);
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
}

/* SPACING */
h1, h2, h3, h4 {
  margin-bottom: 0.5em;
}

/* ----------- Header Nav -------- */
.luxury-nav {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 5%;
  position: absolute;
  width: 100%;
  z-index: 100;
  align-items: center;
}

/* LOGO */
.logo {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--ivory); 
}

nav { 
  display: flex; 
  align-items: center; 
}

/* NAV LINKS */
.nav-link {
  color: var(--ivory);                 
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 2rem;
  opacity: 0.85;
  transition: all 0.3s ease;
}

.nav-link:hover { 
  opacity: 1;
  color: var(--gold);                
}

/* CTA BUTTON */
.cta-minimal {
  border: 1px solid rgba(248,246,241,0.6); 
  padding: 0.6rem 1.2rem;
  color: var(--ivory);
  text-decoration: none;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-left: 2rem;
  transition: all 0.3s ease;
  font-weight: 500;
  backdrop-filter: blur(6px); 
}

.cta-minimal:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}


/* ---------- Hero Section --------- */
.horizon-hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  position: relative;
  min-height: clamp(520px, 75vh, 720px);
  padding: 6rem 5% 4rem; 
}

/* Background */
.video-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(42, 42, 42, 0.25) 0%,
    rgba(42, 42, 42, 0.15) 40%,
    rgba(42, 42, 42, 0.55) 100%
  );
}

/* Hero Content */
.hero-section {
  z-index: 2;
  max-width: 850px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  margin-bottom: 3rem;
}

.hero-section p {
  max-width: 550px;
  margin: 0 auto;
  color: var(--sand);
  opacity: 0.95;
}

.hero-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.hero-price {
  font-size: 1.0rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}

/* CTA Button */
.btn-gold-fill {
  background: var(--gold);
  color: var(--charcoal);
  border: none;
  padding: 1rem 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: none;
  min-width: 220px;
  text-decoration: none; 
  display: inline-block; 
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-gold-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 167, 94, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
  .nav-link { display: none; } 

  .horizon-hero {
    min-height: auto;
    padding: 120px 5% 60px;
    justify-content: center;
  }

  .hero-center-content {
    margin-bottom: 0;
  }

  .border { border: none; padding-left: 0; }

  .btn-gold-fill {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}  


/* ------ Tour Snapshot ------- */
.tour-snapshot {
  background: var(--soft-gray);
  padding: 3.5rem 5%; 
  border-top: 1px solid var(--border-soft);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.03);
}

.snapshot-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

/* Items */
.snapshot-item {
  text-align: left;
  padding-left: 1.5rem;
  border-left: none;
}

.snapshot-item:first-child {
  border-left: none;
  padding-left: 0;
}

/* Labels */
.snapshot-item .label {
  display: block;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

/* Values */
.snapshot-item .value {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  font-weight: 500;
  color: var(--charcoal); 
}

/* 🔥 Trust Link */
.snapshot-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

.snapshot-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.snapshot-link:hover {
  color: var(--gold);
}

.snapshot-link:hover::after {
  transform: scaleX(1);
}

@media (max-width: 768px) {
  .snapshot-container {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .snapshot-item {
    border-left: none;
    padding-left: 0;
  }
}


/* ------------ Itinerary --------- */
.z-header {
    text-align: center;
    margin-bottom: 60px;
}

.eyebrow {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.9;
}

.z-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    gap: 60px;
    margin: 0 auto 60px;
}

.z-row.reverse {
    flex-direction: row-reverse;
}

.z-image {
    flex: 1;
    height: 420px;
    overflow: hidden;
    border-radius: 2px;
}

.z-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.z-row:hover .z-image img {
    transform: scale(1.05);
}

.z-text {
    flex: 1;
    padding: 10px 0;
}

.z-text p {
  max-width: 48ch;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1em;
  font-family: var(--sans);
  color: var(--text-muted);   
}

.day-label {
    color: var(--gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    display: block;
    margin-bottom: 1rem;
}

.itinerary-z {
    padding: 80px 5% 100px; 
    background-color: var(--ivory);
    color: var(--charcoal);
}

.featured-z {
    background: color-mix(in srgb, var(--gold) 6%, transparent);
    padding: 40px;
    border-radius: 6px;
    margin-left: -40px;
    margin-right: -40px;
}

/* Lodging Group */
.z-lodging-group {
  margin-top: 1rem;
  border-left: 2px solid var(--border-soft);
  padding-left: 12px;
}

/* Title */
.z-lodging-title {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 6px;
}

/* List */
.z-lodging-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Items */
.z-lodging-list li {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

/* Labels */
.z-lodging-list strong {
  color: var(--charcoal);
  font-weight: 500;
}

.z-lodging-list li:first-child strong {
  color: var(--gold); 
}

.z-row:last-of-type {
    margin-bottom: 30px;
}

.z-cta-wrap {
    text-align: center;
    margin-top: 40px; 
    padding: 0 5%;
}

.z-cta-button {
    display: inline-flex; 
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background-color: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    border: 1px solid var(--gold);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.z-cta-button:hover {
    color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background-color: var(--charcoal);
    border-color: var(--charcoal);
}

.z-cta-button::after {
    content: '→';
    margin-left: 12px;
    transition: transform 0.3s ease;
}

.z-cta-button:hover::after {
    transform: translateX(8px);
}

@media (max-width: 900px) {
    .z-row, .z-row.reverse {
        flex-direction: column;
        margin-bottom: 50px; 
        gap: 30px;
    }

    .z-header {
        margin-bottom: 40px;
    }
    
    .z-image {
        width: 100%;
        height: 350px;
    }
    
    .z-text {
        text-align: left;
        padding: 0;
    }

    .featured-z {
        margin-left: 0;
        margin-right: 0;
        padding: 20px;
    }

    .z-cta-wrap {
        margin-top: 20px;
        padding-bottom: 40px;
    }

    .z-cta-button {
    display: flex;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    }
    
    .z-cta-button:hover {
        transform: none; 
    }

    .itinerary-z {
        padding: 60px 5% 80px;
    }
}


/* ------------ Tour Pricing ---------- */
.pricing-section {
    padding: 100px 5%;
    background: var(--soft-gray, #f9f9f9); 
    color: var(--charcoal, #333);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Tier Grid Logic */
.tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: stretch;
}

.tier-card {
    background: var(--ivory);
    padding: 40px 30px;
    border-radius: 4px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--border-soft, #eee);
}

.tier-card.featured {
    background: var(--earth);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #fff;
    padding: 6px 20px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 2px;
}

/* Typography & Elements */
.tier-label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; color: var(--gold); font-weight: 600; }
.tier-name { font-family: var(--serif); font-size: 1.8rem; margin: 10px 0 20px; }

.tier-price { font-family: var(--serif); font-size: 2rem; margin-bottom: 20px; color: var(--gold); }
.tier-price .currency { font-size: 1.4rem; vertical-align: top; margin-right: 4px; }
.tier-price .per { font-family: var(--sans); font-size: 0.9rem; opacity: 0.6; color: inherit; }

.tier-desc { 
  line-height: 1.6; 
  margin-bottom: 25px; 
  min-height: 80px; 
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1em;
  font-family: var(--sans);
  color: var(--text-muted); 
}

.tier-features { list-style: none; border-top: 1px solid rgba(128,128,128,0.2); padding: 25px 0 0 0; margin: 0; }
.tier-features li { font-size: 0.85rem; margin-bottom: 12px; padding-left: 20px; position: relative; }
.tier-features li::before { content: "•"; color: var(--gold); position: absolute; left: 0; font-weight: bold; }

/* Details/Inclusions Area */
.details-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 60px;
}

.details-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.details-title { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 25px; color: var(--gold); border-bottom: 1px solid rgba(128,128,128,0.1); padding-bottom: 10px; }

.check-list, .cross-list { list-style: none; padding: 0; }
.check-list li, .cross-list li { margin-bottom: 15px; font-size: 0.95rem; padding-left: 30px; position: relative; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }
.cross-list li::before { content: '✕'; position: absolute; left: 0; opacity: 0.4; }

/* CTA Area */
.pricing-cta { text-align: center; margin-top: 80px; }
.btn-primary-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--charcoal);
    padding: 18px 45px;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}
.cta-note { display: block; margin-top: 15px; font-size: 0.7rem; opacity: 0.6; text-transform: uppercase; letter-spacing: 1px; }

/* Responsive */
@media (max-width: 992px) {
    .tier-grid { grid-template-columns: 1fr; gap: 40px; }
    .tier-card.featured { transform: scale(1); margin: 20px 0; }
    .details-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .btn-primary-gold {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}


/* ------------ Why Us --------- */
.luxury-why {
    padding: 100px 5%;
    background-color: var(--ivory);
    color: var(--charcoal);
    font-family: var(--sans);
}

.container-itinerary {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Section Header --- */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: clamp(2.0rem, 3vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -0.01em;
    font-family: var(--serif);
    color: var(--charcoal);
}

.lux-lead {
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1em;
  font-family: var(--sans);
  color: var(--text-muted); 
  max-width: 550px;
  margin: 0 auto;
  opacity: 0.9;
}


/* --- The Bento Grid --- */
.luxury-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: auto;
    gap: 25px;
}

/* --- Card Base --- */
.lux-card {
    background: var(--soft-gray);
    border: 1px solid var(--border-soft);
    padding: 40px;
    border-radius: 8px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.lux-card:hover {
    border-color: var(--gold);
    background: #ffffff; /* Subtle lift from page ivory */
    transform: translateY(-4px);
}

/* --- Card Sizing (Bento Logic) --- */
.video-card {
    grid-column: span 4;
    grid-row: span 2;
}

.credentials-card {
    grid-column: span 2;
    background: color-mix(in srgb, var(--gold) 6%, var(--ivory));
    border: 1px solid rgba(198, 167, 94, 0.25);
}

.lux-card:not(.video-card):not(.credentials-card) {
    grid-column: span 2;
}

.video-wrapper {
  cursor: pointer;
  background: var(--earth);
  position: relative;
  width: 100%;
  /* This creates the 16:9 box for the absolute elements inside */
  padding-top: 56.25%; 
  border-radius: 6px;
  overflow: hidden;
  transition: var(--transition);
  margin-bottom: 25px;
}

.video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8; 
  transition: var(--transition);
}

/* Fix for the iframe once clicked */
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-wrapper:hover img {
  opacity: 1;
  transform: scale(1.05);
}

/* Custom Luxury Play Button */
.play-button-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(212, 175, 55, 0.9); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.play-icon {
  color: var(--ivory);
  font-size: 1.5rem;
  margin-left: 5px; 
}

/* --- Card Content --- */
.lux-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.lux-body {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.lux-subtitle {
    margin-top: auto; 
    padding-top: 15px;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--earth);
}

/* --- Trust Pill --- */
.lux-trust-pill-link {
    text-decoration: none;
    display: inline-block;
}

.lux-trust-pill {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--ivory);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--charcoal);
    border: 1px solid var(--border-soft);
    transition: var(--transition);
}

.lux-trust-pill:hover {
    border-color: var(--gold);
}

.gold-star { color: var(--gold); margin-right: 8px; }

/* --- Icons & Lists --- */
.lux-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.lux-list {
    list-style: none;
    margin: 20px 0;
    padding: 0;
}

.lux-list li {
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-soft);
}

.lux-list li span {
    color: var(--gold);
    font-weight: 600;
}

/* --- Button --- */
.btn-lux {
    display: block;
    text-align: center;
    background: var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    padding: 15px;
    transition: 0.3s;      
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-lux:hover {
    background: var(--charcoal);
    color: var(--gold);
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .video-card { grid-column: span 6; }
    .lux-card:not(.video-card) { grid-column: span 3; }
}

@media (max-width: 768px) {
    .luxury-why { padding: 60px 20px; }
    
    .luxury-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .lux-card { 
        padding: 30px; 
    }

    .btn-lux {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}


/* ----------- Contact Form ---------- */
     .section-signature {
    background: var(--soft-gray);
    padding: clamp(5rem, 10vw, 8rem) 5%;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.03);
}

.enquiry-wrap {
    max-width: 1100px;
    margin: 0 auto;
}

/* HEADER & TITLES */
.enquiry-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-title {
    font-family: var(--serif); 
    color: var(--charcoal);   
    margin-bottom: 25px;
}

.contact-intro {
  max-width: 650px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 1em;
  font-family: var(--sans);
  color: var(--text-muted);  
}

.lux-subtitle {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 8px;
}

.trust-note {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0.7;
    margin-top: 12px;
}

/* CARD ARCHITECTURE */
.enquiry-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 2rem;
    background: var(--ivory);
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 60px 1.6fr;
    align-items: stretch;
}

.enquiry-option {
    padding: 4rem 3.5rem;
}

.side-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--ivory);
}

.option-title {
    font-family: var(--serif);
    font-size: 1.8rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.option-body {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* BUTTONS (CTAs) */
.btn-outline-gold {
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid var(--gold);
    text-align: center;
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.btn-gold-solid {
    display: inline-block;
    width: auto;
    align-self: flex-start;   
    padding: 18px 32px;    
    border: none;
    border-radius: none;
    cursor: pointer;
    background: var(--gold);
    color: var(--charcoal);
    transition: all 0.3s ease;   
    appearance: none;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-gold-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    background: var(--charcoal);
    color: var(--gold);
}

/* FORM STYLING */
.lux-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--gold);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-soft);
    color: var(--charcoal);
    border-radius: 4px;
    font-family: var(--sans);
    font-size: 0.9rem;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
}

/* DIVIDER */
.enquiry-spacer {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-spacer::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 60%;
    background: var(--gold);
    opacity: 0.2;
}

.spacer-text {
    padding: 10px;
    font-family: var(--serif);
    font-style: italic;
    color: var(--gold);
    z-index: 1;
    background: var(--ivory);
}

input[type="date"] {
    position: relative;
    font-family: 'Work Sans', sans-serif;
    cursor: pointer;
    color: var(--charcoal);
}

input[type="date"]::-webkit-calendar-picker-indicator {
    background: transparent;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

.form-group:has(input[type="date"]) {
    position: relative;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .enquiry-grid {
        grid-template-columns: 1fr;
    }
    .enquiry-spacer {
        height: 60px;
    }
    .enquiry-spacer::before {
        width: 100px;
        height: 1px;
    }
    .side-cta {
        text-align: center;
        padding: 3rem 2rem 1rem;
    }
    .enquiry-option.form-area {
        padding: 1rem 2rem 3rem;
    }
}

@media (max-width: 768px) {
  .btn-outline-gold,  
  .btn-gold-solid {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
    .form-row {
        gap: 0.8rem;
    }
    
    .form-group label {
        font-size: 0.6rem;
    }
}


/* ---------- FAQs ----------- */
.lux-faq{
padding:clamp(100px,10vw,140px) 0;
background:var(--ivory);
}

.container{
max-width:1200px;
margin-inline:auto;
padding-inline:clamp(20px,4vw,40px);
}

/* GRID */
.faq-wrap{
display:grid;
grid-template-columns:minmax(360px,440px) 1fr;
gap:clamp(60px,6vw,80px);
align-items:start;
}

@media (max-width:980px){
.faq-wrap{grid-template-columns:1fr;}
}

/* INTRO */
.faq-intro{
top:120px;
padding-right:40px;
}

.faq-lead{
margin:20px 0 28px;
max-width:380px;
font-size: clamp(1rem, 1.2vw, 1.125rem);
line-height: 1.6;
font-weight: 400;
margin-bottom: 1em;
font-family: var(--sans);
color: var(--text-muted);   
}

/* BUTTON */
.btn-lux-outline {
    display: inline-block;
    padding: 12px 26px;
    border-radius: none;
    border: 1px solid var(--gold);
    color: var(--charcoal);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
}

.btn-lux-outline:hover {
    background: var(--gold);
    color: var(--charcoal);
}

@media (max-width: 768px) {
  .btn-lux-outline {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}

/* ACCORDION */
.faq-accordion{
display:flex;
flex-direction:column;
gap:16px;
}

/* CARD */
.faq-card{
background:var(--soft-gray);
padding:24px 26px;
border-radius: 8px;
transition:var(--transition);
border: 1px solid var(--border-soft);
}

.faq-card:hover{
transform:translateY(-3px);
box-shadow:var(--shadow-soft);
}

/* SUMMARY */
.faq-card summary{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
font-family: var(--serif);
font-weight:500;
list-style:none;
}

summary::-webkit-details-marker{display:none;}

/* ICON */
.faq-icon{
width:18px;
height:18px;
position:relative;
}

.faq-icon::before,
.faq-icon::after{
content:"";
position:absolute;
background:var(--charcoal);
}

.faq-icon::before{
width:100%;
height:2px;
top:8px;
}

.faq-icon::after{
width:2px;
height:100%;
left:8px;
transition:var(--transition);
}

details[open] .faq-icon::after{
transform:scaleY(0);
}

/* CONTENT */
.faq-content{
margin-top:16px;
font-size:.95rem;
line-height:1.7;
color:var(--text-muted);;
}


/* ---------- Related Tours ------- */
  .related-tours-section {
  padding: 5rem 1.5rem;
  background: var(--soft-gray);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.related-container {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.related-intro {
  max-width: 640px;
  margin: 0 auto 3rem;
  color: var(--text-muted);
}

/* Links Grid */
.related-links {
  display: grid;
  gap: 1.8rem;
  margin-bottom: 3rem;
}

.related-item {
  display: block;
  text-decoration: none;
  padding: 1.8rem;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  text-align: left;
}

.related-item:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.related-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
  line-height: 1.4;
}

.related-desc {
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.related-price {
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 600;
  margin-top: 1rem;
  font-family: var(--sans);
  color: var(--gold-soft); 
}

/* CTA */
.related-cta-button {
  display: inline-block;
  font-family: var(--sans);
  padding: 16px 32px;
  background: var(--charcoal);
  color: var(--ivory);
  text-decoration: none;
  border-radius: none;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.related-cta-button:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}

/* Responsive */
@media (min-width: 768px) {
  .related-links {
    grid-template-columns: repeat(3, 1fr);
  }

  .btn-lux-outline {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    display: block;
    padding: 14px 18px;
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
}


/* --------- FOOTER SECTION -------- */
.site-footer {
  background-color: var(--olive-dark);
  color: var(--ivory);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 25px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.logo-circle {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
}

.brand-tagline {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  opacity: 0.9;
}

.foot-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85); 
  margin-bottom: 30px;
}

.ta-badge:hover { background: rgba(255, 255, 255, 0.08); }
.ta-stars { color: #efc507; font-size: 1rem; margin-bottom: 4px; }
.ta-label { color: var(--ivory); font-size: 0.85rem; }

.foot-trust {
  display: flex;
  flex-wrap: wrap; 
  gap: 12px;
  margin-top: 25px;
}

.ta-badge {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 20px; 
  border-radius: var(--radius);
  border-left: 3px solid #00af87; 
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
  min-width: 140px;
}

.ta-badge:hover { 
  background: rgba(255, 255, 255, 0.08); 
  transform: translateY(-2px);
}

/* --- Unique Brand Accents --- */
.utb-badge { border-left-color: var(--gold); } 
.auto-badge { border-left-color: #ef4444; } 

/* --- Content Styles --- */
.ta-stars { color: #efc507; font-size: 0.9rem; margin-bottom: 4px; }

.badge-icon {
  font-size: 1rem;
  margin-bottom: 4px;
  display: block;
}

.ta-label { 
  color: var(--ivory); 
  font-size: 0.75rem; 
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* --- Mobile Perfection --- */
@media (max-width: 900px) {
  .foot-trust {
    justify-content: center; 
  }
}

@media (max-width: 480px) {
  .ta-badge {
    flex: 1 1 45%; 
    min-width: 120px;
    padding: 10px;
  }
}

/* Contact Card */
.foot-contact-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 175, 55, 0.15);
  padding: 40px;
  border-radius: var(--radius);
}

.contact-inner h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.foot-note {
  font-size: 0.85rem;
  color: #ffb8b8; 
  margin-bottom: 25px;
  font-style: italic;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1rem;
}

.contact-icon { color: var(--gold); width: 20px; }

.contact-list a {
  color: var(--ivory);
  text-decoration: none;
  transition: 0.3s;
}

.contact-list a:hover { color: var(--gold); text-decoration: underline; }

.foot-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 10px; 
  margin: 0 auto 20px auto; 
  width: 100%;
  max-width: 340px; 
}

.footer-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 5px; 
  text-align: center;
  text-decoration: none;
  white-space: nowrap; 
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.btn-gold { 
  background: var(--gold); 
  color: #fff; 
  border: 1px solid var(--gold);
}

.btn-outline { 
  border: 1px solid var(--ivory); 
  color: var(--ivory); 
}

/* Hover states */
.footer-btn.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.footer-btn.btn-outline:hover {
  background: var(--ivory);
  color: var(--charcoal); 
  border-color: var(--ivory);
}

.footer-bottom{
margin-top:12px;
font-size:.8rem;
opacity:.7;
display:flex;
flex-wrap:wrap;
justify-content:center;   
align-items:center;
gap:15px;
text-align:center;
}

.footer-bottom a{
color:ivory;
text-decoration:none;
}

.footer-bottom a:hover{
color:var(--gold)
}

@media (max-width:600px){

.footer-bottom{
flex-direction:column;
text-align:center;
gap:8px;
}

.footer-bottom a{
margin-left:0;
}

}

@media (max-width: 900px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .foot-brand, .foot-contact-card {
    text-align: center;
    max-width: 100%;
  }
  .logo-group { justify-content: center; }
  .foot-description { margin-left: auto; margin-right: auto; }
  .contact-list li { justify-content: center; }
}

@media (max-width: 500px) {
  .site-footer { padding: 60px 0 30px; }
  .brand-name { font-size: 1.6rem; }
  .foot-contact-card { padding: 30px 20px; }
}

@media (max-width: 400px) {
  .foot-actions {
    gap: 6px;
    max-width: 100%; 
  }
  
  .footer-btn {
    font-size: 0.65rem; 
    letter-spacing: 0.5px;
    padding: 12px 2px;
  }
}


 /* --------- FLOATING WHATSAPP ------ */
		:root {
    --wa-green: #25D366;
    --wa-shadow: rgba(37, 211, 102, 0.3);
}

.wa-fab {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    z-index: 99999;
    
    background: var(--wa-green);
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: 700;
    
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 10px 25px var(--wa-shadow);
    transition: var(--transition);
    overflow: hidden;
    white-space: nowrap;
}

/* Hover effects */
.wa-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px var(--wa-shadow);
    filter: brightness(1.05);
}

.wa-icon {
    font-size: 1.4rem;
    line-height: 1;
}

/* Responsive Logic: Collapsing the label on Mobile */
@media (max-width: 600px) {
    .wa-fab {
        bottom: 20px;
        right: 20px;
        padding: 0;
        width: 56px; 
        height: 56px;
        border-radius: 50%;
    }
    
    .wa-text {
        display: none; 
    }
    
    .wa-pulse {
        display: none; 
    }
}

/* Simple Pulse Animation for the Icon (Optional) */
@keyframes soft-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}
.wa-icon { animation: soft-pulse 3s infinite ease-in-out; }

/* Mobile Adjustments for High Visibility */
@media (max-width: 600px) {
    .wa-fab {
        bottom: 80px !important; 
        right: 25px !important;
        padding: 0 !important;
        box-shadow: 0 12px 30px var(--wa-shadow);
    }

    .wa-icon {
        font-size: 1.8rem; 
    }

    .wa-text, .wa-pulse {
        display: none; 
    }
}

@media (min-width: 601px) {

  .wa-fab {
      width: 56px;
      height: 56px;
      padding: 0;
      border-radius: 50%;
      transition: all 0.3s ease;
  }

  .wa-text {
      display: none;
  }

  .wa-fab:hover {
      width: auto;
      padding: 10px 16px;
  }

  .wa-fab:hover .wa-text {
      display: inline;
  }

}