@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Satisfy&display=swap');

/* --- CUSTOM VARIABLES / DESIGN SYSTEM --- */
:root {
  /* Color Palette */
  --color-forest-green: hsl(0, 0%, 7%);
  --color-forest-green-light: hsl(0, 0%, 15%);
  --color-forest-green-dark: hsl(0, 0%, 0%);
  --color-terracotta: hsl(15, 100%, 57%);
  --color-terracotta-hover: hsl(15, 90%, 49%);
  --color-terracotta-light: hsl(15, 100%, 95%);
  --color-mud-brown: hsl(210, 25%, 12%);
  --color-mud-brown-dark: hsl(210, 30%, 8%);
  --color-sky-blue: hsl(252, 100%, 58%);
  --color-sky-blue-hover: hsl(252, 100%, 50%);
  --color-sky-blue-light: hsl(252, 100%, 96%);
  --color-off-white: hsl(0, 0%, 97.5%);
  --color-card-bg: hsl(0, 0%, 100%);
  --color-white: hsl(0, 0%, 100%);
  --color-text-main: hsl(0, 0%, 20%);
  --color-text-muted: hsl(0, 0%, 45%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  /* Shadow & Transitions */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 34, 46, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 34, 46, 0.12);
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
  
  /* Layout */
  --header-height: 80px;
  --header-height-shrunk: 70px;
}

/* --- BASE & RESET --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 13px; /* Scales down all rem-based typography and layout elements globally by 20% (80% scale) */
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-forest-green);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.2rem;
  color: var(--color-text-muted);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section-padding {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* --- HEADER & NAVIGATION (Premium GlobeTrekk layout) --- */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1010;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: var(--transition-smooth);
}

.header-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  transition: var(--transition-smooth);
}

.header-wrapper.scrolled .navbar {
  height: var(--header-height-shrunk);
}

.logo-container {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 5px 0;
}

.logo-link img {
  height: 100%;
  max-height: 54px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.08));
}

.header-wrapper.scrolled .logo-link img {
  max-height: 46px;
}

/* Center Menu Toggle Button */
.header-menu-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: var(--color-text-main);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 1.5px;
  cursor: pointer;
  text-transform: uppercase;
  z-index: 1010;
  padding: 8px 16px;
  border-radius: 50px;
  transition: var(--transition-fast);
}

.header-menu-toggle:hover {
  color: var(--color-terracotta);
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 20px;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: currentColor;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* Hamburger open states */
.header-menu-toggle.open .hamburger-lines span:nth-child(1) {
  transform: translateY(3.5px) rotate(45deg);
}

.header-menu-toggle.open .hamburger-lines span:nth-child(2) {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* Right side actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.action-icon {
  color: var(--color-text-main);
  font-size: 1.25rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-icon:hover {
  color: var(--color-terracotta);
}

.btn-book-now {
  background-color: var(--color-terracotta);
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 11px 22px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  display: inline-block;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-book-now::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.45) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: none;
}

.btn-book-now:hover {
  background-color: var(--color-terracotta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 91, 38, 0.25);
  color: #ffffff;
}

.btn-book-now:hover::after {
  left: 150%;
  transition: all 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Slide-out Navigation Drawer globally */
.nav-menu {
  position: fixed;
  top: 0;
  right: -320px; /* Hidden by default */
  width: 320px;
  height: 100vh;
  background-color: var(--color-mud-brown-dark);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px 40px;
  gap: 14px;
  list-style: none;
  z-index: 1005;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-menu.open {
  right: 0;
}

.nav-item {
  position: relative;
  width: 100%;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-white);
  padding: 4px 0;
  display: block;
  transition: var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-terracotta);
  padding-left: 6px;
}

/* Background Overlay when menu is open */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 16, 22, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  gap: 10px;
}

.btn-primary {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(212, 93, 52, 0.25);
}

.btn-primary:hover {
  background-color: var(--color-terracotta-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 93, 52, 0.35);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--color-forest-green);
  color: var(--color-forest-green);
}

