@font-face {
  font-family: 'Sunday April';
  src: url('../fonts/Sunday April.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PP Fragment';
  src: url('../fonts/PPFragment-SerifExtraBold.otf') format('opentype');
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: 'PP Fragment';
  src: url('../fonts/PPFragment-SerifRegular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
/* Main Hero Title (PP Fragment Serif) */
.carousel-caption .hero-title,
.hero-title {
  font-family: 'PP Fragment', Georgia, serif !important;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

/* Styled Top Script Line (Sunday April) */
.carousel-caption .hero-title em,
.hero-title em {
  font-family: 'Sunday April', cursive !important;
  font-style: normal;
  font-weight: 400;
  text-transform: none;
  display: block;
  line-height: 0.8;
  margin-bottom: -0.3em; /* Overlaps onto PP Fragment heading */
  position: relative;
  z-index: 1;
}
:root {
  --primary-green: #384C23;
  --secondary-gold: #D2973B;
  --dark-brown: #32261A;
  --cta-red: #D2973B;
  --white: #FFFFFF;
  --bg-warm-light: #F5F2ED;
  
}

h2{
  font-size: 2.5rem !important;
  color:#384C23;
}
/* Custom Fonts Definition (Ensure font files are imported/linked above this) */

/* Hero Title Container */
.carousel-caption .hero-title {
  font-family: 'PP Fragment', sans-serif !important;
  font-weight: 400 !important;
  
  line-height: 1.15;
}

/* Styled Top Line (em) */
.hero-title em {
  font-family: 'Sunday April' !important;
  font-weight:400;
  font-style: normal;
  display: block;
  font-size: 1em !important;
  line-height: 0.8;
  margin-bottom: -0.35em; /* Creates the overlapping Asilia Africa look */
  text-transform: none;
}
@media (min-width: 1200px) {
    .display-3 {
        font-size: 4rem;
    }
}
/* ================= SINGLE-LAYER TRANSPARENT HEADER ================= */
.site-chrome.transparent-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  /* Updated gradient: Starts at 90% opacity, fades to 30% midway, then 0% */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
  transition: background-color 0.3s ease, padding 0.3s ease;
}
.site-chrome.transparent-header .logo,
.site-chrome.transparent-header img {
  filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.75));
}
.nav-safari {
  background-color: transparent !important;
  transition: all 0.3s ease;
}

/* Adjust Desktop Logo Sizing for Single Bar Alignment */
/* .site-chrome .site-logo {
  max-height: 100px;
  width: auto;
  margin: 0;
} */

/* Header Social Media Styling */
.header-socials a {
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

/* ================= STICKY HEADER ON SCROLL ================= */
.site-chrome.transparent-header.is-scrolled {
  position: fixed; /* Keep header visible at top while scrolling */
  background: #384C23; /* Replaces gradient with solid green color */
  /* background-color: #0d6efd; Use your exact hex/rgb green shade here */
}
.site-chrome.is-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-green) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: headerSlideDown 0.35s ease-out;
}

.site-chrome.is-sticky .nav-safari {
  padding: 0.4rem 0;
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.section-title-wrapper {
  text-align: center;
}

.section-title-wrapper .heading-divider {
  margin-left: auto;
  margin-right: auto;
}

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark-brown);
  background-color: #FAFAFA;
}

/* Color Helpers */
.text-gold { color: var(--secondary-gold) !important; }
.text-green { color: var(--primary-green) !important; }
.text-dark-brown { color: var(--dark-brown) !important; }

/* Contact Us Orange Button */
.btn-contact {
  background-color: var(--cta-red);
  color: var(--white);
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}

.btn-contact:hover {
  background-color: #c83d11;
  color: var(--white);
}

.btn-request {
  background-color: var(--cta-red);
  color: var(--white);
  border-radius: 4px;
}

.btn-request:hover {
  background-color: #c83d11;
  color: var(--white);
}

/* Logo Sizes */
.site-logo {
  max-height: 100px;
  width: auto;
  margin: 10px;
}

.site-logo-mobile {
  max-height: 80px;
  width: auto;
}

/* Top Header Bar */
.top-contact-item {
  line-height: 1.1;
}
.fs-3{
  font-size: 25px !important;
}
/* Navigation Bar */
.nav-safari {
  background-color: transparent !important;
  transition: all 0.3s ease;
}
/* Sticky Solid Header on Scroll */
.site-chrome.is-sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-green) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  animation: slideDown 0.35s ease-out;
}

/* Hide top header details on sticky scroll to keep navigation clean */
.site-chrome.is-sticky .top-header {
  display: none !important;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.nav-safari .nav-link {
  color: var(--white) !important;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 0.5rem 1.5rem !important;
}

.nav-safari .nav-link:hover,
.nav-safari .nav-link.active {
  color: var(--secondary-gold) !important;
}

.nav-safari .nav-link.active {
  font-weight: 700;
}

.hover-gold {
  transition: color 0.2s ease;
}

.hover-gold:hover {
  color: var(--secondary-gold) !important;
}

/* Hero Carousel */
.hero-img {
  height: 75vh;
  min-height: 400px;
  object-fit: cover;
  filter: brightness(0.85);
}

.carousel-caption {
  bottom: 20%;
}

.carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 4px;
  background-color: var(--white);
  opacity: 0.6;
}

.carousel-indicators .active {
  background-color: var(--secondary-gold);
  opacity: 1;
}

