/* ============================================
   TMS TOURS & SAFARIS TANZANIA
   Premium Tourism Website Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --primary: #1E3A34;
  --primary-light: #2A4F47;
  --primary-dark: #152A25;
  --secondary: #C6A769;
  --secondary-light: #D4BA82;
  --secondary-dark: #B89450;
  --accent: #8B5E34;
  --accent-light: #A67B4A;
  --bg: #F7F3EA;
  --bg-dark: #1A1A1A;
  --text: #1A1A1A;
  --text-light: #6B6B6B;
  --text-white: #FFFFFF;
  --success: #2E7D32;
  --white: #FFFFFF;
  --black: #000000;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-400: #CED4DA;
  --gray-500: #ADB5BD;
  --gray-600: #6C757D;
  --gold-gradient: linear-gradient(135deg, #C6A769, #D4BA82, #C6A769);
  --dark-overlay: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7));
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --nav-height: 100px;
  --nav-height-scrolled: 75px;
}

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--secondary);
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: 2px;
}

.preloader-logo span {
  color: var(--white);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar::after {
  content: '';
  display: block;
  width: 40%;
  height: 100%;
  background: var(--secondary);
  border-radius: 3px;
  animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

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

h1 { font-size: clamp(2.2rem, 5vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1rem; }

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 10px;
  display: inline-block;
}

.section-title {
  margin-bottom: 15px;
}

.section-title .highlight {
  color: var(--secondary);
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.text-gold {
  color: var(--secondary) !important;
}

.text-primary {
  color: var(--primary) !important;
}

/* --- Buttons --- */
.btn-tms {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-tms::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn-tms:hover::before {
  left: 100%;
}

.btn-primary-tms {
  background: var(--secondary);
  color: var(--primary);
}

.btn-primary-tms:hover {
  background: var(--secondary-dark);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-tms {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--secondary);
}

.btn-outline-tms:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-dark-tms {
  background: var(--primary);
  color: var(--white);
}

.btn-dark-tms:hover {
  background: var(--primary-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-white-tms {
  background: var(--white);
  color: var(--primary);
}

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

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: var(--white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1rem;
}

/* --- Section Styling --- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.section-bg {
  background-color: var(--bg);
}

.section-bg-dark {
  background-color: var(--primary);
  color: var(--white);
}

.section-bg-dark .section-title,
.section-bg-dark .section-desc {
  color: var(--white);
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: 15px auto 20px;
  border-radius: 3px;
}

.section-divider-left {
  margin: 15px 0 20px;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
/* --- Top Bar --- */
.top-bar {
  background: var(--primary-dark);
  padding: 6px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(198,167,105,0.15);
  transition: var(--transition);
}

.tms-header.scrolled .top-bar {
  background: var(--primary);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left a,
.top-bar-left span {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.top-bar-left a:hover {
  color: var(--secondary);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar-right a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.top-bar-right a:hover {
  color: var(--secondary);
  transform: translateY(-1px);
}

.tms-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  transition: var(--transition);
}

.tms-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.tms-header.scrolled .navbar {
  height: var(--nav-height-scrolled);
}

.tms-header.scrolled .nav-link {
  color: var(--text) !important;
}

.tms-header.scrolled .nav-link:hover {
  color: var(--secondary) !important;
}

.navbar {
  padding: 0 40px;
  height: var(--nav-height);
}

.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 80px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  transition: var(--transition);
  display: block;
}

.tms-header.scrolled .nav-logo {
  height: 65px;
}

.nav-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--white) !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 12px !important;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover {
  color: var(--secondary) !important;
}

/* Center nav items on desktop */
@media (min-width: 992px) {
  .navbar {
    position: relative;
  }

  #mainNav {
    flex: 1;
    display: flex;
    align-items: center;
  }

  #navMenu {
    margin: 0 auto;
    white-space: nowrap;
  }

  #navCta {
    padding: 12px 28px;
    font-size: 0.85rem;
    white-space: nowrap;
  }
}

