
/* ============= BRAND TOKENS ============== */
    /* -------- TOKENS ---------- */
  :root {
    --gold: #D4AF37;
    --earth: #2C3327;
    --ivory: #FAF9F6;
    --mist: #E9EAE0;
    --stone: #e3dfd6;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    background: var(--ivory);
    font-family: 'Work Sans', sans-serif;
    color: var(--earth);
  }

  /* Typography */
  h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.5px;
  }

  p, a, span, div {
    font-family: 'Work Sans', sans-serif;
  }


    /* --------- HEADER SECTION ------- */
  .site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  }

	/* SCROLLED STATE (Triggered by JS) */
	.site-header.scrolled {
  background: rgba(44, 51, 39, 0.95); 
  padding: 12px 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
	}

	.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
	}

	/* LOGO STYLES */
	.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ivory);
	}

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

	.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  font-weight: 600;
	}

	/* NAVIGATION */
	.header-nav {
  display: flex;
  align-items: center;
  gap: 30px;
	}

	.header-nav a {
  text-decoration: none;
  color: var(--ivory);
  font-family: 'Work Sans', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500;
  transition: color 0.3s;
	}

	.header-nav a:hover {
  color: var(--gold);
	}

	/* HEADER CTA */
	.header-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 0.75rem !important;
	}

	@media (max-width: 768px) {
  .header-nav a:not(.header-cta) {
    display: none; 
  }
  
  .logo-text {
    font-size: 1rem;
  }
	}


	/* --------- HERO SECTION -------- */
	.glass-hero {
    position: relative;
    height: clamp(630px, 80vh, 750px);
    display: flex;
    align-items: flex-start;
    overflow: hidden;
  }

  /* BACKGROUND */
  .hero-video-fallback {
    position:absolute;
    inset:0;
    z-index:0;
    }

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

  /* CINEMATIC VIGNETTE */
  .vignette {
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.18) 40%,
    rgba(0,0,0,.40) 100%
  );
  z-index:1;
  }

  /* CONTAINER */
  .container {
    width: 92%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    padding-top: 10vh;
  }

  .hero-text {
    flex: 1.2;
    color: var(--ivory);
    animation: fadeUp 1s ease forwards;
    max-width: 560px;
    margin-top: 40px;
  }

  .hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    font-family: 'Cormorant Garamond', serif; 
    font-weight: 500;
    line-height: 1.0; 
  }

  h1 i { font-style: italic; font-weight: 300; }

  .hero-text p {
    font-size: 1.15rem;
    line-height: 1.75;
    opacity: 0.92;
    font-weight: 400;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
    max-width: 480px; 

  }

  /* NEW: TRUST + PRICE */
  .hero-proof {
    margin-top: 22px;
    padding-top: 14px;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.75);
    border-top: 1px solid rgba(255,255,255,0.12);
  }

  .hero-proof a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(212,175,55,0.5);
    transition: 0.3s;
  }

  .hero-proof a:hover {
    border-bottom: 1px solid var(--gold);
    opacity: 1;
  }

  .hero-price {
    margin-top: 10px;
    border-left: 2px solid var(--gold);
    font-size: 0.95rem;
    letter-spacing: 0.8px;
    line-height: 1.6;
    background: rgba(255,255,255,0.03);
    padding: 14px 18px;
    font-weight: 500;
    color: rgba(212,175,55,0.9);
  }

  .hero-price strong {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--ivory);
    margin: 0 4px;
  }

  /* GLASS FORM */
  .glass-form {
    flex: 0.8;
    max-width: 400px;
    background: linear-gradient(
    135deg,rgba(255,255,255,0.12),rgba(255,255,255,0.05));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 50px 40px;
    border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    animation: fadeUp 1.2s ease forwards;
  }

  /* FORM */
  .form-header {
    margin-bottom: 30px;
    text-align: center;
    color: var(--ivory);
  }

  .form-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 5px;
  }

  .form-header p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
  }

  .f-group { margin-bottom: 20px; }

  .f-group label {
    display: block;
    font-size: 0.6rem;
    color: var(--ivory);
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
    opacity: 0.8;
  }

  .f-group input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    color: var(--ivory);
    font-family: 'Work Sans', sans-serif;
    outline: none;
    transition: 0.3s;
  }

  .f-group input::placeholder {
    color: rgba(255,255,255,0.4);
  }

  .f-group input:hover {
    border-color: rgba(255,255,255,0.4);
  }

  .f-group input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 0 1px var(--gold);
  }
  
  .glass-form {
  flex: 0.8;
  max-width: 450px; 
  background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(255,255,255,0.05));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 40px 30px; 
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