.btn-secondary:hover {
  background-color: var(--color-forest-green);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: #20ba56;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --- FOOTER SECTION --- */
.footer {
  background: linear-gradient(rgba(15, 29, 38, 0.91), rgba(15, 29, 38, 0.94)), url("../images/village tour/WhatsApp Image 2026-07-07 at 11.26.27 (1).jpeg") no-repeat center center/cover;
  color: rgba(255, 255, 255, 0.85);
  border-top: 5px solid var(--color-terracotta);
  padding: 80px 0 30px 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

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

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

/* Footer Column Styling */
.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-desc img {
  max-width: 280px;
  height: auto;
}

.footer-tagline {
  color: var(--color-terracotta-light);
  font-style: italic;
  font-size: 0.9rem;
  margin-top: -10px;
}

.footer-about-text {
  line-height: 1.7;
}

.footer-title {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

/* Accent bottom line for footer titles */
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--color-terracotta);
  border-radius: 2px;
}

.footer-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-menu-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.footer-menu-links a:hover {
  color: var(--color-terracotta);
  transform: translateX(5px);
}

/* Footer contact details */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.footer-contact-item i {
  color: var(--color-terracotta);
  font-size: 1.2rem;
  margin-top: 3px;
  width: 20px;
  text-align: center;
  transition: var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-sky-blue);
}

.footer-contact-item a:hover i {
  color: var(--color-sky-blue);
  transform: scale(1.15);
}

/* Centralized Social Links & Icons styling */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  font-size: 1.2rem;
  background-color: rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(212, 93, 52, 0.3);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

/* Space out page contents from sticky header */
.header-spacing {
  margin-top: var(--header-height);
  transition: var(--transition-smooth);
}
.header-wrapper.scrolled + .header-spacing,
.header-wrapper.scrolled ~ main {
  /* Dynamic alignment if needed */
}

/* --- FORM STYLING --- */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--color-forest-green);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid rgba(20, 51, 21, 0.15);
  background-color: var(--color-off-white);
  border-radius: 8px;
  color: var(--color-text-main);
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-terracotta);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(212, 93, 52, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 40px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: url('../images/jeep safari/WhatsApp Image 2026-07-07 at 13.26.53 (1).jpeg') no-repeat center center/cover;
  padding: 100px 0;
  overflow: hidden;
}

/* Forest green semi-transparent glass overlay for readability */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 680px;
  color: var(--color-white);
  animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 15px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.6rem;
  color: var(--color-terracotta-light);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 15px 35px;
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Hero adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 70vh;
    padding: 80px 0;
    text-align: center;
  }
  .hero-content {
    max-width: 100%;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-tagline {
    font-size: 1.3rem;
  }
  .hero-buttons {
    justify-content: center;
    gap: 15px;
  }
}

/* --- SERVICES GRID SECTION --- */
.services-section {
  background-color: var(--color-off-white);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px auto;
}

.section-subtitle {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-terracotta);
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.2rem;
  color: var(--color-forest-green);
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--color-white);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 51, 21, 0.04);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

/* Subtle organic card highlight details on hover */
.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--color-terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(20, 51, 21, 0.1);
}

.service-card:hover::after {
  transform: scaleX(1);
}

/* Service Card Icon Container */
.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background-color: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 25px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background-color: var(--color-forest-green);
  color: var(--color-white);
  transform: rotateY(180deg);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--color-forest-green);
}

.service-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  flex-grow: 1;
}

.service-learn-more {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-terracotta);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-learn-more i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .service-learn-more {
  color: var(--color-forest-green-light);
}

.service-card:hover .service-learn-more i {
  transform: translateX(5px);
}

/* --- ABOUT US STORY SECTION --- */
.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.story-text strong {
  color: var(--color-forest-green);
}

/* Asymmetric image showcase with premium overlapping decorative border */
.image-showcase {
  position: relative;
  padding: 15px;
}

.image-showcase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 90%;
  border: 4px solid var(--color-terracotta);
  border-radius: 20px;
  z-index: 1;
}