@media (max-width: 991.98px) {
  #navCta {
    display: none;
  }

  #mainNav .d-lg-none a.btn-tms {
    width: 100%;
  }
}

/* --- Dropdown System (Hover-based) --- */
.dropdown-menu {
  background: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 220px;
}

.dropdown-item {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 20px;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--bg);
  color: var(--secondary);
  padding-left: 25px;
}

.dropdown-item.active {
  background: var(--bg);
  color: var(--secondary);
}

/* Hover-based dropdown on desktop */
@media (min-width: 992px) {
  .dropdown-hover {
    position: relative;
  }

  .dropdown-hover > .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.15s;
    pointer-events: none;
    top: 100%;
    padding-top: 8px;
  }

  .dropdown-hover:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
  }

  .dropdown-hover > .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
  }
}

/* Mega Menu */
.dropdown-mega {
  width: 520px;
  padding: 1.25rem !important;
}

.mega-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-heading {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-200);
}

.mega-col .dropdown-item {
  padding: 6px 0;
  font-size: 0.82rem;
  background: transparent;
  border-radius: 0;
}

.mega-col .dropdown-item:hover {
  padding-left: 4px;
  background: transparent;
}

.mega-col .all-link {
  margin-top: 0.4rem;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.78rem;
}

.mega-col .all-link:hover {
  color: var(--secondary-dark);
}

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 22px;
  position: relative;
  background: transparent !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-icon {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.tms-header.scrolled .toggler-icon {
  background: var(--text);
}

.toggler-icon:nth-child(1) { top: 0; }
.toggler-icon:nth-child(2) { top: 50%; transform: translateY(-50%); }
.toggler-icon:nth-child(3) { bottom: 0; }

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30,58,52,0.85) 0%, rgba(30,58,52,0.5) 50%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding-top: 30px;
}

.hero-content.fade-out {
  opacity: 0;
  transform: translateY(10px);
}

.hero-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--secondary);
}

.hero-subtitle {
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 540px;
  line-height: 1.7;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}

.hero-rating .stars {
  color: #F4A638;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero-rating .rating-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.7;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-indicator-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--secondary);
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--secondary);
  color: var(--white);
}

.why-card h4 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.why-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   FEATURED DESTINATIONS
   ============================================ */
.dest-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
  display: block;
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-card:hover img {
  transform: scale(1.1);
}

.dest-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(30,58,52,0.9) 0%, rgba(30,58,52,0.4) 70%, transparent 100%);
}

.dest-card-overlay h3 {
  color: var(--white);
  margin-bottom: 5px;
  font-size: 1.4rem;
}

.dest-card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin: 0;
}

.dest-card-overlay .dest-count {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Destination Category Cards (smaller) */
.dest-cat-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 250px;
  display: block;
}

.dest-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.dest-cat-card:hover img {
  transform: scale(1.08);
}

.dest-cat-card .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.dest-cat-card .overlay h4 {
  color: var(--white);
  margin: 0;
  font-size: 1.1rem;
}

.dest-cat-card .overlay span {
  color: var(--secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

/* ============================================
   TOUR / SAFARI CARDS
   ============================================ */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

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

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.08);
}

.tour-card-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: var(--primary);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  z-index: 1;
}

.tour-card-body {
  padding: 25px;
}

.tour-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.tour-card:hover .tour-card-body h4 {
  color: var(--secondary);
}

.tour-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
  line-height: 1.6;
}

.tour-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--gray-200);
}

.tour-meta span {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-meta i {
  color: var(--secondary);
}

.tour-card-footer {
  display: flex;
  gap: 10px;
  padding-top: 5px;
}

/* ============================================
   DESTINATION CARDS (listing/hub pages)
   ============================================ */
.destination-card {
  display: block;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.destination-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  color: inherit;
}

.destination-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.destination-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.destination-card:hover .destination-card-img img {
  transform: scale(1.08);
}

.destination-card-body {
  padding: 22px;
}

.destination-card-body h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  transition: var(--transition);
}