.f-row {
  display: flex;
  gap: 15px; 
  width: 100%;
}

.f-row .f-group {
  flex: 1; 
  min-width: 0; 
}

.f-group input {
  width: 100%;
  padding: 12px; 
}

@media (max-width: 480px) {
  .f-row {
    gap: 10px;
  }
  .glass-form {
    padding: 30px 20px;
  }
}

  /* CTA */
  .submit-luxe {
    width: 100%;
    background: var(--gold);
    color: var(--earth);
    border: none;
    padding: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.4s;
  }

  .submit-luxe:hover {
    background: var(--ivory);
    color: var(--earth);
  }

  /* FOOTER */
  .form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.65rem;
    color: var(--ivory);
    opacity: 0.6;
    text-transform: uppercase;
  }

  /* ANIMATION */
  @keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
  }

  /* MOBILE */
  @media (max-width: 1024px) {
    .f-group label {
        text-align: left;
    }

    .hero-video-fallback img {
    object-position: center 30%;
    }

    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
        padding-top: 0;
        padding-bottom: 40px;
    }
  }

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

    .sidebar {
    display: none;
    }

    .hero-main {
    justify-content: center; 
    padding: 40px 20px 80px; 
    }

    .content {
    margin-top: 0; 
    }

    .info-stack {
    right: 20px;
    bottom: 20px;
    }
  }

  @media (max-width: 768px) {
  	.glass-hero {
    height: auto;
    padding: 60px 0;
    overflow: visible; 
  	} 
	}


	/* ------ EXPERIENCE & OVERVIEW ----- */
	/* Section */
.experience-overview {
  padding: 90px 0 110px;
  background: var(--ivory);
  color: var(--earth);
}

.luxury-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header Stats */
.exp-header-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 70px;
  gap: 40px;
}

.exp-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.exp-header-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}

.exp-header-text p {
  max-width: 550px;
  font-family: 'Work Sans', sans-serif;
  opacity: 0.7;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Glass Stats */
.tour-stats-bar {
  display: flex !important;
  flex-direction: row !important; 
  flex-wrap: nowrap !important;   
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.05);
  gap: 30px;
  min-width: fit-content; 
  box-sizing: border-box;
}

.stat-item {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(0,0,0,0.08);
  padding-right: 30px;
  flex: 1;
  min-width: 0; 
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  white-space: nowrap;
}

.stat-value {
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  white-space: nowrap;
  color: var(--earth);
}

@media (max-width: 1024px) {
  .exp-header-main {
    flex-direction: column; 
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 50px;
  }
  
  .tour-stats-bar {
    width: 100%; 
    justify-content: space-around;
  }
}

@media (max-width: 600px) {
  .exp-header-text h2 {
    font-size: 2rem;
  }

  .tour-stats-bar {
    padding: 15px 12px;
    gap: 15px; 
    border-radius: 10px;
  }

  .stat-item {
    padding-right: 15px;
    text-align: center;
    align-items: center;
  }

  .stat-label {
    font-size: 0.55rem;
    letter-spacing: 1px;
  }

  .stat-value {
    font-size: 0.85rem;
  }
}

@media (max-width: 380px) {
  .tour-stats-bar {
    gap: 8px;
    padding: 12px 8px;
  }

  .stat-item {
    padding-right: 8px;
    border-right: 1px solid rgba(0,0,0,0.05); 
  }

  .stat-label {
    font-size: 0.5rem;
  }

  .stat-value {
    font-size: 0.75rem;
  }
}

/* Mosaic Grid */
.exp-mosaic-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 25px;
}

/* FEATURE (BIG CARD) */
.feature-item-v2 {
  grid-column: span 2;
  grid-row: span 2;
}

/* TALL ITEM */
.tall-item-v2 {
  grid-row: span 3;
}

/* CARD BASE */
.mosaic-item-v2 {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

/* IMAGE */
.mosaic-item-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  filter: brightness(0.95) contrast(1.05);
}