/* Responsive Mobile Tweaks */
@media (max-width: 991.98px) {
  /* Set Navbar background to White on Mobile */
  

  /* Target icon color within hamburger button */
  .navbar-toggler {
    color: var(--primary-green) !important;
  }

  .hero-img {
    height: 50vh;
    min-height: 320px;
  }

  .carousel-caption {
            bottom: 25% !important;
  }

  .carousel-caption h1 {
    font-size: 1.7rem;
  }
em{
  font-family: 'Sunday April';
}
  .carousel-caption p {
    font-size: 0.9rem !important;
  }

  /* Expanded menu dropdown styled back to primary green on mobile */
  .navbar-collapse {
    background-color: var(--primary-green);
    padding: 1rem;
    margin-top: 0;
  }
}
/* Cute & Professional Carousel CTA Button */
.btn-request {
  background: linear-gradient(135deg, var(--secondary-gold) 0%, #b88230 100%);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 1px;
  padding: 1rem 2rem !important;
  border-radius: 50px; /* Rounded pill shape */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

/* Hover & Active Micro-interactions */
.btn-request:hover {
  background: linear-gradient(135deg, #e2a647 0%, var(--secondary-gold) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(210, 151, 59, 0.4);
  color: var(--white) !important;
}

.btn-request:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Optimization */
@media (max-width: 991.98px) {
  .btn-request {
    font-size: 0.75rem;
    padding: 0.55rem 1.25rem !important;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
  }
}

.carousel-caption .fs-3{
  font-size:14px !important;
}

/* Discover Section Styling */
.discover-section {
  background-color: #d1973e;
}

.section-title {
  color: var(--primary-green);
  letter-spacing: 1px;
}

.section-subtitle {
  max-width: 700px;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Card Styling */
.destination-card {
  height: 380px;
  border-radius: 6px;
}
.destination-card:hover img {
  transform: scale(1.05);
}
.destination-card img {
    transition: transform 0.4s ease;
}
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.5) 100%);
}

.destination-name {
  font-size: 1.75rem;
  
  text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

/* White Card Explore Button */
.btn-explore {
  background-color: var(--white);
  color: #222222 !important;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.2rem;
  border-radius: 2px;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

.btn-explore:hover {
  background-color: var(--secondary-gold);
  color: var(--white) !important;
}

/* View All Destinations Button */
.btn-view-all {
  background-color: #D2973B;
  color: var(--white);
  border-radius: 3px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: background-color 0.2s ease;
}

.btn-view-all:hover {
  background-color: #2b3b1b;
  color: var(--white);
}

/* Custom indicator bar lines matching your design on mobile */
#destinationsMobileCarousel .carousel-indicators [data-bs-target] {
  width: 25px;
  height: 3px;
  border-radius: 0;
  background-color: #ccc;
  border: none;
  margin: 0 3px;
}

#destinationsMobileCarousel .carousel-indicators .active {
  background-color: var(--primary-green);
}

/* CTA Safari Banner */
.cta-safari-banner {
  background-color: var(--primary-green); /* Sage/Olive Green from your theme */
}

.cta-title {
  
  font-size: 1.75rem;
  letter-spacing: 2px;
  font-weight: 500;
}

.cta-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  max-width: 850px;
}