.destination-card:hover .destination-card-body h4 {
  color: var(--secondary);
}

.destination-card-body p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.6;
}

.destination-card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.destination-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.destination-card-meta i {
  color: var(--secondary);
}

/* ============================================
   HIKING TOUR CARDS
   ============================================ */
.hiking-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.hiking-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.hiking-card-img {
  height: 300px;
  position: relative;
  overflow: hidden;
}

.hiking-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hiking-card:hover .hiking-card-img img {
  transform: scale(1.08);
}

.hiking-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--primary);
  color: var(--white);
  padding: 15px;
  text-align: center;
  gap: 10px;
}

.hiking-stats .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
}

.hiking-stats .stat-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.8;
  display: block;
}

.hiking-card-body {
  padding: 25px;
}

.hiking-card-body h4 {
  margin-bottom: 10px;
}

.hiking-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

/* ============================================
   BEACH TOUR CARDS
   ============================================ */
.beach-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 400px;
  display: block;
}

.beach-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.beach-card:hover img {
  transform: scale(1.08);
}

.beach-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}

.beach-card-overlay h4 {
  color: var(--white);
  margin-bottom: 5px;
}

.beach-card-overlay p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  margin: 0;
}

.beach-card-overlay .beach-rating {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
  color: var(--secondary);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================
   CULTURAL TOUR CARDS
   ============================================ */
.culture-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.culture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.culture-card-img {
  height: 250px;
  overflow: hidden;
}

.culture-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.culture-card:hover .culture-card-img img {
  transform: scale(1.08);
}

.culture-card-body {
  padding: 25px;
  text-align: center;
}

.culture-card-body h4 {
  margin-bottom: 10px;
}

.culture-card-body p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.culture-card-body .culture-tribe {
  display: inline-block;
  background: var(--bg);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   INTERACTIVE MAP
   ============================================ */
.map-section {
  position: relative;
  overflow: hidden;
}

.map-container {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.map-pins {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  pointer-events: all;
  cursor: pointer;
}

.map-pin-dot {
  width: 20px;
  height: 20px;
  background: var(--secondary);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  animation: pinPulse 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--white);
}

@keyframes pinPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(198,167,105,0.4); }
  50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(198,167,105,0); }
}

.map-pin-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
}

.map-pin:hover .map-pin-label {
  opacity: 1;
  top: -45px;
}

/* ============================================
   WILDLIFE SHOWCASE
   ============================================ */
.wildlife-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.wildlife-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1;
}

.wildlife-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  transition: transform 0.6s ease;
}

.wildlife-item:hover img {
  transform: scale(1.08);
}

.wildlife-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,58,52,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.wildlife-item:hover .overlay {
  opacity: 1;
}

.wildlife-item .overlay span {
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.wildlife-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.wildlife-item.wide {
  grid-column: span 2;
  aspect-ratio: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--white);
  padding: 40px 35px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  margin: 10px;
  height: auto;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 25px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--secondary);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  color: #F4A638;
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--secondary);
}

.testimonial-author h6 {
  margin: 0;
  font-size: 0.95rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.testimonial-author span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.testimonial-author .tour-done {
  font-size: 0.7rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Swiper pagination */
.testimonials-slider .swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.testimonials-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--gray-400);
  opacity: 1;
}

.testimonials-slider .swiper-pagination-bullet-active {
  background: var(--secondary);
  width: 30px;
  border-radius: 5px;
}

/* ============================================
   ACCOMMODATION SHOWCASE
   ============================================ */
.accommodation-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.accommodation-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.accommodation-card-img {
  height: 220px;
  overflow: hidden;
}

.accommodation-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.accommodation-card:hover .accommodation-card-img img {
  transform: scale(1.08);
}