/* OVERLAY (FIXED – SOFT + CINEMATIC) */
.mosaic-overlay-v2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.65) 0%,
    rgba(10,10,10,0.2) 55%,
    rgba(10,10,10,0.0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 35px;
  color: white;
  transition: background 0.4s ease;
}

/* TEXT */
.mosaic-overlay-v2 h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1.2;
  font-weight: 400;
}

.feature-item-v2 h3 {
  font-size: 1.5rem;
}

.mosaic-overlay-v2 p {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  opacity: 0.85; /* ALWAYS VISIBLE */
  line-height: 1.5;
  max-width: 90%;
}

/* TAG (UPGRADED) */
.tag {
  background: rgba(212,175,55,0.9);
  backdrop-filter: blur(6px);
  color: var(--earth);
  align-self: flex-start;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  border-radius: 20px;
}

/* Interactions */
.mosaic-item-v2:hover {
  transform: translateY(-4px);
}

.mosaic-item-v2:hover img {
  transform: scale(1.06);
}

.mosaic-item-v2:hover .mosaic-overlay-v2 {
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.75) 0%,
    rgba(10,10,10,0.25) 60%,
    rgba(10,10,10,0.05) 100%
  );
}

@media (max-width: 1100px) {
  .exp-header-main {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 50px;
  }

  .tour-stats-bar {
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }

  .stat-item {
    padding-right: 20px;
  }

  /* 2 COLUMN LAYOUT */
  .exp-mosaic-v2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-item-v2 {
    grid-column: span 2;
    grid-row: span 1;
  }

  .tall-item-v2 {
    grid-row: span 1;
  }
}

@media (max-width: 600px) {
  .header-text h2 {
    font-size: 2rem;
  }

  .tour-stats-bar {
    flex-direction: column;
    gap: 15px;
    padding: 20px;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0 0 15px 0;
  }

  /* STACKED CARDS */
  .exp-mosaic-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mosaic-item-v2,
  .feature-item-v2,
  .tall-item-v2 {
    grid-column: span 1;
    grid-row: span 1;
    height: 280px;
  }

  .feature-item-v2 h3 {
    font-size: 1.5rem;
  }

  .mosaic-overlay-v2 {
    padding: 25px;
  }

   .exp-mosaic-v2 {
    gap: 25px;
  }

  .itinerary-title {
    font-size: 2rem;
  }
}


	/* --------- TOUR PRICING & INCLUSIONS -------- */
		.safari-pricing-section {
    background-color: var(--mist);
    padding: 100px 20px;
    color: var(--earth);
  }

  .pricing-container { max-width: 1200px; margin: 0 auto; }

  /* Header */
.pricing-header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.pricing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--earth);
}

.lux-separator {
  height: 1px;
  width: 60px;
  background: var(--gold);
  margin: 30px auto;
}

.pricing-lead {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
  line-height: 1.7;
  font-size: 1.05rem;
}
  
  /* Permit Bar */
  .permit-alert-bar {
    background: var(--ivory);
    border: 1px solid var(--gold);
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-radius: 4px;
  }

  .total-cost-note {
  max-width: 420px;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.9;
}