.showcase-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.image-showcase:hover .showcase-img {
  transform: scale(1.02) translateY(-5px);
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .image-showcase {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* --- WHY CHOOSE US TRUST SECTION --- */
.trust-section {
  background-color: hsl(45, 20%, 96%);
  border-top: 1px solid rgba(20, 51, 21, 0.06);
  border-bottom: 1px solid rgba(20, 51, 21, 0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.trust-card {
  background-color: var(--color-white);
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 93, 52, 0.2);
}

.trust-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(30, 70, 32, 0.08);
  color: var(--color-forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: var(--transition-fast);
}

.trust-card:hover .trust-card-icon {
  background-color: var(--color-forest-green);
  color: var(--color-white);
}

.trust-card-content h4 {
  font-size: 1.15rem;
  color: var(--color-forest-green);
  margin-bottom: 8px;
  font-weight: 700;
}

.trust-card-content p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- MASONRY GALLERY SECTION --- */
.gallery-section {
  background-color: var(--color-white);
  border-top: 1px solid rgba(20, 51, 21, 0.06);
}

.gallery-masonry {
  column-count: 3;
  column-gap: 24px;
}

@media (max-width: 991px) {
  .gallery-masonry {
    column-count: 2;
    column-gap: 20px;
  }
}

@media (max-width: 575px) {
  .gallery-masonry {
    column-count: 2;
    column-gap: 12px;
  }
  .gallery-item {
    margin-bottom: 12px;
    border-radius: 10px;
  }
}

.gallery-item {
  background-color: var(--color-off-white);
  margin-bottom: 24px;
  break-inside: avoid;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 1px solid rgba(20, 51, 21, 0.04);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 93, 52, 0.15);
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  padding: 18px 20px;
  background-color: var(--color-white);
  border-top: 1px solid rgba(20, 51, 21, 0.04);
}

.gallery-caption h4 {
  font-size: 1.05rem;
  color: var(--color-forest-green);
  margin-bottom: 4px;
  font-weight: 700;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background-color: var(--color-white);
  border-bottom: 1px solid rgba(20, 51, 21, 0.05);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--color-off-white);
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(20, 51, 21, 0.04);
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212, 93, 52, 0.15);
}

.stars {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 25px;
}

.reviewer-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-forest-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
}

.reviewer-details h4 {
  font-size: 0.95rem;
  color: var(--color-forest-green);
  margin-bottom: 2px;
}

.reviewer-details span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* --- RADIO SELECTION GROUP --- */
.radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .radio-group {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-off-white);
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(20, 51, 21, 0.12);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 0.95rem;
}

.radio-label input[type="radio"] {
  accent-color: var(--color-terracotta);
  width: 18px;
  height: 18px;
  margin: 0;
}

.radio-label:hover {
  background-color: var(--color-white);
  border-color: var(--color-terracotta);
}

.radio-label input[type="radio"]:checked + span {
  font-weight: 700;
  color: var(--color-forest-green);
}

.radio-label:has(input[type="radio"]:checked) {
  border-color: var(--color-terracotta);
  background-color: var(--color-white);
  box-shadow: 0 0 0 3px rgba(212, 93, 52, 0.08);
}

/* --- PREMIUM GLOBETREKK THEME LAYOUTS --- */
.script-subtitle {
  font-family: 'Satisfy', cursive;
  color: var(--color-terracotta);
  font-size: 1.8rem;
  text-transform: none;
  font-weight: 400;
  margin-bottom: 5px;
  display: inline-block;
}

.section-label {
  font-family: 'Satisfy', cursive;
  color: var(--color-terracotta);
  font-size: 1.6rem;
  text-transform: none;
  font-weight: 400;
  display: inline-block;
  margin-right: 12px;
}

.bold-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-forest-green);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
  margin-top: 5px;
}

/* Hero elements matching screenshot 1 */
.hero-large-text {
  font-size: 8.5rem;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 12px;
  line-height: 1;
  margin-bottom: 5px;
  text-transform: uppercase;
  opacity: 0.95;
  text-shadow: 0 4px 24px rgba(0,0,0,0.15);
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .hero-large-text {
    font-size: 4.5rem;
    letter-spacing: 6px;
  }
}

/* Glassmorphic Search Bar Bar matching screenshot 1 */
.search-filter-bar {
  background: rgba(15, 34, 46, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  width: 100%;
}

.search-filter-bar .search-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding-right: 15px;
}