/* Outlined White Button */
.btn-inquire {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 0; /* Clean square box look matching reference image */
  padding: 0.75rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-inquire:hover {
  background-color: var(--white);
  color: var(--primary-green);
  border-color: var(--white);
}

/* Responsive Mobile Adjustments */
@media (max-width: 767.98px) {
  .cta-title {
    font-size: 1.4rem;
    letter-spacing: 1.5px;
  }
  
  .cta-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .btn-inquire {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* Inspiration Section Variables & Global Styles */
.inspiration-section {
  background-color: #FAFAFA;
}

.inspiration-title {
  font-size: 2rem;
  color: #222222;
}

.text-gold-accent {
  color: var(--secondary-gold, #D2973B);
}

.inspiration-subtext {
  max-width: 800px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.heading-divider {
  width: 50px;
  height: 3px;
  background-color: var(--secondary-gold, #D2973B);
}

/* Base Card Styling */
.inspiration-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  min-height: 220px;
  border: 1px solid #bfa130;
}

.inspiration-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.inspiration-card:hover img {
  transform: scale(1.05);
}

/* Card Content Overlay & Typography */
.inspiration-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
  text-align: center;
}

.card-title {
  font-size: 1.1rem;
  
}

.card-caption {
  font-size: 0.75rem;
}

/* Dark Navy Overlay Button inside Cards */
.btn-card-action {
  background-color: #384C23;
  color: #ffffff !important;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-card-action:hover {
  background-color: var(--secondary-gold, #D2973B);
}

/* Bottom Orange CTA Button */
.btn-orange-cta {
  background-color: #D2973B;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(226, 91, 32, 0.3);
  transition: background-color 0.2s ease;
}

.btn-orange-cta:hover {
  background-color: #D2973B;
}

/* ================= DESKTOP BENTO GRID LAYOUT ================= */
@media (min-width: 992px) {
  .inspiration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 15px;
  }

  /* Left Tall Box (Spans 2 rows) */
  .card-wildlife {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    min-height: 100%;
  }

  .card-honeymoon {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .card-desert {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  /* Bottom Right Wide Box (Spans 2 columns) */
  .card-family {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
  }
}

/* ================= MOBILE RESPONSIVE STACK (Matches 2nd Image) ================= */
@media (max-width: 991.98px) {
  .inspiration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  /* Wildlife takes full width at top on mobile */
  .card-wildlife {
    grid-column: 1 / 3;
    height: 280px;
  }

  /* Gold button specifically for Wildlife on mobile view (matching reference) */
  .card-wildlife .btn-card-action {
    background-color: #F3AD38;
    color: #ffffff !important;
  }

  /* Honeymoon & Desert share 2 columns side by side */
  .card-honeymoon {
    grid-column: 1 / 2;
    height: 240px;
  }

  .card-desert {
    grid-column: 2 / 3;
    height: 240px;
  }

  /* Family Travel takes full width at bottom */
  .card-family {
    grid-column: 1 / 3;
    height: 250px;
  }

  .card-title {
    font-size: 1.1rem;
  }
}

/* Section Background & Global Fonts */
.journeys-section {
  background-color: #E8E6E1; /* Exact warm neutral grey/tan texture from images */
  color: #2D2D2D;
  padding-top: 4rem;
  padding-bottom: 5rem;
}

.journeys-title {
  
  font-size: 2rem;
  font-weight: 400;
  color: #1A1A1A;
  letter-spacing: -0.2px;
}

.journeys-description {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 300;
  color: #4A4A4A;
  max-width: 720px;
}

/* Timeline Base */
.timeline-container {
  max-width: 850px;
  margin-top: 3.5rem;
}

/* Plain Neutral Dot (Shared) */
.neutral-dot {
  width: 14px;
  height: 14px;
  background-color: #A9A499; /* Muted taupe/grey dot color */
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

/* Step Typography */
.step-text {
  
  font-size: 1.25rem;
  line-height: 1.35;
  color: #222222;
  font-weight: 400;
  margin-top: 1rem;
}

/* ================= DESKTOP VIEW (IMAGE 2: HORIZONTAL S-WAVE) ================= */
@media (min-width: 992px) {
  .wavy-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 0;
  }

  /* Precisely align each dot along the wave curve points */
  .step-left .neutral-dot {
    transform: translateY(53px);
  }

  .step-center .neutral-dot {
    transform: translateY(53px);
  }

  .step-right .neutral-dot {
    transform: translateY(53px);
  }

  /* Spacing text comfortably below the wave line */
  .timeline-step .step-text {
    margin-top: 4.5rem;
  }
}

/* ================= MOBILE VIEW (IMAGE 1: VERTICAL STACK) ================= */
@media (max-width: 991.98px) {
  .journeys-title {
    font-size: 1.6rem;
  }

  .journeys-description {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .timeline-container {
    margin-top: 2.5rem;
  }

  .timeline-step {
    margin-bottom: 2.5rem;
  }

  .timeline-step:last-child {
    margin-bottom: 0;
  }

  .neutral-dot {
    margin-bottom: 1rem;
  }

  .step-text {
    font-size: 1.15rem;
    margin-top: 0;
  }
}


/* Section Background & Global Header */
.experiences-section {
  background-color: #FAFAFA;
}

.experiences-title {
  font-size: 2.1rem;
  color: #1A1A1A;
}

.text-gold-accent {
  color: #D2973B;
}

.experiences-subtext {
  max-width: 820px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.heading-divider {
  width: 50px;
  height: 3px;
  background-color: #D2973B;
}

/* Experience Cards */
.experience-card {
  height: 260px;
  position: relative;
  border-radius: 4px;
}

.experience-card img {
  transition: transform 0.4s ease;
}

.experience-card:hover img {
  transform: scale(1.06);
}

/* Gradient Overlay */
.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 15, 25, 0.85) 0%, rgba(0, 0, 0, 0.25) 55%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}

.experience-name {
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}

.experience-caption {
  font-size: 0.725rem;
}

/* Dark Navy Overlay Button */
.btn-navy-action {
  background-color: #384C23;
  color: #ffffff !important;
  font-size: 0.8rem;
  padding: 0.45rem 0.5rem;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.btn-navy-action:hover {
  background-color: #D2973B;
}

/* Orange CTA Button */
.btn-orange-cta {
  background-color: #D2973B;
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.825rem;
  letter-spacing: 0.5px;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(226, 91, 32, 0.25);
  transition: background-color 0.2s ease;
}

.btn-orange-cta:hover {
  background-color: #c44913;
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
  .experiences-title {
    font-size: 1.65rem;
  }
  
  .experience-card {
    height: 210px;
  }
  
  .experience-name {
    font-size: 0.95rem;
  }

  .btn-navy-action {
    font-size: 0.725rem;
    padding: 0.35rem 0.25rem;
  }
}

/* Color Variables */
.bg-navy {
  background-color: #131a0c; /* Deep Navy theme matching action buttons */
}

.text-gold {
  color: #D2973B;
}

.btn-gold {
  background-color: #D2973B;
  color: #0b1a28;
  font-weight: 600;
  border: none;
  transition: background-color 0.2s ease;
}

.btn-gold:hover {
  background-color: #b8812f;
  color: #ffffff;
}


.footer-brand {
  font-size: 1.75rem;
  letter-spacing: 1.5px;
  font-weight: 600;
}

.footer-heading {
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Footer Links & Contact */
.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #D2973B;
}

.footer-contact li {
  font-size: 0.875rem;
}

/* Newsletter Input */
.footer-newsletter input::placeholder {
  color: #fff;
}

.footer-newsletter input:focus {
  background-color: transparent;
  border-color: #D2973B;
  box-shadow: none;
  color: #ffffff;
}
.footer-logo {
    background-color: #fff;
    border-radius:5px;
    padding: 6px;
    margin: 10px 0px;
    height: 70px;
}

.bs-journey-section {
  background-color: #FDFDFB;
  padding-top: 4rem;
  padding-bottom: 4.5rem;
}

.bs-journey-title {
  font-size: 2.1rem;
  color: #0b1a28;
  font-weight: 500;
}

.bs-journey-desc {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555555;
  max-width: 820px;
  font-weight: 300;
}

.bs-journey-flow-wrapper {
  max-width: 960px;
  margin-top: 2rem;
  overflow: visible !important;
}

.bs-journey-step-text {
  font-size: 1.2rem;
  line-height: 1.35;
  color: #0b1a28;
  font-weight: 500;
  margin-bottom: 0;
}

/* DESKTOP (Image 2 Style) */
@media (min-width: 992px) {
  .bs-journey-desktop-canvas {
    height: 200px;
  }

  .bs-journey-svg {
    width: 100%;
    height: 160px;
    display: block;
    overflow: visible;
  }

  .bs-journey-labels-row {
    position: absolute;
    top: 130px;
    width: 100%;
    left: 0;
  }
}

/* MOBILE (Image 1 Style) */
@media (max-width: 991.98px) {
  .bs-journey-title {
    font-size: 1.65rem;
  }

  .bs-journey-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
    margin-top: 2rem;
  }

  .bs-journey-mobile-dot {
    width: 14px;
    height: 14px;
    background-color: #D2973B;
    border-radius: 50%;
    margin-bottom: 0.85rem;
  }
}



.text-green {
  color: var(--primary-green) !important;
}

.text-brown {
  color: var(--dark-brown) !important;
}

.text-gold {
  color: var(--secondary-gold) !important;
}

.bg-warm-light {
  background-color: var(--bg-warm-light);
}

/* Section Title Vertical Gold Line Accent */
.border-start-gold {
  border-left: 3px solid var(--secondary-gold);
}

.section-main-title {
  font-size: 1.85rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  color: var(--primary-green);
}

/* Hero Header Styling */
.about-hero {
  min-height: 100vh;
  background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(50, 38, 26, 0.55); /* Uses dark brown overlay */
}

/* Spirit Section */
.spirit-img-wrapper img {
  height: 380px;
}

.spirit-subheading {
  font-size: 1.25rem;
  color: var(--primary-green);
  line-height: 1.4;
}

.spirit-body-text {
  color: var(--dark-brown);
  opacity: 0.85;
}

.stat-number {
  font-size: 2rem;
  color: var(--secondary-gold);
}

.stat-label {
  font-size: 0.725rem;
  letter-spacing: 0.5px;
  color: var(--dark-brown);
  opacity: 0.75;
}

/* Why Nomadller Section */
.why-card {
  border: 1px solid rgba(50, 38, 26, 0.08);
}

.why-card-title {
  font-size: 1.05rem;
  letter-spacing: 0.8px;
  color: var(--secondary-gold);
}

.why-card-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--dark-brown);
  opacity: 0.85;
}

/* Card & Image Fixes */
/* Container aspect-ratio ensures dynamic scaling across device sizes */
.team-img-holder {
  width: 100%;
  aspect-ratio: 4 / 3; /* Mobile: broader aspect ratio prevents head cuts */
  background-color: var(--bg-warm-light, #F8F7F4);
  overflow: hidden;
  position: relative;
}

.team-avatar {
  object-fit: cover;
  /* 50% horizontally, 15% vertically anchors the focus on faces/heads */
  object-position: 50% 15%; 
  transition: transform 0.35s ease;
}

.team-card {
  border: 1px solid rgba(50, 38, 26, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.team-card:hover .team-avatar {
  transform: scale(1.04);
}

.team-name {
  
  font-size: 1.1rem;
  color: var(--primary-green, #384C23);
  font-weight: 600;
}

.team-role {
  font-size: 0.725rem;
  letter-spacing: 0.5px;
  color: var(--secondary-gold, #D2973B) !important;
  font-weight: 600;
}

.team-bio {
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--dark-brown, #32261A);
  opacity: 0.85;

  /* Line-clamp for clean cards */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Tablet & Desktop Adjustments */
@media (min-width: 576px) {
  .team-img-holder {
    aspect-ratio: 4 / 5; /* Taller proportion for multi-column grids */
  }
}
/* Form & Button Styling */
.journey-form input,
.journey-form textarea {
  color: var(--dark-brown);
  border: 1px solid rgba(50, 38, 26, 0.1) !important;
}

.journey-form input::placeholder,
.journey-form textarea::placeholder {
  color: #999;
}

.btn-cta {
  background-color: var(--cta-red);
  color: var(--white);
  border: none;
  letter-spacing: 1px;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.btn-cta:hover {
  background-color: #b8812f;
  color: var(--white);
  transform: translateY(-1px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .spirit-img-wrapper img {
    height: 280px;
  }
}
@media (max-width: 991.98px) {
   #kazakhstanHeroCarousel .carousel-caption {
        bottom: 7% !important;
    }
}
@media (max-width: 767.98px) {
  .section-main-title {
    font-size: 1.45rem;
  }

  .about-hero {
    min-height: 70vh;
  }

  .about-hero-title {
    font-size: 2.25rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

/* SVG Icon Styling */
.why-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.why-svg-icon {
  width: 32px;
  height: 32px;
  color: #384C23; /* Inherits your brand gold color */
  transition: transform 0.25s ease;
}

/* Optional hover interaction */
.why-card:hover .why-svg-icon {
  transform: translateY(-2px);
}

/* Color Styling with your Palette */
.about-spirit-section {
  background-color: var(--bg-warm-light);
  color: var(--dark-brown);
}

.inspiration-title {
  color: var(--primary-green);
}

.text-gold {
  color: var(--secondary-gold) !important;
}

.heading-divider {
  width: 60px;
  height: 3px;
  background-color: var(--secondary-gold);
}

.spirit-subheading {
  color: var(--primary-green);
  line-height: 1.5;
}

.spirit-body-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--dark-brown);
  opacity: 0.9;
}

/* Image Wrapper */
.spirit-img-wrapper {
  
  border: 1px solid rgba(50, 38, 26, 0.08);
}

.spirit-featured-img {
  height: 100%;
  object-position: center;
}

/* Feature Cards */
.founder-card {
  background-color: var(--white);
  border-left: 4px solid var(--secondary-gold) !important;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.philosophy-card {
  background-color: var(--white);
  border: 1px solid rgba(50, 38, 26, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-heading {
  color: var(--primary-green);
}

.founder-card:hover,
.philosophy-card:hover {
  transform: translateY(1px);
  box-shadow: 0 10px 25px rgba(50, 38, 26, 0.08) !important;
}

.spirit-tagline-box {
  border-color: rgba(50, 38, 26, 0.1) !important;
}

.spirit-tagline {
  color: var(--secondary-gold);
  letter-spacing: 1px;
  font-size: 0.85rem;
}

/* Stats Cards */
.stat-card {
  background-color: var(--white);
  border: 1px solid rgba(50, 38, 26, 0.08);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat-card:hover {
  transform: translateY(-2px);
  border-color: var(--secondary-gold) !important;
}

.stat-number {
  color: var(--secondary-gold);
}

.stat-label {
  color: var(--primary-green);
  letter-spacing: 0.5px;
}

/* Responsive Image Scaling */
@media (max-width: 991.98px) {
  .spirit-img-wrapper {
    aspect-ratio: 16 / 9;
  }
}

/* Option 1: Split Layout Styling */
.beyond-split-section {
  background-color: var(--bg-warm-light, #F5F2ED);
  border-bottom: 1px solid rgba(50, 38, 26, 0.08);
}

.intro-img-frame {
  height: 420px;
  border-radius: 8px;
}

.intro-feature-img {
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.intro-img-frame:hover .intro-feature-img {
  transform: scale(1.04);
}

.intro-eyebrow {
  letter-spacing: 2.5px;
  font-size: 0.8rem;
}

.intro-split-heading {
  font-size: 1rem;
      font-style: italic;
  line-height: 1.3;
}

.intro-body-text {
  font-size: 1.025rem;
  line-height: 1.75;
  opacity: 0.88;
}

/* Primary Pill Button (Gold) */
.btn-primary-gold {
  background: linear-gradient(135deg, var(--secondary-gold) 0%, #b88230 100%);
  color: var(--white) !important;
  font-weight: 700;
  font-size: 0.825rem;
    letter-spacing: 1px;
    padding: 14px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 4px 15px rgba(210, 151, 59, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary-gold:hover {
  background: linear-gradient(135deg, #e2a647 0%, var(--secondary-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(210, 151, 59, 0.45);
}

/* Secondary Pill Button (Green Outline / Filled Hover) */
.btn-secondary-green {
  background-color: transparent;
  color: var(--primary-green) !important;
  font-weight: 700;
  font-size: 0.825rem;
    letter-spacing: 1px;
    padding: 10px;
  border-radius: 50px;
  border: 2px solid var(--primary-green);
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary-green:hover {
  background-color: var(--primary-green);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(56, 76, 35, 0.3);
}

@media (max-width: 991.98px) {
  .intro-img-frame {
    height: 280px;
  }
  .intro-split-heading {
    font-size: 1.6rem;
  }
  .btn-primary-gold, .btn-secondary-green {
    width: 100%;
    text-align: center;
  }
}

/* Why Choose Us Section Improvements */
.about-why-section {
  background-color: var(--bg-warm-light, #F5F2ED);
}

.why-card {
  border: 1px solid rgba(50, 38, 26, 0.06);
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(50, 38, 26, 0.08) !important;
  border-color: var(--secondary-gold, #D2973B);
}

.why-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(210, 151, 59, 0.1); /* Subtle gold tint */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.why-card:hover .why-icon-wrapper {
  background-color: var(--secondary-gold, #D2973B);
  transform: scale(1.08);
}

.why-svg-icon {
  width: 26px;
  height: 26px;
  color: var(--primary-green, #384C23);
  transition: color 0.3s ease;
}

.why-card:hover .why-svg-icon {
  color: #ffffff; /* Turns white when hovered */
}

.why-card-title {
  font-size: 0.925rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--primary-green, #384C23);
  line-height: 1.35;
}

.why-card-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--dark-brown, #32261A);
  opacity: 0.82;
}

/* Mobile Optimization for 2-Column Grid */
@media (max-width: 575.98px) {
  .why-icon-wrapper {
    width: 44px;
    height: 44px;
  }
  
  .why-svg-icon {
    width: 20px;
    height: 20px;
  }

  .why-card-title {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
  }

  .why-card-text {
    font-size: 0.75rem;
    line-height: 1.4;
  }
}

/* Styling for Modal Popup Form */
.journey-modal .modal-content {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(50, 38, 26, 0.25) !important;
}



.journey-modal .fs-7 {
  font-size: 0.75rem;
}

.journey-modal .tracking-wider {
  letter-spacing: 1.5px;
}

/* Custom Input Fields */
.custom-form-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-green, #384C23);
  margin-bottom: 0.4rem;
}

.custom-input {
  background-color: var(--bg-warm-light, #F5F2ED);
  border: 1px solid rgba(50, 38, 26, 0.12);
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  color: var(--dark-brown, #32261A);
  transition: all 0.25s ease;
}

.custom-input:focus {
  background-color: #ffffff;
  border-color: var(--secondary-gold, #D2973B);
  box-shadow: 0 0 0 0.25rem rgba(210, 151, 59, 0.2);
  outline: none;
}

/* Modal Close Button Override */
.custom-modal-close {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.custom-modal-close:hover {
  opacity: 1;
}

/* Button & Form Responsive Behavior */
@media (max-width: 767.98px) {
  .journey-modal .modal-dialog {
    margin: 0.75rem;
  }
  
  .journey-modal .modal-body {
    padding: 1.5rem !important;
  }
  
  .btn-primary-gold, .btn-secondary-green {
    width: 100%;
    text-align: center;
  }
}

/* Mobile adjustments for the Beyond Travels intro buttons */
@media (max-width: 575.98px) {
  .btn-primary-gold,
  .btn-secondary-green {
    font-size: 0.725rem !important;     /* Reduces font size */
    padding: 6px 14px !important;       /* Reduces top/bottom & left/right padding */
    width: auto !important;             /* Prevents full-width stretch */
    max-width: 85%;                     /* Sets a clean max width limit */
    letter-spacing: 0.5px !important;   /* Tightens letter spacing slightly */
  }
}

 /* Smooth Scrolling for Anchor Links */
    html {
      scroll-behavior: smooth;
    }

    section {
      scroll-margin-top: 80px;
    }

    /* Section Label Nav Styling */
    .destination-nav-labels {
      background-color: var(--bg-warm-light, #F5F2ED);
      border-top: 1px solid rgba(50, 38, 26, 0.1);
      border-bottom: 1px solid rgba(50, 38, 26, 0.1);
      position: sticky;
      top: 0;
      z-index: 1020;
    }

    .label-btn {
      color: var(--dark-brown, #32261A);
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 1px;
      padding: 0.75rem 1.25rem;
      border: 1px solid var(--primary-green, #384C23);
      border-radius: 4px;
      background-color: var(--white, #ffffff);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-block;
      white-space: nowrap;
    }

    .label-btn:hover {
      background-color: var(--primary-green, #384C23);
      color: var(--white, #ffffff) !important;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(56, 76, 35, 0.25);
    }

    /* Hover Zoom Animation Card */
    .hover-zoom-card {
      position: relative;
      overflow: hidden;
      border-radius: 6px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .hover-zoom-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(50, 38, 26, 0.18);
    }

    .hover-zoom-card img {
      transition: transform 0.5s ease;
    }

    .hover-zoom-card:hover img {
      transform: scale(1.08);
    }

    /* Standard Card Image Heights */
    .place-img {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }

    /* Things to Do Card Styling */
    .thing-card {
      height: 280px;
      border-radius: 8px;
    }

    .thing-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(50,38,26,0.9) 0%, rgba(0,0,0,0.2) 65%, rgba(0,0,0,0) 100%);
    }

    /* Responsive Mobile Button Tweaks */
    @media (max-width: 575.98px) {
      .card-btn-sm {
        font-size: 0.72rem !important;
        padding: 0.4rem 0.25rem !important;
      }
      .place-img {
        height: 150px;
      }
      .thing-card {
        height: 220px;
      }
    }
    @media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* Circular Image Styling without card backgrounds */
.circle-img-wrapper {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #d4af37; /* Warm Gold Accent Border */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Hover Effect on Item */
.thing-do-item:hover .circle-img-wrapper {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(56, 76, 35, 0.25);
  border-color: #384c23; /* Changes border to deep green on hover */
}

.thing-do-item:hover .circle-img-wrapper img {
  transform: scale(1.1);
}

.bg-gold {
  background-color: #d4af37;
}

/* 5 Items in 1 Row Layout for Large Desktop Screens */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

/* Mobile responsive circle size */
@media (max-width: 575.98px) {
  .circle-img-wrapper {
    width: 100px;
    height: 100px;
  }
}

  
    /* Hero Banner Header */
    .contact-hero {
          height: 100vh;
      position: relative;
      background: linear-gradient(rgba(50, 38, 26, 0.65), rgba(50, 38, 26, 0.65)),
                  url('https://images.unsplash.com/photo-1516426122078-c23e76319801?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      padding: 120px 0 80px;
      color: #ffffff;
      text-align: center;
    }

    .heading-divider {
      width: 60px;
      height: 3px;
      background-color: var(--primary-gold);
    }

    /* Contact Card Panels */
    .contact-info-card {
      background-color: var(--primary-green);
      color: #ffffff;
      border-radius: 12px;
      padding: 2.5rem;
      height: 100%;
      box-shadow: 0 10px 30px rgba(56, 76, 35, 0.15);
    }

    .info-icon-box {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background-color: rgba(212, 175, 55, 0.15);
      border: 1px solid var(--primary-gold);
      color: var(--primary-gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    /* Form Styling */
    .contact-form-wrapper {
      background-color: #ffffff;
      border-radius: 12px;
      padding: 2.5rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      border: 1px solid rgba(50, 38, 26, 0.08);
    }

    .form-control, .form-select {
      border: 1px solid rgba(50, 38, 26, 0.2);
      padding: 0.75rem 1rem;
      border-radius: 6px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
    }

    .form-control:focus, .form-select:focus {
      border-color: var(--primary-gold);
      box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.2);
    }

    /* Buttons */
    .btn-gold {
      background-color: var(--primary-gold);
      color: var(--dark-brown);
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 0.85rem 2rem;
      border-radius: 6px;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-gold:hover {
      background-color: var(--gold-hover);
      color: #ffffff;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(212, 175, 55, 0.3);
    }

    /* Social Links */
    .social-circle {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: rgba(255, 255, 255, 0.1);
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-right: 8px;
    }

    .social-circle:hover {
      background-color: var(--primary-gold);
      color: var(--dark-brown);
      transform: translateY(-3px);
    }

    /* Map Box */
    .map-wrapper {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

    /* Card Container */
.service-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  background-color: #ffffff;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(56, 76, 35, 0.12) !important;
}

/* Image Wrapper with Scale Animation */
.service-img-wrapper {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.08);
}

/* Standardized Compact Button */
.card-btn {
  width: fit-content;
  min-width: 140px;
  max-width: 200px;
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 6px;
  background-color: var(--primary-green, #384C23);
  color: #ffffff;
  border: none;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background-color: var(--primary-gold, #D4AF37);
  color: #32261A;
}

.text-gold {
  color: var(--primary-gold, #D4AF37) !important;
}

.max-w-700 {
  max-width: 700px;
}

/* Responsive adjustments for Mobile & Tablet */
@media (max-width: 767.98px) {
  .service-img-wrapper {
    height: 190px;
  }

  .card-btn {
    font-size: 0.8rem;
    padding: 0.45rem 1rem;
    min-width: 130px;
  }
}

/* Section Base Background */
.testimonials-dark-section {
  background-color: #31230e; /* Deep Forest/Charcoal Dark */
}

/* Ambient Background Glow Effects */
.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  opacity: 0.25;
}

.orb-1 {
  width: 350px;
  height: 350px;
  background: #D4AF37; /* Gold glow */
  top: -50px;
  left: -50px;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: #384C23; /* Forest Green glow */
  bottom: -100px;
  right: -50px;
}

/* Glassmorphism Card Styling */
.glass-testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.glass-testimonial-card:hover {
  border-color: rgba(212, 175, 55, 0.6);
}

/* Watermark Giant Quote */
.watermark-quote {
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 8rem;
  color: rgba(212, 175, 55, 0.05);
  pointer-events: none;
}

/* Gold Gradient Text */
.text-gold-gradient {
  background: linear-gradient(135deg, #FDF0A6 0%, #D4AF37 50%, #997A15 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Header Badge & Divider */
.luxury-badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50px;
  background: rgba(212, 175, 55, 0.05);
}

.gold-line-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #D4AF37, transparent);
}

/* Glowing Stars */
.star-rating-glow i {
  color: #D4AF37;
  font-size: 0.95rem;
  margin: 0 2px;
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* Quote Text */
.testimonial-quote {
  line-height: 1.6;
  font-style: italic;
  letter-spacing: 0.3px;
}

.tracking-wider {
  letter-spacing: 1.5px;
  font-size: 0.75rem;
}

/* Custom Navigation Controls */
.nav-circle-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255, 255, 255, 0.03);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.nav-circle-btn:hover {
  background: #D4AF37;
  color: #111812;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Indicator Dots */
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: #ffffff;
  opacity: 0.25;
  border: none;
  transition: all 0.3s ease;
}

.carousel-indicators .active {
  opacity: 1;
  width: 24px;
  border-radius: 12px;
  background-color: #D4AF37 !important;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 767.98px) {
  .testimonial-quote {
    font-size: 1.1rem !important;
  }
  
  .watermark-quote {
    font-size: 5rem;
  }
  
  .glass-testimonial-card {
    padding: 2rem 1.25rem !important;
  }
}

:root {
  --gold-accent: #D4AF37;
  --dark-green: #384C23;
  --bg-warm: #fdfbf7;
}

/* Typography & Base Setup */


.text-gold-accent {
  color: var(--gold-accent) !important;
}

.bg-warm-light {
  background-color: var(--bg-warm);
}

.max-w-700 {
  max-width: 700px;
}

/* ===================================================
   1. HERO BANNER (Desktop & Mobile Fit Fix)
   =================================================== */
.page-hero-banner {
  position: relative;
  width: 100%;
  height: 100vh; /* Default desktop height */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Dark overlay for contrast */
.page-hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 15px;
  max-width: 850px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Large Screens / Extra Wide Desktop */
@media (min-width: 1400px) {
  .page-hero-banner {
    height: 520px; /* Expands height gracefully on big screens */
  }
}

/* Tablet & Mobile Banner Sizing */
@media (max-width: 768px) {
  .page-hero-banner {
    height: 70vh; /* Fits nicely on smaller screens */
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
}


/* ===================================================
   2. DESTINATION CARDS GRID (2 Per Row on Mobile)
   =================================================== */
.destination-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.08);
}

.destination-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

/* Title Overlay on Cards */
.card-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 0.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  z-index: 2;
  text-align: center;
}

/* Desktop 5-Column Row Class */
@media (min-width: 992px) {
  .col-lg-1-5 {
    flex: 0 0 auto;
    width: 20%;
  }
  .destination-card {
    height: 240px;
    border: 1px solid #fff;
  }
  .card-title-overlay {
    text-align: left;
    padding: 1rem;
    font-size: 1.1rem;
  }
}

/* Mobile Specific Adjustments (Compact Height for 2-in-a-row) */
@media (max-width: 576px) {
  .destination-card {
    height: 160px; /* Reduced height so 2 cards fit side-by-side cleanly */
  }
  .card-title-overlay {
    font-size: 0.85rem;
    padding: 0.5rem 0.25rem;
  }
}

/* Centered Overlay Title (for 3x3 Grid in Mountain Adventures) */
.card-title-overlay.centered-title {
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35); /* Subtle overlay across the image */
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
  transition: background 0.35s ease;
}

.destination-card:hover .card-title-overlay.centered-title {
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 576px) {
  .card-title-overlay.centered-title {
    font-size: 1.05rem;
  }
}

/* ===================================================
   CIRCULAR ITEM GRID (Big Five Section - Image 1 Style)
   =================================================== */
.circle-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.circle-img-wrapper {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid #D4AF37; /* Gold accent border */
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.85rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.circle-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.circle-item-card:hover .circle-img-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.circle-item-card:hover .circle-img-wrapper img {
  transform: scale(1.1);
}

.circle-item-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 0.4rem;
}

.circle-badge-pill {
  display: inline-block;
  background-color: #D4AF37; /* Gold fill pill */
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

/* Responsive adjustment for small screens */
@media (max-width: 576px) {
  .circle-img-wrapper {
    width: 110px;
    height: 110px;
    border-width: 2px;
  }
  .circle-item-title {
    font-size: 0.9rem;
  }
  .circle-badge-pill {
    font-size: 0.68rem;
    padding: 0.2rem 0.6rem;
  }
}

/* ===================================================
   CTA SAFARI BANNER (Image 2 Style)
   =================================================== */
.cta-safari-banner {
  background-color: #1e331e; /* Dark green background */
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.btn-inquire {
  border: 1.5px solid #ffffff;
  color: #ffffff;
  padding: 0.75rem 2.2rem;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-inquire:hover {
  background-color: #ffffff;
  color: #1e331e;
}

/* Hero Banner */
    .hero-banner {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                  url('https://images.unsplash.com/photo-1589553460732-58ef7a71fbb5?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
      color: white;
      padding: 100px 0;
    }

    /* Package Cards matching image layout */
    .package-card {
      background: #fff;
      border: 1px solid #e2e2e2;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .package-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    }

    .package-img {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }

    .badge-outline {
      border: 1px solid #ccc;
      color: #666;
      background: #f8f9fa;
      font-weight: 500;
      font-size: 0.75rem;
      padding: 4px 8px;
      border-radius: 4px;
    }

    .package-list {
      list-style: none;
      padding-left: 0;
      font-size: 0.85rem;
      color: #555;
    }

    .package-list li {
      margin-bottom: 6px;
      position: relative;
      padding-left: 15px;
    }

    .package-list li::before {
      content: "—";
      position: absolute;
      left: 0;
      color: #888;
    }

    .btn-custom-primary {
      background-color: var(--primary-accent);
      color: white;
      border: none;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .btn-custom-primary:hover {
      background-color: var(--primary-hover);
      color: white;
    }

    .btn-custom-outline {
      border: 1px solid #444;
      color: #333;
      font-weight: 600;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      background: transparent;
    }

    .btn-custom-outline:hover {
      background-color: #333;
      color: white;
    }

    /* Kilimanjaro Feature Detail Section */
    .kili-section {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #eaeaea;
    }

    .badge-accent {
      background-color: var(--primary-accent);
      color: white;
    }

    .itinerary-step {
      border-left: 3px solid var(--primary-accent);
      padding-left: 15px;
      margin-bottom: 12px;
    }

     .page-hero-banner {
      position: relative;
      background-size: cover;
      background-position: center;
      padding: 100px 0;
      color: #fff;
      text-align: center;
    }
    .page-hero-banner::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    }
    .hero-content {
      position: relative;
      z-index: 2;
    }
    .hero-title {
      
      font-weight: 700;
      font-size: 3rem;
    }
    
    /* Modern Package Cards Design */
    .package-card {
      background: #ffffff;
      border: 1px solid rgba(0, 0, 0, 0.06);
      border-radius: 16px !important;
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .package-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
    }
    .package-img-wrapper {
      overflow: hidden;
      position: relative;
      height: 220px;
    }
    .package-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .package-card:hover .package-img {
      transform: scale(1.06);
    }
    .badge-outline {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      padding: 6px 12px;
      border-radius: 50px;
      background-color: #f0f7f4;
      color: #384C23;
      border: 1px solid #384C23;
      text-transform: uppercase;
    }
    .package-title {
      color: #1a2530;
      font-weight: 700;
      line-height: 1.3;
    }
    .package-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 1.5rem;
    }
    .package-list li {
      font-size: 0.875rem;
      color: #555;
      position: relative;
      padding-left: 22px;
      margin-bottom: 8px;
    }
    .package-list li::before {
      content: "\f00c";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      position: absolute;
      left: 0;
      color: #2e7d32;
      font-size: 0.8rem;
    }
    
    /* Buttons */
    .btn-view-all {
      background-color: #384C23;
      color: #ffffff;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.25s ease;
    }
    .btn-view-all:hover {
      background-color: #12352b;
      color: #ffffff;
    }
    .btn-custom-outline {
      border: 1.5px solid #384C23;
      color: #384C23;
      border-radius: 10px;
      font-weight: 600;
      transition: all 0.25s ease;
    }
    .btn-custom-outline:hover {
      background-color: #384C23;
      color: #ffffff;
    }

    /* Modal Design Upgrade */
    .modal-content {
      border-radius: 20px !important;
      overflow: hidden;
    }
    .modal-header-styled {
      background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
      border-bottom: 1px solid #eee;
    }
    .modal-section-title {
      font-size: 0.95rem;
      letter-spacing: 0.5px;
      font-weight: 700;
    }

      .filter-btn {
      background-color: #ffffff;
      color: #1b4d3e;
      border: 1.5px solid #1b4d3e;
      padding: 8px 20px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 0.85rem;
      transition: all 0.3s ease;
      margin: 4px;
    }
    .filter-btn:hover,
    .filter-btn.active {
      background-color: #1b4d3e;
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(27, 77, 62, 0.25);
    }

    /* Gallery Card Styles */
    .gallery-item {
      transition: all 0.4s ease;
    }
    .gallery-card {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      background-color: #000;
      box-shadow: 0 6px 18px rgba(0,0,0,0.06);
      height: 280px;
      cursor: pointer;
    }
    .gallery-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0.9;
      transition: transform 0.5s ease, opacity 0.5s ease;
    }
    .gallery-card:hover .gallery-img {
      transform: scale(1.08);
      opacity: 0.6;
    }
    
    /* Overlay Effect */
    .gallery-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
      background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 70%);
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .gallery-card:hover .gallery-overlay {
      opacity: 1;
    }
    .gallery-category {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #c88a4b;
      font-weight: 700;
      margin-bottom: 4px;
    }
    .gallery-caption {
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 600;
      margin: 0;
    }
    .gallery-icon {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 40px;
      height: 40px;
      background-color: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(4px);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1rem;
      transform: translateY(-10px);
      transition: transform 0.35s ease;
    }
    .gallery-card:hover .gallery-icon {
      transform: translateY(0);
    }

    /* Modal Image Preview Style */
    #imagePreviewModal .modal-content {
      background: transparent;
      border: none;
    }
    #imagePreviewModal .btn-close {
      filter: invert(1);
    }

    .specialist-banner {
  background-color: #384C23;
  color: var(--white);
  padding: 40px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Flex Container */
.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Typography Styles */
.banner-content {
  flex: 1;
}

.banner-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin: 0 0 8px 0;
  color: var(--white);
  line-height: 1.2;
}

.banner-subtitle {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

/* Call To Action Button */
.btn-primary {
  display: inline-block;
  background-color: var(--secondary-gold);
  color: #fff;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.25s ease-in-out;
  white-space: nowrap;
}

.btn-primary:hover {
  background-color: #bfa130;
  transform: translateY(-1px);
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 768px) {
  .banner-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .banner-title {
    font-size: 1.75rem;
  }

  .banner-subtitle {
    font-size: 0.95rem;
  }
  
  .banner-cta {
    width: 100%;
    margin-top: 8px;
  }

  .btn-primary {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.desti .destination-card {
        height: 240px;
        border: 1px solid #D2973B;
    }

    /* Journey Section Base with Overlay */
.bs-journey-section {
  position: relative;
  background-image: url('../images/adore-africa-south-africa-landing-page-slider-02-FIN.jpeg'); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #FFFFFF; /* Ensure base text is white for contrast */
  overflow: hidden;
}

/* Semi-transparent Overlay */
.bs-journey-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 20, 10, 0.72); /* Dark warm overlay - adjust 0.72 opacity to taste */
  z-index: 1;
}

/* Ensure all HTML content stays on top of the overlay */
.bs-journey-section > .container {
  position: relative;
  z-index: 2;
}

/* Typography Styles */
.bs-journey-title {
  font-size: 2.25rem;
  font-weight: 500;
  color: #FFFFFF;
}

.bs-journey-desc {
  max-width: 800px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.bs-journey-step-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.4;
  margin-top: 15px;
}

/* Canvas SVG Alignment */
.bs-journey-svg {
  width: 100%;
  height: auto;
  display: block;
}

.bs-journey-labels-row {
  margin-top: -30px; /* Pulls step labels under SVG curve points */
}

/* Mobile Styling */
.bs-journey-mobile-item {
  position: relative;
  margin-bottom: 24px;
}

.bs-journey-mobile-dot {
  width: 14px;
  height: 14px;
  background-color: #D2973B;
  border-radius: 50%;
  margin-bottom: 8px;
}
 /* Section Base with Background Image & Overlay */
.about-why-section {
  position: relative;
  background-image: url('../images/7414.jpg'); /* Replace with your image URL */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Optional: adds a smooth parallax feel on desktop */
  padding: 80px 0;
  overflow: hidden;
}

/* Dark Warm Overlay for High Text Readability */
.about-why-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(50, 38, 26, 0.88) 0%,   /* --dark-brown overlay */
    rgba(38, 28, 18, 0.92) 100%
  );
  z-index: 1;
}

/* Ensure Content Stays Above Overlay */
.about-why-section > .container {
  position: relative;
  z-index: 2;
}

/* Heading & Subtitle Styling */
.inspiration-title {
  font-size: 2.25rem;
}

.text-gold-accent {
  color: var(--secondary-gold, #D2973B) !important;
}

.heading-divider {
  width: 70px;
  height: 3px;
  background-color: var(--secondary-gold, #D2973B);
  border-radius: 2px;
}

.section-subtitle {
  max-width: 650px;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Feature Cards Styling */
.why-card {
  background-color: rgba(255, 255, 255, 0.96) !important; /* Semi-translucent white card */
  border: 1px solid rgba(210, 151, 59, 0.25); /* Subtle gold accent border */
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

/* Card Hover Elevation */
.why-card:hover {
  transform: translateY(-8px);
  background-color: #FFFFFF !important;
  border-color: var(--secondary-gold, #D2973B);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.25) !important;
}

/* Icon Container Styling */
.why-icon-wrapper {
  width: 58px;
  height: 58px;
  background-color: rgba(56, 76, 35, 0.1); /* Light green tint fill */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-svg-icon {
  width: 28px;
  height: 28px;
  stroke: var(--primary-green, #384C23);
  transition: stroke 0.3s ease;
}

/* Hover Icon Accent Shift */
.why-card:hover .why-icon-wrapper {
  background-color: var(--primary-green, #384C23);
}

.why-card:hover .why-svg-icon {
  stroke: var(--secondary-gold, #D2973B);
}

/* Card Typography */
.why-card-title {
  color: var(--dark-brown, #32261A);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.why-card-text {
  
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Hero Video Styling */
.hero-video {
  height: 100vh; /* Adjust height to match your existing carousel image height */
  min-height: 480px;
  object-fit: cover;
  filter: brightness(0.75); /* Slight dark filter to make overlay text pop */
}

/* Ensure Carousel Caption sits properly on top */
.carousel-caption {
  z-index: 2;
  bottom: 20%; /* Keeps caption well-positioned over video background */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .hero-video {
    height: 100vh;
  }
}

/* Mobile Header Tweaks */
@media (max-width: 991.98px) {
  /* Logo & Hamburger alignment for mobile */
  .site-chrome .site-logo {
    max-height: 95px; /* Mobile logo scale */
  }

  /* Hamburger Icon Color and Sizing */
  .navbar-toggler {
    outline: none !important;
  }
  
  .navbar-toggler i {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  }

  /* Mobile Dropdown Menu Styling */
  .nav-safari .navbar-collapse {
    background-color: var(--primary-green) !important;
    padding: 1.25rem 1rem;
    border-radius: 8px;
    margin-top: 0.75rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  }
}

/* ================= FLOATING ACTION BUTTONS ================= */
.floating-action-buttons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1040; /* Keeps buttons above page elements */
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* WhatsApp Brand Color */
.btn-whatsapp {
  background-color: #25D366;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Call Button Styling (Uses your brand gold) */
.btn-call {
  background-color: var(--secondary-gold, #D2973B);
}

.btn-call:hover {
  background-color: #b88230;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(210, 151, 59, 0.4);
}

/* Hover Tooltip Labels (Desktop only) */
.floating-btn .btn-tooltip {
  position: absolute;
  right: 65px;
  background-color: var(--dark-brown, #32261A);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  pointer-events: none;
}

.floating-btn:hover .btn-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Mobile Screen Adjustments */
@media (max-width: 575.98px) {
  .floating-action-buttons {
    bottom: 15px;
    right: 15px;
    gap: 10px !important;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }

  /* Hide text tooltips on mobile devices */
  .floating-btn .btn-tooltip {
    display: none;
  }
}
@media screen and (min-width: 1024px) {
  /* Increase navbar logo size */
  .navbar .logo img,
  .navbar-brand img {
    height: 130px !important; /* Adjust height as needed */
    width: auto;
  }

  /* Increase navbar menu font size and spacing */
  .navbar-nav .nav-link,
  .nav-menu a {
    font-size: 1rem; /* ~18px */
    padding: 0.75rem 1.25rem; /* Adds space around menu items */
    font-weight: 600;
  }
}

/* =========================================================
   GALLERY VIDEO FIX
========================================================= */

.gallery-video-card {
    position: relative;
    cursor: default;
}

/* Video keeps same card size */
.gallery-video-card .gallery-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* prevent image hover animation */
    transform: none !important;
    opacity: 1 !important;

    position: relative;
    z-index: 1;
}

/* Never zoom/darken video on hover */
.gallery-video-card:hover .gallery-video {
    transform: none !important;
    opacity: 1 !important;
}

/* Overlay must not cover native video controls */
.gallery-video-card .gallery-video-overlay {
    pointer-events: none;
    z-index: 2;
}

/* Expand icon can still be clicked */
.gallery-video-card .gallery-video-expand {
    pointer-events: auto;
    border: 0;
    cursor: pointer;
}

/* Keep caption above the control bar */
.gallery-video-card .gallery-video-caption {
    position: absolute;
    left: 20px;
    bottom: 55px;
}

/* Modal video must remain fully clickable */
#videoPreviewModal video {
    position: relative;
    z-index: 5;
    pointer-events: auto !important;
}

/* Modal should not inherit gallery image hover styles */
#videoPreviewModal video:hover {
    transform: none !important;
    opacity: 1 !important;
}