.total-cost-note strong {
  color: var(--gold);
  font-weight: 600;
}

  .permit-info h3 { font-size: 1.6rem; }
  .permit-info strong { color: var(--gold); font-size: 1.8rem; font-family: 'Cormorant Garamond', serif; }
  .permit-alert-bar p { max-width: 400px; font-size: 0.85rem; opacity: 0.8; }
  .tag { background: var(--gold); color: #fff; padding: 2px 8px; font-size: 0.7rem; text-transform: uppercase; border-radius: 2px; vertical-align: middle; margin-right: 10px; }

  /* Tier Grid */
  .tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
  }

  .tier-card {
    background: var(--ivory);
    padding: 40px 30px;
    border-radius: 4px;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .tier-card.featured {
    background: var(--earth);
    color: var(--ivory);
    transform: scale(1.05);
    z-index: 2;
  }

  .featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: white;
    padding: 4px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 600;
  }

  .tier-label { text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; color: var(--gold); }
  .tier-name { font-size: 1.8rem; margin: 10px 0 20px; }
  
  .tier-price { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 20px; }
  .tier-price .currency { font-size: 1.5rem; vertical-align: top; margin-right: 5px; }
  .tier-price .per { font-family: 'Work Sans', sans-serif; font-size: 0.9rem; opacity: 0.6; }

  .tier-desc { font-size: 0.9rem; line-height: 1.6; margin-bottom: 25px; min-height: 70px; }

  .tier-features { list-style: none; border-top: 1px solid var(--stone); padding-top: 20px; }
  .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 Area */
  .details-card { background: var(--ivory); padding: 50px; border-radius: 4px; }
  .details-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  .details-title { font-size: 1.4rem; margin-bottom: 25px; border-bottom: 1px solid var(--stone); padding-bottom: 10px; }
  
  .check-list li, .cross-list li { margin-bottom: 12px; font-size: 0.9rem; padding-left: 25px; position: relative; list-style: none;}
  .check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); }
  .cross-list li::before { content: '✕'; position: absolute; left: 0; opacity: 0.5; }

  @media (max-width: 992px) {
    .tier-grid { grid-template-columns: 1fr; }
    .tier-card.featured { transform: scale(1); }
    .permit-alert-bar { flex-direction: column; text-align: center; gap: 20px; }
    .details-grid { grid-template-columns: 1fr; }
  }

  .cta-footer {
    text-align: center;
    border-top: 1px solid var(--stone);
    padding-top: 50px;
  }

  .cta-note {
    font-size: 1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
  }

  .primary-cta-button {
    display: inline-block;
    background: var(--earth);
    color: var(--ivory);
    text-decoration: none;
    padding: 20px 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: none;
  }

  .primary-cta-button:hover {
    background: var(--gold);
    transform: translateY(-3px);
  }

  @media (max-width: 600px) {
  .pricing-title {
    font-size: 2rem;
  }
	}


	/* --------- ITINERARY SECTION ------- */
  .section-itinerary-dark {
  background-color: var(--earth);
  color: var(--ivory);
  padding: 120px 5%;
  font-family: 'Inter', sans-serif;
}

.container-itinerary {
  max-width: 1000px;
  margin: 0 auto;
}

/* Header */
.itinerary-header {
  text-align: center;
  margin-bottom: 50px;
}

.itinerary-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.itinerary-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--ivory);
}

.lux-separator {
  height: 1px;
  width: 60px;
  background: var(--gold);
  margin: 30px auto;
}

.itinerary-intro {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Timeline V3 Noir */
.timeline-noir {
  position: relative;
  margin-top: 25px;
}

.day-v3 {
  display: flex;
  gap: 60px;
  margin-bottom: 100px;
}

.day-aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50px;
}

.day-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.path-line {
  flex-grow: 1;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: 20px;
  opacity: 0.2;
}

/* Day Content */
.day-body {
  flex-grow: 1;
}

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

.gold-fill {
  background: var(--gold);
  color: var(--earth);
  display: inline-block;
  padding: 2px 12px;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.day-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--ivory);
}

.day-description {
  line-height: 1.9;
  font-size: 1.05rem;
  opacity: 0.7;
  margin-bottom: 40px;
  max-width: 700px;
}

/* Lodging Grid - Ultra Clean */
.lodging-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  border-top: 1px solid var(--border-glass);
  padding-top: 30px;
}

.lodge-v3 h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--ivory);
}

.lodge-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}

.lodge-v3 p {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.6;
}

.lodge-v3.luxury {
  border-left: 1px solid var(--gold);
  padding-left: 20px;
}

.end-journey-marker {
  display: inline-block;
  border: 1px solid var(--gold);
  padding: 15px 30px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 20px;
}

/* Mobile */
@media (max-width: 850px) {
  .day-v3 { gap: 30px; }
  .lodging-comparison { grid-template-columns: 1fr; gap: 30px; }
  .day-heading { font-size: 1.5rem; }
  .day-description { font-size: 0.9rem; }
}

@media (max-width: 600px) {
  .itinerary-title {
    font-size: 2rem;
  }
}


	/* --------- TRUST SECTION --------- */
		/* Base section styles remain the same */
  .trust-section { background-color: var(--ivory); padding: 80px 5% 5px; color: var(--earth); border-top: 1px solid var(--mist); }
  .trust-container { max-width: 1200px; margin: 0 auto; }
  .trust-header { text-align: center; margin-bottom: 70px; }