.accommodation-card-body {
  padding: 20px;
}

.accommodation-card-body .acc-type {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 8px;
}

.accommodation-card-body h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.accommodation-card-body .acc-location {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.accommodation-card-body .acc-location i {
  color: var(--secondary);
}

.accommodation-card-body .acc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
}

.accommodation-card-body .acc-rating i {
  color: #F4A638;
}

/* ============================================
   RELATED TOUR CARD
   ============================================ */
.related-tour-card {
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.related-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.related-tour-card h6 {
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.related-tour-card small {
  color: var(--text-light);
  font-size: 0.78rem;
}

/* ============================================
   GALLERY PREVIEW
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 10px;
}

.gallery-grid-item {
  overflow: hidden;
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-grid-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,58,52,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-grid-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-grid-item .gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

.blog-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--secondary);
  color: var(--primary);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 1;
}

.blog-card-body {
  padding: 20px;
}

.blog-card-body .blog-date {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.blog-card-body h5 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  transition: var(--transition);
  line-height: 1.4;
}

.blog-card:hover .blog-card-body h5 {
  color: var(--secondary);
}

.blog-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-card-body .blog-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.blog-card-body .blog-link:hover {
  gap: 10px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 10px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  padding: 20px 25px;
  background: var(--white);
  box-shadow: none !important;
  border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--secondary);
  background: var(--white);
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23C6A769' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  transition: var(--transition);
}

.faq-accordion .accordion-body {
  padding: 0 25px 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1516426122078-c23e76319801?w=1920') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 80px 0;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.cta-content p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.tms-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}

.footer-widget {
  margin-bottom: 40px;
}

.footer-widget h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-widget h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-brand {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 65px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-brand-sub {
  font-size: 0.75rem;
  color: var(--secondary);
  letter-spacing: 2px;
  font-weight: 400;
  display: block;
  margin-bottom: 15px;
}

.footer-about-text {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-3px);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links i {
  font-size: 0.6rem;
  color: var(--secondary);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.footer-contact li i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 4px;
  min-width: 18px;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
}

.footer-contact a:hover {
  color: var(--secondary);
}

.footer-newsletter p {
  font-size: 0.85rem;
  margin-bottom: 15px;
}

.footer-newsletter .input-group {
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.footer-newsletter .input-group input {
  background: transparent;
  border: none;
  padding: 12px 15px;
  color: var(--white);
  font-size: 0.85rem;
}

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

.footer-newsletter .input-group input:focus {
  box-shadow: none;
  outline: none;
  background: transparent;
}

.footer-newsletter .input-group button {
  background: var(--secondary);
  border: none;
  color: var(--primary);
  padding: 0 18px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.footer-newsletter .input-group button:hover {
  background: var(--secondary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 0.8rem;
  margin: 0;
  color: rgba(255,255,255,0.5);
}

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

.footer-bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

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

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9997;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  color: var(--white);
}

.whatsapp-float .whatsapp-tooltip {
  position: absolute;
  right: 65px;
  background: var(--white);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 25px;
  z-index: 9996;
  width: 45px;
  height: 45px;
  background: var(--secondary);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
}

/* ============================================
   STICKY BOOKING BAR
   ============================================ */
.sticky-booking {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--white);
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 9995;
  padding: 12px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
}

.sticky-booking.show {
  display: flex;
}

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

.sticky-booking .booking-info span {
  font-size: 0.85rem;
  font-weight: 500;
}

.sticky-booking .booking-price {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30,58,52,0.85), rgba(0,0,0,0.5));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 10px;
}

.page-hero-content .breadcrumb {
  background: transparent;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-hero-content .breadcrumb-item {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.page-hero-content .breadcrumb-item a {
  color: var(--secondary);
}

.page-hero-content .breadcrumb-item.active {
  color: var(--white);
}

.page-hero-content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.4);
}

/* ============================================
   TOUR DETAIL PAGE
   ============================================ */