.search-filter-bar .search-item:last-of-type {
  border-right: none;
  padding-right: 0;
}

.search-filter-bar label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
  padding-left: 12px;
}

.search-filter-bar select,
.search-filter-bar input {
  background: transparent;
  border: none;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 6px 12px;
  outline: none;
  width: 100%;
  cursor: pointer;
}

.search-filter-bar select option {
  background-color: var(--color-mud-brown-dark);
  color: var(--color-white);
}

.search-filter-bar .search-btn {
  background-color: var(--color-terracotta);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  padding: 14px 35px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-filter-bar .search-btn:hover {
  background-color: var(--color-terracotta-hover);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .search-filter-bar {
    border-radius: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 20px;
  }
  .search-filter-bar .search-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-right: 0;
    padding-bottom: 15px;
  }
  .search-filter-bar .search-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
  }
}

/* Polaroid image showcase matching screenshot 2 */
.polaroid-showcase {
  position: relative;
  height: 480px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.polaroid-frame {
  background-color: var(--color-white);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  position: absolute;
  width: 250px;
  border: 1px solid rgba(0,0,0,0.05);
  opacity: 0;
  /* Elastic soft bounce transition */
  transition: transform 1.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

.polaroid-frame img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.polaroid-frame.one {
  transform: scale(0.6) rotate(0deg) translate(0, 0);
  z-index: 2;
}

.polaroid-frame.two {
  transform: scale(0.6) rotate(0deg) translate(0, 0);
  z-index: 1;
}

/* Soft-bounce entrance states */
.polaroid-frame.one.animated {
  opacity: 1;
  transform: scale(1) rotate(-5deg) translate(-100px, -15px);
}

.polaroid-frame.two.animated {
  opacity: 1;
  transform: scale(1) rotate(5deg) translate(100px, 15px);
}

/* Hover effects after entrance animation completes */
.polaroid-frame.animated:hover {
  z-index: 10;
  box-shadow: 0 20px 45px rgba(15, 34, 46, 0.16);
}

.polaroid-frame.one.animated:hover {
  transform: scale(1.08) rotate(0deg) translate(-100px, -15px);
}

.polaroid-frame.two.animated:hover {
  transform: scale(1.08) rotate(0deg) translate(100px, 15px);
}

/* Dynamic dashed decorative tracing line */
.polaroid-decor-line {
  position: absolute;
  width: 120%;
  height: 100%;
  top: -10%;
  left: -10%;
  pointer-events: none;
  z-index: 0;
}

/* Responsive Grid and Mobile Overrides for About US */
.about-grid-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

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

@media (max-width: 768px) {
  .polaroid-showcase {
    height: 350px;
  }
  
  .polaroid-frame {
    width: 210px;
    padding: 12px;
    border-radius: 12px;
  }
  
  .polaroid-frame img {
    height: 150px;
  }
  
  .polaroid-frame.one.animated {
    transform: scale(1) rotate(-6deg) translate(-65px, -15px);
  }
  
  .polaroid-frame.two.animated {
    transform: scale(1) rotate(6deg) translate(65px, 15px);
  }
  
  .polaroid-frame.one.animated:hover {
    transform: scale(1.08) rotate(0deg) translate(-65px, -15px);
  }
  
  .polaroid-frame.two.animated:hover {
    transform: scale(1.08) rotate(0deg) translate(65px, 15px);
  }
  
  .polaroid-decor-line {
    display: none;
  }
}

/* Tour list card matching screenshot 3 */
.tour-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}

.tour-card-item {
  background-color: var(--color-white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 91, 38, 0.18);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow: 0 6px 20px rgba(255, 91, 38, 0.05);
}

.tour-card-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 91, 38, 0.4);
  box-shadow: 0 12px 35px rgba(255, 91, 38, 0.22);
}

.tour-card-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.tour-card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.tour-card-item:hover .tour-card-img-wrapper img {
  transform: scale(1.04);
}

.tour-card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.tour-card-location {
  font-size: 0.8rem;
  color: var(--color-terracotta);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  background: var(--color-terracotta-light);
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255, 91, 38, 0.1);
}