.trust-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.trust-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--earth);
}

.lux-separator {
  height: 1px;
  width: 60px;
  background: var(--gold);
  margin: 30px auto;
}

.trust-intro {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
  line-height: 1.7;
  font-size: 1.05rem;
} 

  .trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 100px; }
  .trust-pillar { text-align: center; padding: 40px 25px; background: white; box-shadow: 0 10px 40px rgba(0,0,0,0.02); border-radius: 4px; }
  .trust-icon { width: 50px; height: 50px; margin: 0 auto 20px; color: var(--gold); }
  .trust-pillar h3 { font-size: 1.5rem; margin-bottom: 15px; }
  .trust-pillar p { font-size: 0.9rem; line-height: 1.7; opacity: 0.7; }
  .trust-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

  /* SLIDER LOGIC CSS */
  .testimonial-slider { max-width: 800px; margin: 0 auto 80px; text-align: center; background: var(--mist); 
    border-radius: 2px; overflow: hidden; padding: 60px 0; border-top: 1px solid rgba(0,0,0,0.05);
  margin-top: 60px;}
  
  .testimonial-container { overflow: hidden; width: 100%; }
  .testimonial-label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.7rem;
  color: #777;
  margin-bottom: 20px;}

  .testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);}

  .testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 20px;
  box-sizing: border-box; 
}

  .quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 8rem; color: var(--gold); line-height: 0; display: block; margin-top: 40px; opacity: 0.3; }
  .quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.4;
  max-width: 650px;
  color: var(--earth);
  margin: 0 auto 30px;
  padding: 0 10px; /* prevents edge clipping */
}
  .author-name { display: block; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
  .author-meta { font-size: 0.75rem; opacity: 0.6; display: block; margin-top: 5px; }

  .slider-dots { margin-top: 30px; display: flex; justify-content: center; gap: 8px; }
  .dot { width: 8px; height: 8px; background: rgba(0,0,0,0.1); border-radius: 50%; cursor: pointer; transition: 0.3s; }
  .dot.active { background: var(--gold); width: 20px; border-radius: 4px; }

  .trust-logos { text-align: center; border-top: 1px solid rgba(0,0,0,0.05); padding-top: 60px; }
  .logo-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 3px; opacity: 0.5; margin-bottom: 30px; display: block; }
  .logo-flex { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center; }
  .partner-tag { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; letter-spacing: 3px; opacity: 0.4; padding: 5px 15px; border: 1px solid var(--earth); }

  .reviews-link {
  margin-top: 20px;
}

.reviews-link a {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--earth);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  transition: 0.3s;
}

.reviews-link a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.trust-cta-btn {
  display: inline-block;
  padding: 16px 32px;
  background: var(--earth);
  color: var(--ivory);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.trust-cta-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(44, 51, 39, 0.15);
}

/* Hover effect */
.trust-cta-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  transform: translateY(-2px);
}

  @media (max-width: 900px) { .trust-grid { grid-template-columns: 1fr; } .quote-text { font-size: 1.4rem; } }

  @media (max-width: 768px) {

  .quote-text {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 280px;   
    margin: 0 auto 25px;
  }

  .trust-title {
    font-size: 2rem;
  }

}


	/* --------- CONTACT FORM ------- */
			.section-signature * { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    -webkit-font-smoothing: antialiased;
  }

  .section-signature {
    background-color: var(--mist);
    padding: 80px 24px;
    font-family: 'Work Sans', sans-serif;
    color: var(--earth);
  }

  .enquiry-container {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* HEADER STYLE */
  .enquiry-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
  }

  .enquiry-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
  }

  .enquiry-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.1;
    color:var(--earth)
  }

  .enquiry-intro {
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-size: 1.05rem;
    opacity: 0.7;
    color: #666;
  }

  /* THE MASTER CARD */
  .enquiry-card {
    background: var(--ivory);
    padding: 80px;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.04);
  }

  .enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 100px 1.5fr;
    align-items: stretch;
  }

  /* LEFT SIDE: DIRECT CONTACT */
  .side-cta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 50px;
    border-right: 1px solid var(--stone);
  }

  .lux-subtitle {
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 10px;
  }

  .option-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.1rem;
    font-weight: 400;
    margin-bottom: 15px;
  }

  .option-body {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #555;
    font-weight: 300;
  }

  /* MIDDLE DECORATOR */
  .enquiry-spacer {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .spacer-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--gold);
    background: var(--ivory);
    z-index: 2;
    padding: 10px;
  }

  /* RIGHT SIDE: FORM */
  .form-area {
    padding-left: 50px;
  }

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

  .form-group {
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .form-group label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--earth);
  }

  .form-group input, 
  .form-group select, 
  .form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--stone);
    padding: 12px 0;
    font-family: 'Work Sans', sans-serif;
    font-size: 1rem;
    color: var(--earth);
    transition: var(--transition);
    outline: none;
    border-radius: 0;
  }

  .form-group input:focus, 
  .form-group textarea:focus {
    border-bottom: 1px solid var(--gold);
  }

  /* BUTTONS */
  .btn-outline-gold {
    display: inline-block;
    padding: 18px 35px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
  }

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

  .btn-gold-solid {
    width: 100%;
    padding: 22px;
    background: var(--earth);
    color: white;
    border: none;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
  }

  .btn-gold-solid:hover {
    background: var(--gold);
    letter-spacing: 5px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  }

  .trust-note {
    font-size: 0.75rem;
    margin-top: 20px;
    color: #aaa;
    font-style: italic;
    letter-spacing: 0.5px;
  }

  /* LIGHTER PLACEHOLDERS */
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #bbb; 
  font-weight: 300;
  opacity: 1; 
  transition: var(--transition);
}