.tour-detail-hero {
  height: 60vh;
  min-height: 500px;
}

.tour-detail-info {
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.tour-detail-info .info-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 30px;
}

.tour-highlight {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.tour-highlight i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 3px;
}

.tour-highlight h6 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 5px;
}

.tour-highlight p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

.itinerary-day {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 15px;
  border-left: 3px solid var(--secondary);
  transition: var(--transition);
}

.itinerary-day:hover {
  box-shadow: var(--shadow-md);
}

.itinerary-day .day-number {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.itinerary-day h5 {
  margin-bottom: 8px;
}

.itinerary-day p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro-img {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.team-card-img {
  height: 280px;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
}

.team-card-body {
  padding: 20px;
}

.team-card-body h5 {
  margin-bottom: 5px;
}

.team-card-body .team-role {
  font-size: 0.8rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: block;
}

.team-card-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 0;
}

/* ============================================
   FOUNDER CARD (single large profile)
   ============================================ */
.founder-section {
  background: var(--white);
}

.founder-card {
  text-align: center;
  position: relative;
}

.founder-card-img {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border: 4px solid var(--secondary);
}

.founder-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.founder-card:hover .founder-card-img img {
  transform: scale(1.05);
}

.founder-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.founder-card-body h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.founder-role {
  font-size: 0.9rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.founder-divider {
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.founder-card-body p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   SPONSOR GRID (Trusted & Certified)
   ============================================ */
.sponsor-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  padding: 20px 0;
}

.sponsor-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sponsor-item img {
  max-height: 100px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.sponsor-item img:hover {
  opacity: 1;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-page-grid {
  column-count: 4;
  column-gap: 15px;
}

.gallery-page-item {
  break-inside: avoid;
  margin-bottom: 15px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  display: block;
}

.gallery-page-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}

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

.gallery-page-item .gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30,58,52,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-page-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-page-item .gallery-item-overlay i {
  color: var(--white);
  font-size: 1.8rem;
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.gallery-filter button {
  padding: 8px 22px;
  border: 2px solid var(--gray-300);
  background: transparent;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.gallery-filter button.active,
.gallery-filter button:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--primary);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-page-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.blog-page-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-page-card-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.blog-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-page-card:hover .blog-page-card-img img {
  transform: scale(1.05);
}

.blog-page-card-body {
  padding: 25px;
}

.blog-page-card-body .blog-page-date {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-page-card-body h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.blog-page-card:hover .blog-page-card-body h4 {
  color: var(--secondary);
}

.blog-page-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-page-card-body .blog-page-link {
  font-weight: 600;
  color: var(--secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-page-card-body .blog-page-link:hover {
  gap: 10px;
}

.blog-search {
  position: relative;
}

.blog-search input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-search input:focus {
  border-color: var(--secondary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(198,167,105,0.15);
}

.blog-search button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--secondary);
  border: none;
  color: var(--primary);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.blog-search button:hover {
  background: var(--secondary-dark);
}

.blog-sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 25px;
}

.blog-sidebar-widget h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg);
}

.blog-categories li {
  margin-bottom: 10px;
}

.blog-categories a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.blog-categories a:hover {
  background: var(--secondary);
  color: var(--primary);
}

.blog-categories a span {
  background: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.contact-info-card .contact-icon {
  width: 60px;
  height: 60px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.3rem;
  color: var(--secondary);
}

.contact-info-card h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

.contact-info-card a:hover {
  color: var(--secondary);
}

.contact-form-wrapper {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.form-control, .form-select {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(198,167,105,0.15);
}

.form-control::placeholder {
  color: var(--gray-500);
}

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

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}

/* ============================================
   BOOKING FORM PAGE
   ============================================ */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}

.booking-step {
  text-align: center;
  position: relative;
}

.booking-step::after {
  content: '';
  position: absolute;
  top: 25px;
  left: calc(50% + 30px);
  width: 40px;
  height: 2px;
  background: var(--gray-300);
}

.booking-step:last-child::after {
  display: none;
}

.booking-step .step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0 auto 10px;
  transition: var(--transition);
}

.booking-step.active .step-number {
  background: var(--secondary);
  color: var(--primary);
}

.booking-step.completed .step-number {
  background: var(--success);
  color: var(--white);
}

.booking-step .step-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
}

.booking-step.active .step-label {
  color: var(--text);
}

/* ============================================
   WHY BOOK DIRECT SECTION
   ============================================ */
.direct-benefit {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.direct-benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--secondary);
}

.direct-benefit h5 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1rem;
}