.tour-card-title {
  font-size: 1.4rem;
  color: var(--color-mud-brown-dark);
  margin-bottom: 15px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.tour-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px solid rgba(15, 34, 46, 0.06);
  padding-top: 20px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.tour-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--color-off-white);
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 600;
  border: 1px solid rgba(15, 34, 46, 0.04);
  color: var(--color-text-muted);
}

.tour-card-meta i {
  color: var(--color-terracotta) !important;
}

.tour-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.tour-card-price {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-mud-brown-dark);
}

.tour-card-arrow-btn {
  width: 46px;
  height: 46px;
  background-color: var(--color-mud-brown-dark);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(15, 34, 46, 0.15);
  font-size: 1rem;
}

/* Testimonials layout matching screenshot 4 */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card-item {
  background-color: var(--color-white);
  padding: 40px 35px;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15, 34, 46, 0.04);
  position: relative;
  transition: var(--transition-smooth);
}

.review-card-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 93, 52, 0.15);
}

.review-quote-icon {
  font-size: 2.2rem;
  color: var(--color-terracotta);
  opacity: 0.2;
  position: absolute;
  top: 30px;
  left: 30px;
  pointer-events: none;
}

.review-text-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.review-stars {
  color: #FFC107;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.review-user-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-user-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-name {
  font-size: 1rem;
  color: var(--color-forest-green);
  font-weight: 700;
  margin-bottom: 2px;
}

.review-user-country {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  display: block;
}

/* Instagram section matching screenshot 5 */
.instagram-showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

@media (max-width: 991px) {
  .instagram-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .instagram-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.insta-photo-box {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.insta-photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.insta-photo-box:hover img {
  transform: scale(1.05);
}

.insta-overlay-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 43, 64, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.insta-photo-box:hover .insta-overlay-icon {
  opacity: 1;
}

/* --- INTERACTIVE GALLERY FILTERS --- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  background-color: var(--color-white);
  color: var(--color-text-main);
  border: 2px solid rgba(15, 34, 46, 0.1);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-smooth);
  outline: none;
}
.filter-btn:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}
.filter-btn.active {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
  box-shadow: 0 4px 15px rgba(212, 93, 52, 0.25);
}

/* Load More Button Wrapper */
.load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 16, 22, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox-modal.active {
  display: flex;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  object-fit: contain;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}
.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}
.lightbox-caption {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}
.lightbox-subcaption {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-top: 5px;
  text-align: center;
}
.lightbox-close-btn {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-close-btn:hover {
  color: var(--color-terracotta);
  transform: scale(1.1);
}
.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
}
.lightbox-nav-btn:hover {
  background-color: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-white);
}
.lightbox-nav-btn.prev {
  left: -70px;
}
.lightbox-nav-btn.next {
  right: -70px;
}
@media (max-width: 991px) {
  .lightbox-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .lightbox-nav-btn.prev {
    left: -20px;
  }
  .lightbox-nav-btn.next {
    right: -20px;
  }
  .lightbox-close-btn {
    right: 10px;
    top: -45px;
  }
}

/* --- SCROLL & LOAD ANIMATION SYSTEM --- */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Staggered delays for items in grids or rows */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* When element enters viewport */
.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Specific entrance variations */
.fade-in-left.animate-on-scroll {
  transform: translateX(-40px);
}
.fade-in-left.animate-on-scroll.animated {
  transform: translateX(0);
}

.fade-in-right.animate-on-scroll {
  transform: translateX(40px);
}
.fade-in-right.animate-on-scroll.animated {
  transform: translateX(0);
}

.scale-in.animate-on-scroll {
  transform: scale(0.9);
}
.scale-in.animate-on-scroll.animated {
  transform: scale(1);
}


/* --- NEW 2-COLUMN HERO SECTION --- */
.hero-new {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FAF6F0 0%, #F5ECE0 100%);
  padding: 60px 0 100px 0;
  overflow: hidden;
  position: relative;
}