/* SUBTLE HOVER EFFECT ON INPUTS */
.form-group input:focus::placeholder {
  opacity: 0.5;
  transform: translateX(5px); 
}

/* MOBILE GRID PERSISTENCE */
@media (max-width: 992px) {
  .enquiry-card { 
    padding: 40px 20px; /* Reduced from 80px to stop stretching */
    width: 100%;
    margin: 0;
  }
  
  .enquiry-grid { 
    grid-template-columns: 1fr; 
  }

  .side-cta {
    border-right: none;
    border-bottom: 1px solid var(--stone);
    padding: 0 0 40px 0;
    text-align: center;
  }

  .form-area { 
    padding-left: 0; 
    width: 100%;
  }

  /* KEEPING 2-COLUMN LAYOUT BUT MAKING IT FLUID */
  .form-row { 
    display: grid;
    grid-template-columns: 1fr 1fr !important; 
    gap: 15px; 
    margin-bottom: 20px; 
    width: 100%;
  }

  /* Prevent inputs from pushing the box wider */
  .form-group input, 
  .form-group select {
    width: 100%;
    min-width: 0; /* Critical fix for grid blowout */
  }
}

/* VERY SMALL PHONES (Under 400px) */
@media (max-width: 400px) {
  .enquiry-card {
    padding: 30px 15px;
  }
  .form-row {
    gap: 10px; /* Tighter gap so fields stay on one line */
  }
  .form-group label {
    font-size: 0.65rem; /* Slightly smaller labels to save space */
    letter-spacing: 1px;
  }
  .enquiry-title {
    font-size: 1.8rem;
  }
}


  /* --------- FAQ SECTION ------- */
		.lux-faq {
    background-color: var(--ivory);
    padding: 100px 6%;
    color: var(--earth);
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
  }

  .faq-wrap {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
  }

  .faq-header {
    position: sticky;
    top: 100px;
    z-index: 10;
  }

  .faq-eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 700;
  }

  .faq-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.3rem, 4vw, 3rem);
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.1;
    color: var(--earth);
  }

  .faq-intro {
    font-family: 'Work Sans', sans-serif;
    margin: 20px 0 35px;
    max-width: 420px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5b6157;
  }

  .btn-lux-outline {
    display: inline-block;
    padding: 18px 36px;
    border: 1.5px solid var(--earth);
    color: var(--earth);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-family: 'Work Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
  }

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

  /* --- ACCORDION STYLING --- */
  .faq-accordion {
    border-top: 1px solid rgba(44, 51, 39, 0.12);
  }

  .faq-card {
    border-bottom: 1px solid rgba(44, 51, 39, 0.12);
    background: transparent;
  }

  summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 0;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--earth);
    transition: color 0.3s ease;
  }

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

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

  .faq-icon {
    width: 16px;
    height: 16px;
    position: relative;
    flex-shrink: 0;
    margin-left: 25px;
  }

  .faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .faq-icon::before { width: 100%; height: 1.5px; }
  .faq-icon::after { 
    width: 1.5px; 
    height: 100%; 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
  }

  details[open] .faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
  }

  .faq-content {
    padding: 0 0 40px 0; 
    line-height: 1.85;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.05rem;
    color: #4a4e46;
    animation: faqFadeIn 0.5s ease;
  }

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

  .faq-content strong {
    color: var(--earth);
    font-weight: 600;
  }

  .faq-content ul {
    margin: 15px 0 20px 20px;
    list-style-type: none;
  }

  .faq-content li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
  }

  .faq-content li::before {
    content: "■";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.7rem;
    top: 2px;
  }

  
  @media (max-width: 1024px) {
    .faq-wrap {
      grid-template-columns: 1fr; 
      gap: 60px;
    }

    .faq-header {
      position: static;
      text-align: center;
      max-width: 600px;
      margin: 0 auto;
    }

    .faq-intro {
      margin-left: auto;
      margin-right: auto;
    }
  }

  @media (max-width: 600px) {
    .lux-faq {
      padding: 70px 6%; 
    }

    .faq-title {
      font-size: 2.0rem;
    }

    summary {
      font-size: 0.95rem;
      padding: 28px 0;
    }

    .faq-content {
      font-size: 0.9rem;
      line-height: 1.75;
    }
    
    .btn-lux-outline {
      width: 100%; 
      text-align: center;
      padding: 16px 20px;
    }
  }

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


	 /* -------- RELATED TOURS --------- */
		.safari-modern {
  background-color: var(--stone);
  color: var(--earth);
  padding: 100px 0; 
}