.direct-benefit p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

/* ============================================
   NEWSLETTER POPUP
   ============================================ */
.newsletter-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.newsletter-popup.show {
  display: flex;
}

.newsletter-popup-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  animation: popupIn 0.4s ease;
}

@keyframes popupIn {
  from { transform: scale(0.9) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.newsletter-popup-content .popup-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-popup-content .popup-close:hover {
  color: var(--text);
}

.newsletter-popup-content .popup-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 20px;
}

.newsletter-popup-content h3 {
  margin-bottom: 10px;
}

.newsletter-popup-content p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 25px;
}

.newsletter-popup-content .form-control {
  text-align: center;
}

/* ============================================
   PAGE TRANSITION OVERLAY
   ============================================ */
.page-transition {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  z-index: 99998;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
}

.page-transition.active {
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 991.98px) {
  .top-bar {
    padding: 5px 20px;
    font-size: 0.7rem;
    flex-wrap: wrap;
    gap: 4px;
  }

  .top-bar-left {
    gap: 10px;
  }

  .top-bar-location {
    display: none;
  }

  .tms-header {
    padding: 0;
  }

  .navbar {
    padding: 0 20px;
    height: 85px;
  }

  .navbar-collapse {
    background: var(--white);
    position: absolute;
    top: 100%;
    left: -20px;
    right: -20px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .nav-link {
    color: var(--text) !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-link::after {
    display: none;
  }

  .dropdown-hover > .dropdown-menu {
    display: block !important;
    opacity: 0;
    visibility: visible;
    transform: none;
    pointer-events: all;
    position: static;
    box-shadow: none;
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    border-left: 2px solid var(--secondary);
    margin-top: 0 !important;
    border-radius: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.25s ease;
  }

  .dropdown-hover.open > .dropdown-menu {
    max-height: 500px;
    opacity: 1;
    padding: 8px 15px;
  }

  .dropdown-mega {
    width: 100%;
    padding: 0.75rem !important;
  }

  .mega-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .mega-col .dropdown-item {
    padding: 6px 0;
  }

  .hero-section {
    height: 80vh;
    min-height: 550px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-tms {
    width: 100%;
    justify-content: center;
  }

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

  .wildlife-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-grid-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-page-grid {
    column-count: 2;
  }

  .booking-steps {
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  .top-bar {
    padding: 4px 15px;
    font-size: 0.65rem;
    gap: 4px;
  }

  .top-bar-left {
    gap: 8px;
  }

  .top-bar-left a span {
    display: none;
  }

  .top-bar-location {
    display: none;
  }

  .top-bar-right {
    gap: 8px;
  }

  .top-bar-right a {
    font-size: 0.75rem;
  }

  .tms-header {
    padding: 0;
  }

  .navbar {
    padding: 0 15px;
    height: 75px;
  }

  .tms-header.scrolled {
    height: auto;
  }

  .tms-header.scrolled .navbar {
    height: 65px;
  }

  .nav-logo {
    height: 55px;
    max-width: 180px;
  }

  .tms-header.scrolled .nav-logo {
    height: 45px;
  }

  .footer-logo-img {
    height: 50px;
    max-width: 180px;
  }

  .hero-section {
    height: 100vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

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

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .wildlife-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .wildlife-item.tall,
  .wildlife-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .gallery-grid-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .dest-card {
    height: 280px;
  }

  .dest-cat-card {
    height: 200px;
  }

  .tour-card-img {
    height: 200px;
  }

  .hiking-card-img {
    height: 220px;
  }

  .hiking-stats {
    grid-template-columns: repeat(3, 1fr);
    padding: 12px 8px;
  }

  .beach-card {
    height: 300px;
  }

  .culture-card-img {
    height: 200px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

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

  .stat-item .stat-number {
    font-size: 1.8rem;
  }

  .gallery-page-grid {
    column-count: 2;
    column-gap: 8px;
  }

  .gallery-page-item {
    margin-bottom: 8px;
  }

  .contact-form-wrapper {
    padding: 25px;
  }

  .booking-steps {
    gap: 15px;
    flex-wrap: wrap;
  }

  .booking-step::after {
    display: none;
  }

  .cta-content {
    padding: 50px 0;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-widget {
    margin-bottom: 30px;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
    right: 20px;
    bottom: 75px;
    z-index: 9996;
  }

  .sticky-booking.show ~ .back-to-top,
  .back-to-top.sticky-visible {
    bottom: 90px;
  }

  .sticky-booking .booking-info span {
    font-size: 0.75rem;
  }

  .sticky-booking .booking-price {
    font-size: 0.9rem;
  }

  .page-hero {
    height: 40vh;
    min-height: 300px;
  }

  .tour-detail-hero {
    height: 45vh;
    min-height: 350px;
  }

  .tour-detail-info {
    margin-top: 0;
  }

  .newsletter-popup-content {
    padding: 30px 25px;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .gallery-page-grid {
    column-count: 1;
  }

  .wildlife-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons .btn-tms {
    font-size: 0.8rem;
    padding: 12px 20px;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .founder-card-img {
    width: 200px !important;
    height: 200px !important;
  }

  .founder-card-body h3 {
    font-size: 1.5rem;
  }

  .sponsor-grid {
    gap: 20px;
  }

  .sponsor-item img {
    max-height: 60px;
  }
}

/* Mobile & Tablet: override fixed image heights for card thumbnails */
@media (max-width: 991.98px) {
  img[style*="height:160"][style*="object-fit"],
  img[style*="height:150"][style*="object-fit"],
  img[style*="height:180"][style*="object-fit"] {
    height: 140px !important;
  }

  img[style*="height:300"][style*="object-fit"] {
    height: 220px !important;
  }
}

@media (max-width: 575.98px) {
  img[style*="height:160"][style*="object-fit"],
  img[style*="height:150"][style*="object-fit"],
  img[style*="height:180"][style*="object-fit"] {
    height: 120px !important;
  }
}

/* ============================================
   MISC UTILITY CLASSES
   ============================================ */
.z-index-1 { z-index: 1; }
.z-index-2 { z-index: 2; }
.z-index-3 { z-index: 3; }

.position-relative { position: relative; }

.overflow-hidden { overflow: hidden; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.bg-gold { background: var(--secondary); }
.bg-primary-custom { background: var(--primary); }
.bg-light-custom { background: var(--bg); }

.text-white { color: var(--white); }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.fs-small { font-size: 0.85rem; }

.lh-1 { line-height: 1; }

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }

/* Image hover zoom container */
.img-zoom-container {
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.img-zoom-container img {
  transition: transform 0.6s ease;
}

.img-zoom-container:hover img {
  transform: scale(1.08);
}

/* Countdown / number animation base */
.count-up {
  display: inline-block;
}

/* Safari/price range indicator */
.price-range {
  display: flex;
  gap: 5px;
  align-items: center;
}

.price-range .dollar {
  color: var(--gray-400);
  font-weight: 600;
}

.price-range .dollar.active {
  color: var(--secondary);
}

/* Rating stars base */
.rating-stars {
  color: #F4A638;
  font-size: 0.85rem;
}