/* Background soft natural pattern decoration */
.hero-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  background-image: radial-gradient(var(--color-terracotta) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.hero-new-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-new-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Premium Eyebrow Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  padding: 6px 18px 6px 8px;
  border-radius: 100px;
  box-shadow: 0 4px 15px rgba(212, 93, 52, 0.06);
  border: 1px solid rgba(255, 91, 38, 0.15);
  margin-bottom: 24px;
  animation: float-badge 4s ease-in-out infinite;
}

.hero-badge-tag {
  background: var(--color-terracotta);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-badge-tag i {
  animation: spin-compass 8s linear infinite;
}

.hero-badge-text {
  font-family: 'Satisfy', cursive;
  font-size: 1.35rem;
  color: var(--color-terracotta);
  line-height: 1;
}

/* Title Styling */
.hero-new-title {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--color-mud-brown-dark);
  line-height: 1.15;
  margin-top: 5px;
  margin-bottom: 20px;
  text-transform: capitalize;
  letter-spacing: -1.5px;
}

/* Highlights and Gradients inside Title */
.text-highlight {
  color: var(--color-terracotta);
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 8px;
  background-color: rgba(255, 91, 38, 0.12);
  border-radius: 4px;
  z-index: -1;
}

.text-gradient {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, #ff8c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Description text */
.hero-new-desc {
  font-size: 1.15rem;
  color: var(--color-text-main);
  opacity: 0.85;
  margin-bottom: 35px;
  max-width: 580px;
  line-height: 1.75;
}

/* CTA buttons container */
.hero-new-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Buttons */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-terracotta) 0%, hsl(15, 90%, 48%) 100%);
  color: #ffffff !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 32px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 24px rgba(255, 91, 38, 0.35);
  transition: var(--transition-smooth);
  gap: 10px;
}

.hero-btn-primary:hover {
  background: linear-gradient(135deg, hsl(15, 90%, 48%) 0%, var(--color-terracotta) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 91, 38, 0.5);
  color: #ffffff !important;
}

.hero-btn-primary i {
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
  transform: translateX(4px);
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-mud-brown-dark) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 30px;
  border-radius: 50px;
  cursor: pointer;
  border: 2px solid var(--color-mud-brown-dark);
  transition: var(--transition-smooth);
  gap: 10px;
}

.hero-btn-secondary:hover {
  background-color: var(--color-mud-brown-dark);
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 34, 46, 0.15);
}

.hero-btn-secondary i {
  transition: transform 0.3s ease;
}

.hero-btn-secondary:hover i {
  transform: rotate(15deg) scale(1.1);
}

/* Light Search Bar for White Hero Background */
.search-filter-bar.light {
  background: var(--color-white);
  border: 1px solid rgba(15, 34, 46, 0.12);
  box-shadow: var(--shadow-md);
  margin-top: 10px;
  max-width: 650px;
  width: 100%;
}
.search-filter-bar.light label {
  color: var(--color-text-muted);
}
.search-filter-bar.light select,
.search-filter-bar.light input {
  color: var(--color-text-main);
}
.search-filter-bar.light select option {
  background-color: var(--color-white);
  color: var(--color-text-main);
}
.search-filter-bar.light .search-item {
  border-right: 1px solid rgba(15, 34, 46, 0.1);
}
.search-filter-bar.light .search-btn {
  background-color: var(--color-terracotta);
}
.search-filter-bar.light .search-btn:hover {
  background-color: var(--color-terracotta-hover);
}

/* Trust Indicators Row */
.hero-trust-row {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(15, 34, 46, 0.08);
  padding-top: 25px;
  width: 100%;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-weight: 600;
}

.trust-badge i {
  color: var(--color-terracotta);
  font-size: 1rem;
}

/* Image Showcase Side with 3D Rotating Cylindrical Carousel */
.hero-image-side {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 380px;
  width: 100%;
  perspective: 1200px;
  perspective-origin: 50% 20%;
  transform-style: preserve-3d;
  overflow: visible; /* Allowed to let 3D cards render outside the container bounds */
}

.hero-carousel-track {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotate-cylinder 50s linear infinite;
  left: 280px; /* Shift the rotation axis further right to clear text overlap */
  top: -30px;  /* Move the carousel slightly up */
}

.hero-carousel-track:hover {
  animation-play-state: paused;
}