.luxury-container {
  max-width: 1200px; 
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.luxury-header{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.luxury-eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
  margin-bottom: 15px;
}

.luxury-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.15;
}

.luxury-desc {
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
  line-height: 1.7;
  font-size: 1.05rem;
}

/* GRID */
.luxury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 25px; 
}

/* CARD */
.luxury-item {
  position: relative;
}

.luxury-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* IMAGE */
.image-box {
  position: relative;
  height: 240px; 
  margin-bottom: 18px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: all 0.6s ease;
}

/* PRICE */
.price-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ivory);
  color: var(--earth);
  padding: 6px 10px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* CONTENT */
.tour-duration {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 600;
}

.tour-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; 
  margin: 10px 0;
}

.tour-excerpt {
  font-size: 0.85rem; 
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* CTA */
.explore-btn {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
}

/* HOVER */
.luxury-link:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.luxury-link:hover .explore-btn {
  color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 1000px) {
  .luxury-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .luxury-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-box {
    height: 220px;
  }
}

html {
  scroll-behavior: smooth;
}

@media (max-width: 600px) {
  .luxury-title {
    font-size: 2rem;
  }
}


 /* --------- FOOTER SECTION -------- */
		.site-footer {
  background-color: var(--earth);
  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: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Cormorant Garamond', 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 {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  padding: 15px 25px;
  border-radius: 2px;
  border-left: 3px solid #00af87;
  display: inline-flex;
  flex-direction: column;
  transition: background 0.3s ease;
}

.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: 2px;
  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; } /* Uganda Red Accent */

/* --- 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; /* Slightly smaller for mobile safety */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* --- Mobile Perfection --- */
@media (max-width: 900px) {
  .foot-trust {
    justify-content: center; /* Centers all badges when footer is centered */
  }
}

@media (max-width: 480px) {
  .ta-badge {
    flex: 1 1 45%; /* On tiny phones, they sit 2-per-row */
    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: 4px;
}

.contact-inner h3 {
  font-family: 'Cormorant Garamond', 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;
  font-size: 0.75rem; 
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: nowrap; 
  border-radius: 2px;
}

.btn-gold { 
  background: var(--gold); 
  color: #fff; 
  border: 1px solid var(--gold);
}

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

.footer-btn:hover { 
  background: var(--ivory); 
  color: var(--earth); 
  border-color: var(--ivory);
}

.foot-reassure {
  font-size: 0.7rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.5;
}

.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:#c7d0cb;
text-decoration:none;
}

.footer-bottom a:hover{
color:#e8a81f;
}

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

}