.reflection-card {
  position: absolute;
  flex-shrink: 0;
  width: 135px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  -webkit-box-reflect: below 8px linear-gradient(to bottom, transparent 65%, rgba(255, 255, 255, 0.25));
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  
  /* 3D placement along a cylinder: 360deg / 20 items = 18deg step. translateZ is the radius. */
  transform: rotateY(calc(var(--i) * 18deg)) translateZ(510px);
}

.reflection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover effect: lift card closer along its cylinder vector */
.reflection-card:hover {
  transform: rotateY(calc(var(--i) * 18deg)) translateZ(540px) scale(1.08);
  z-index: 100;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

@keyframes rotate-cylinder {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(-360deg);
  }
}

/* Floating Animations */
@keyframes float-badge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes spin-compass {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-new {
    padding: 100px 0 60px 0;
  }
  .hero-new-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .hero-new-text {
    align-items: center;
    text-align: center;
  }
  .hero-new-buttons {
    justify-content: center;
  }
  .hero-new-title {
    font-size: 2.8rem;
  }
  .hero-new-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-carousel-track {
    left: 0; /* Center the cylinder on tablets */
  }
  .reflection-card {
    width: 110px;
    height: 165px;
    transform: rotateY(calc(var(--i) * 18deg)) translateZ(410px);
  }
  .reflection-card:hover {
    transform: rotateY(calc(var(--i) * 18deg)) translateZ(435px) scale(1.08);
  }
  .search-filter-bar.light .search-item {
    border-right: none;
    border-bottom: 1px solid rgba(15, 34, 46, 0.1);
  }
  .hero-trust-row {
    justify-content: center;
    gap: 16px;
    padding-top: 20px;
  }
}

@media (max-width: 575px) {
  .hero-new-title {
    font-size: 2.2rem;
  }
  .hero-image-side {
    height: 280px;
  }
  .reflection-card {
    width: 85px;
    height: 125px;
    transform: rotateY(calc(var(--i) * 18deg)) translateZ(310px);
  }
  .reflection-card:hover {
    transform: rotateY(calc(var(--i) * 18deg)) translateZ(330px) scale(1.08);
  }
  .hero-trust-row {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* --- DYNAMIC PAGE BANNER BACKDROPS --- */
.page-banner {
  color: var(--color-off-white);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.banner-packages {
  background-image: linear-gradient(rgba(15, 15, 15, 0.68), rgba(15, 15, 15, 0.68)), url('../images/jeep safari/WhatsApp Image 2026-07-07 at 13.26.46.jpeg');
}

.banner-about {
  background-image: linear-gradient(rgba(15, 15, 15, 0.68), rgba(15, 15, 15, 0.68)), url('../images/village tour/WhatsApp Image 2026-07-07 at 11.26.29.jpeg');
}

.banner-gallery {
  background-image: linear-gradient(rgba(15, 15, 15, 0.68), rgba(15, 15, 15, 0.68)), url('../images/village tour/WhatsApp Image 2026-07-07 at 11.26.27.jpeg');
}

.banner-contact {
  background-image: linear-gradient(rgba(15, 15, 15, 0.68), rgba(15, 15, 15, 0.68)), url('../images/village tour/WhatsApp Image 2026-07-07 at 11.25.02.jpeg');
}

/* Responsive Grid Classes for Contact & Booking Page */
.contact-grid-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-grid-2-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.contact-grid-guests {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

@media (max-width: 575px) {
  .contact-grid-2-col {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .contact-grid-guests {
    gap: 10px;
  }
  
  /* Make form container padding slightly smaller on mobile */
  .contact-form-container {
    padding: 24px !important;
  }
}

/* Tour Details Layout & Responsiveness */
.tour-details-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

.tour-summary-sidebar {
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 35px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(15, 34, 46, 0.05);
  position: sticky;
  top: 100px;
}

@media (max-width: 991px) {
  .tour-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .tour-summary-sidebar {
    position: static;
    padding: 25px;
  }
}

@media (max-width: 575px) {
  .tour-details-grid {
    gap: 30px;
  }
  
  .tour-summary-sidebar {
    padding: 20px;
  }
}








