/* ==========================================================================
   TADOBA NATIONAL PARK ONLINE - MASTER STYLESHEET
   Accurate Redesign matching Reference Aesthetic
   ========================================================================== */

:root {
  --primary-green: #1a7e37;
  --primary-green-hover: #14662c;
  --accent-gold: #d8891f;
  --accent-gold-hover: #c47715;
  --accent-amber: #e69123;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #20ba59;

  --dark-bg: #0f1113;
  --dark-surface: #17191d;
  --dark-card: rgba(18, 20, 22, 0.92);
  --dark-border: rgba(255, 255, 255, 0.12);

  --light-bg: #fbf9f4;
  --light-card-bg: #ffffff;
  --light-border: #e9e2d5;
  --card-border-subtle: #eee7db;

  --text-dark: #22252a;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --text-light-muted: #9ca3af;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 20px rgba(216, 137, 31, 0.3);

  --transition: all 0.25s ease-in-out;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 14px;
}

.site-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1a1c1e;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* ==========================================================================
   1. SITE HEADER & NAVIGATION
   ========================================================================== */
/* Mobile-Only Top Phone Bar (White Background Base) */
.mobile-top-header {
  display: none;
  background-color: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 6px 16px;
  width: 100%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.mobile-top-container {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-phone-icon {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.mobile-tel-wrap {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.mobile-tel-link {
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;
  padding: 2px 4px;
  border-radius: 4px;
  transition: var(--transition);
}

.mobile-tel-link:hover,
.mobile-tel-link:active {
  color: var(--primary-green);
  background-color: #f8fafc;
}

.mobile-tel-divider {
  color: #cbd5e1;
  font-size: 0.74rem;
  margin: 0 2px;
  font-weight: 500;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #111315;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: nowrap;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-paw {
  width: 32px;
  height: 32px;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.brand-paw svg {
  width: 100%;
  height: 100%;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #ffffff;
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--accent-gold);
  margin-top: 3px;
  text-transform: uppercase;
}

/* Navigation Links */
.main-navigation {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
  flex-wrap: nowrap;
}

.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  flex-shrink: 0;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  padding: 8px 7px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-gold);
}

.nav-arrow {
  font-size: 0.65rem;
  transition: transform 0.2s ease;
}

/* Dropdown Menu */
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #17191c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.dropdown-menu li a {
  display: block;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: #cbd5e1;
}

.dropdown-menu li a:hover {
  background-color: rgba(216, 137, 31, 0.12);
  color: var(--accent-gold);
}

/* Right Action: Phone & WhatsApp */
.header-contact-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 6px;
  flex-shrink: 0;
}

.header-phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #f1f5f9;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.phone-numbers {
  white-space: nowrap;
}

.header-phone-link:hover {
  color: var(--accent-gold);
}

.phone-icon {
  color: var(--accent-gold);
  font-size: 0.85rem;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--whatsapp-color);
  color: #ffffff;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}

.whatsapp-btn i {
  font-size: 1rem;
}

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

/* Keep desktop nav on one row between tablet and wide screens */
@media (min-width: 869px) and (max-width: 1280px) {
  .header-container {
    padding: 8px 12px;
    gap: 8px;
  }

  .brand-title {
    font-size: 1.2rem;
  }

  .brand-subtitle {
    font-size: 0.5rem;
    letter-spacing: 1.2px;
  }

  .brand-paw {
    width: 28px;
    height: 28px;
  }

  .main-navigation {
    gap: 8px;
  }

  .nav-list {
    gap: 0;
  }

  .nav-link {
    font-size: 0.74rem;
    padding: 8px 5px;
  }

  .header-phone-link {
    font-size: 0.7rem;
  }

  .phone-numbers {
    max-width: 11.5em;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .whatsapp-btn {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .whatsapp-btn span {
    display: none;
  }
}

@media (min-width: 869px) and (max-width: 1100px) {
  .header-phone-link .phone-numbers {
    display: none;
  }

  .header-phone-link .phone-icon {
    font-size: 0.95rem;
  }
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.mobile-nav-toggle span {
  width: 100%;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ==========================================================================
   2. HERO SECTION & HERO BANNER WITH BOOKING FORM
   ========================================================================== */
.hero-section.hero-banner-section {
  position: relative;
  width: 100%;
  min-height: auto;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 24px 0 38px 0;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 13, 16, 0.90) 0%, rgba(10, 13, 16, 0.82) 45%, rgba(10, 13, 16, 0.94) 100%);
  pointer-events: none;
}

.hero-inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Compact Top Hero Intro */
.hero-top-intro {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 16px auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(216, 137, 31, 0.16);
  border: 1px solid rgba(216, 137, 31, 0.5);
  color: var(--accent-gold);
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 5px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.badge-paw {
  font-size: 0.72rem;
}

.hero-top-intro .hero-main-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 5px;
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
}

.highlight-gold {
  color: var(--accent-gold);
  background: linear-gradient(90deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-top-intro .hero-subtitle {
  font-size: 0.86rem;
  color: #e2e8f0;
  line-height: 1.45;
  margin: 0 auto 8px auto;
  max-width: 680px;
  font-weight: 400;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-chips-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f1f5f9;
  padding: 3px 10px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: 700;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-chip i {
  color: var(--accent-gold);
  font-size: 0.72rem;
}

/* ---------------- 2-Card Symmetrical Grid ---------------- */
/* ---------------- 8-and-4 Base Hero Grid ---------------- */
.hero-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1.15fr);
  /* 8-and-4 ratio base */
  gap: 20px;
  align-items: stretch;
  /* Perfectly match heights of both cards */
  max-width: 1280px;
  margin: 0 auto;
}

.hero-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.price-chart-card.hero-card {
  justify-content: flex-start;
}

.card-header {
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-title-group {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-icon {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

.card-header h3 {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.15;
  text-transform: uppercase;
}

.header-sub {
  display: block;
  font-size: 0.65rem;
  color: #d1fae5;
  font-weight: 500;
  margin-top: 1px;
  margin-bottom: 0;
  letter-spacing: 0.2px;
}

/* Matching luxury forest green headers for BOTH cards */
.price-header,
.booking-header {
  background: linear-gradient(135deg, #14532d 0%, #0d381e 100%);
  border-bottom: 3px solid var(--accent-gold);
}

.price-header h2,
.booking-header h2,
.card-header.booking-header h2,
.card-header.price-header h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.2;
}

.tariff-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid #f59e0b;
  color: #fef08a;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.66rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.booking-hotline-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--accent-gold);
  color: #fef08a;
  padding: 3px 10px;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  flex-shrink: 0;
  white-space: nowrap;
}

.booking-hotline-pill:hover {
  background: var(--accent-gold);
  color: #111827;
}

.card-body {
  padding: 12px 14px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

/* Left price chart (beside calendar): slightly larger type + tighter spacing so height stays similar */
.price-chart-card .card-header {
  padding: 8px 12px;
}

.price-chart-card .card-header h2 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.2px;
  margin: 0;
  line-height: 1.15;
}

.price-chart-card .header-sub {
  font-size: 0.72rem;
  margin-top: 0;
  line-height: 1.2;
}

.price-chart-card .tariff-tag {
  font-size: 0.7rem;
  padding: 2px 7px;
}

.price-chart-card .header-icon {
  width: 28px;
  height: 28px;
  font-size: 0.88rem;
}

.price-chart-card .card-body {
  padding: 8px 11px 9px;
  gap: 6px;
  justify-content: flex-start;
}

.price-chart-card .price-table.modern-price-table {
  margin-bottom: 0;
}

.price-chart-card .price-table.modern-price-table th {
  font-size: 0.78rem;
  padding: 5px 8px;
}

.price-chart-card .price-table.modern-price-table td {
  font-size: 0.84rem;
  padding: 5px 8px;
  line-height: 1.25;
}

.price-chart-card .booking-tier {
  gap: 0;
}

.price-chart-card .booking-tier strong {
  font-size: 0.84rem;
  line-height: 1.2;
}

.price-chart-card .booking-tier .tier-sub {
  font-size: 0.72rem;
  line-height: 1.2;
}

.price-chart-card .badge-tatkal-tag {
  font-size: 0.66rem;
  padding: 0 4px;
}

.price-chart-card .price-val {
  font-size: 0.9rem;
}

.price-chart-card .tier-days,
.price-chart-card .badge-na {
  font-size: 0.72rem;
}

.price-chart-card .price-rules-block {
  margin: 0;
  padding: 8px 10px;
}

.price-chart-card .rules-headline {
  font-size: 0.86rem;
  margin-bottom: 6px;
  letter-spacing: 0.2px;
}

.price-chart-card .live-rules-list {
  font-size: 0.84rem;
  line-height: 1.45;
}

.price-chart-card .live-rules-list li {
  margin-bottom: 5px;
  padding-left: 18px;
}

.price-chart-card .live-rules-list li:last-child {
  margin-bottom: 0;
}

.price-chart-card .live-rules-list li i {
  font-size: 0.78rem;
  top: 4px;
}

.price-chart-card .safari-shifts-card.compact-shifts {
  padding: 8px 10px;
  margin-bottom: 0;
}

.price-chart-card .shifts-title {
  font-size: 0.84rem;
  margin-bottom: 6px;
}

.price-chart-card .shifts-grid-2 {
  gap: 8px;
}

.price-chart-card .shift-pill {
  padding: 6px 8px;
  gap: 6px;
}

.price-chart-card .shift-pill strong {
  font-size: 0.82rem;
}

.price-chart-card .shift-pill span {
  font-size: 0.78rem;
}

.price-chart-card .terms-callout-box {
  margin-bottom: 0;
  padding: 8px 10px;
}

.price-chart-card .terms-header {
  font-size: 0.84rem;
  margin-bottom: 5px;
}

.price-chart-card .terms-bullets {
  font-size: 0.82rem;
  line-height: 1.4;
  padding-left: 16px;
}

.price-chart-card .terms-bullets li {
  margin-bottom: 4px;
}

.price-chart-card .terms-bullets li:last-child {
  margin-bottom: 0;
}

.price-chart-card .price-action-row {
  margin-top: 2px;
  gap: 6px;
}

/* ---------------- Left Card (8 Columns): Modern Price Table ---------------- */
.price-table.modern-price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}

.price-table.modern-price-table th {
  background-color: #f1f5f9;
  color: #0f172a;
  font-weight: 800;
  font-size: 0.70rem;
  padding: 6px 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 2px solid #cbd5e1;
}

.price-table.modern-price-table th i {
  color: var(--accent-gold);
  margin-right: 4px;
}

.price-table.modern-price-table td {
  padding: 6px 10px;
  color: #334155;
  font-weight: 600;
  font-size: 0.76rem;
  border-bottom: 1px solid #e2e8f0;
  vertical-align: middle;
}

.price-table.modern-price-table tbody tr:hover {
  background-color: #f8fafc;
}

.booking-tier {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.booking-tier strong {
  font-size: 0.74rem;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.booking-tier .tier-sub {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 500;
}

.badge-tatkal-tag {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 1px 5px;
  border-radius: 4px;
  font-size: 0.60rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tr-tatkal-tier {
  background-color: #fffdf5;
}

.tr-tatkal-tier:hover {
  background-color: #fefce8 !important;
}

.tier-days {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 600;
  display: block;
}

.price-val {
  font-weight: 800;
  color: #15803d;
  font-size: 0.80rem;
}

.price-val.price-weekend {
  color: #c2410c;
  font-weight: 800;
}

.price-val.price-tatkal {
  color: #b45309;
  font-weight: 800;
}

.badge-na {
  background: #f1f5f9;
  color: #94a3b8;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 700;
}

/* Operational Rules Block */
.price-rules-block {
  margin: 0;
  padding: 6px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.rules-headline {
  font-size: 0.70rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.rules-headline i {
  color: var(--accent-gold);
}

.live-rules-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.69rem;
  color: #334155;
  line-height: 1.45;
}

.live-rules-list li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 3px;
}

.live-rules-list li:last-child {
  margin-bottom: 0;
}

.live-rules-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--accent-gold);
  font-size: 0.68rem;
}

/* Daily Safari Shifts Ribbon (3 Columns) */
.safari-shifts-card.compact-shifts {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 6px 9px;
  margin-bottom: 0;
}

.shifts-title {
  font-size: 0.68rem;
  font-weight: 800;
  color: #166534;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.shifts-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.shift-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #ffffff;
  padding: 4px 7px;
  border-radius: 6px;
  border: 1px solid #dcfce7;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.shift-pill i {
  color: var(--accent-gold);
  font-size: 0.8rem;
}

.shift-pill strong {
  display: block;
  font-size: 0.68rem;
  color: #0f172a;
  line-height: 1.1;
}

.shift-pill span {
  display: block;
  font-size: 0.65rem;
  color: #166534;
  font-weight: 700;
}

/* Terms and Conditions Box */
.terms-callout-box {
  margin-bottom: 0;
  padding: 6px 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
}

.terms-header {
  font-size: 0.70rem;
  font-weight: 800;
  color: #b45309;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.terms-bullets {
  margin: 0;
  padding-left: 17px;
  font-size: 0.69rem;
  color: #78350f;
  line-height: 1.4;
}

.terms-bullets li {
  margin-bottom: 2px;
}

.terms-bullets li:last-child {
  margin-bottom: 0;
}

/* Helpline and Footer Action Row */
.price-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 4px;
  border-top: 1px dashed #e2e8f0;
}

.btn-terms-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #475569;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: underline;
  transition: var(--transition);
}

.btn-terms-link:hover {
  color: #15803d;
}

.price-help-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #15803d;
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.price-help-pill:hover {
  color: #0f5421;
  text-decoration: underline;
}

/* ---------------- Right Card: Compact Calendar Widget ---------------- */
.calendar-widget {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 9px;
  margin-bottom: 7px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding: 0 2px;
}

.cal-title-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}

.cal-title-wrapper i {
  color: var(--accent-gold);
  font-size: 0.78rem;
}

.cal-month-title {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.cal-arrow {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  color: #334155;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.75rem;
}

.cal-arrow:hover {
  background: #15803d;
  color: #ffffff;
  border-color: #15803d;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.74rem;
  font-weight: 800;
  color: #64748b;
  margin-bottom: 4px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 4px;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

/* Clean, modern circular date buttons */
.cal-day {
  width: 30px;
  height: 30px;
  margin: 1px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
  border: 1px solid transparent;
  color: #334155;
  background: transparent;
}

/* Hover over available days */
.cal-day.day-avail:hover {
  background: #dcfce7;
  color: #15803d;
  border-color: #86efac;
  transform: scale(1.12);
  font-weight: 700;
}

/* Today indicator */
.cal-day.day-today {
  border-color: var(--accent-gold);
  color: #b45309;
  font-weight: 800;
}

/* Selected Date */
.cal-day.day-selected {
  background: #15803d !important;
  color: #ffffff !important;
  font-weight: 800;
  box-shadow: 0 2px 8px rgba(21, 128, 61, 0.45);
  transform: scale(1.12);
}

/* Past Dates */
.cal-day.day-disabled {
  color: #cbd5e1;
  background: transparent;
  cursor: not-allowed;
  opacity: 0.35;
  text-decoration: line-through;
}

/* Live OA tariff estimate under booking form */
.safari-fare-estimate {
  margin: 6px 0 10px;
}
.safari-fare-estimate .fare-estimate-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.72rem;
  color: #166534;
  line-height: 1.35;
}
.safari-fare-estimate .fare-estimate-inner strong {
  color: #14532d;
  font-size: 0.78rem;
}
.safari-fare-estimate .fare-estimate-total {
  font-weight: 800;
  color: #15803d;
  font-size: 0.84rem;
}
.safari-fare-estimate em {
  font-style: normal;
  opacity: 0.75;
  font-weight: 600;
}

/* OA / Forest desk closed dates — muted, no red mark */
.cal-day.day-blocked,
.cal-day.day-forest-closed {
  color: #94a3b8;
  background: #f1f5f9;
  border-color: transparent;
  cursor: not-allowed;
  opacity: 0.55;
  text-decoration: none;
  font-weight: 600;
}

.cal-day.day-blocked:hover,
.cal-day.day-forest-closed:hover {
  transform: none;
  background: #f1f5f9;
}

/* Tuesday / Wednesday — no red highlight (zones filtered in form) */
.cal-day.day-tuesday {
  color: inherit;
  background: transparent;
}

.cal-day.day-blank {
  background: transparent;
  cursor: default;
}

/* Compact selected date chip */
.calendar-selected-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  margin-top: 6px;
  text-align: center;
  line-height: 1.35;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.calendar-selected-badge .cal-badge-label {
  font-weight: 700;
}

.calendar-selected-badge.is-error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.calendar-selected-badge.is-error i,
.calendar-selected-badge.is-error strong {
  color: #b91c1c;
}

.calendar-selected-badge.is-ok {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

/* ---------------- Compact Booking Form ---------------- */
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.booking-form label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 2px;
}

.booking-form label i {
  color: var(--accent-gold);
  font-size: 0.74rem;
}

.booking-form input,
.booking-form select {
  width: 100%;
  height: 38px;
  padding: 6px 10px;
  background: #ffffff;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #15803d;
  box-shadow: 0 0 0 2px rgba(21, 128, 61, 0.15);
}

.form-actions-row {
  display: flex;
  gap: 8px;
  margin-top: 5px;
}

.btn-book-now {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #15803d 0%, #166534 100%);
  color: #ffffff;
  padding: 10px 14px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(21, 128, 61, 0.3);
  transition: var(--transition);
}

.btn-book-now:hover {
  background: linear-gradient(135deg, #166534 0%, #0f5421 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(21, 128, 61, 0.4);
}

.btn-whatsapp-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--whatsapp-color);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(37, 211, 102, 0.25);
  transition: var(--transition);
}

.btn-whatsapp-quick:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(37, 211, 102, 0.35);
  color: #ffffff;
}

/* Quick Stats Bar */
.hero-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: rgba(14, 16, 18, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.72rem;
  color: #cbd5e1;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.16);
}

/* ---------------- Dedicated Booking & Fares Section ---------------- */
.booking-section-wrapper {
  padding: 55px 0 65px 0;
  background-color: #f7f4ee;
  border-bottom: 1px solid var(--light-border);
}

.section-header-block {
  margin-bottom: 35px;
}

.sub-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: #b45309;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-subtitle-text {
  font-size: 0.9rem;
  color: #4b5563;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ==========================================================================
   3. ABOUT TADOBA SECTION
   ========================================================================== */
.about-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px -6px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-img-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-frame:hover img {
  transform: scale(1.04);
}

.about-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  padding: 12px 18px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.about-floating-badge i {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.about-floating-badge strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.about-floating-badge span {
  font-size: 0.72rem;
  color: #cbd5e1;
}

.about-content-col .sub-badge {
  margin-bottom: 8px;
}

.about-lead {
  font-size: 1rem;
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 600;
}

.about-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 26px;
}

.about-actions-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-about-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(24, 122, 50, 0.25);
  transition: var(--transition);
}

.btn-about-primary:hover {
  background: linear-gradient(135deg, #df891c 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(223, 137, 28, 0.35);
  color: #ffffff;
}

.btn-about-outline {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-about-outline:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
  color: #0f172a;
}

/* ==========================================================================
   4. 4 QUICK INFO HIGHLIGHTS BAR
   ========================================================================== */
.highlights-bar-section {
  padding: 35px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.highlight-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.highlight-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3.5px;
  background: linear-gradient(90deg, #187a32, #df891c);
  transition: width 0.35s ease;
}

.highlight-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px -6px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.highlight-item:hover::before {
  width: 100%;
}

.highlight-icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(5, 150, 105, 0.14);
  transition: all 0.35s ease;
}

.highlight-item:hover .highlight-icon-box {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
  box-shadow: 0 6px 14px rgba(217, 119, 6, 0.2);
}

.highlight-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.1px;
  color: #b45309;
  background: #fffbeb;
  border: 1px solid #fef3c7;
  padding: 2px 9px;
  border-radius: 20px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.highlight-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.3px;
  margin-bottom: 5px;
}

.highlight-text {
  font-size: 0.77rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   5. POPULAR SAFARI ZONES
   ========================================================================== */
.zones-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.zones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.zone-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  perspective: 1200px;
}

.zone-card:hover {
  box-shadow: 0 20px 36px -8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(24, 122, 50, 0.25);
  border-color: #cbd5e1;
}

.zone-flip-card {
  overflow: visible;
  background: transparent;
  border: none;
  box-shadow: none;
  min-height: 420px;
}

.zone-flip-card:hover {
  box-shadow: none;
  border-color: transparent;
}

.zone-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.zone-flip-card.is-flipped .zone-flip-inner {
  transform: rotateY(180deg);
}

.zone-flip-front,
.zone-flip-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.zone-flip-card:hover .zone-flip-front,
.zone-flip-card.is-flipped .zone-flip-back {
  box-shadow: 0 20px 36px -8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(24, 122, 50, 0.25);
  border-color: #cbd5e1;
}

.zone-flip-front {
  z-index: 2;
}

.zone-flip-back {
  transform: rotateY(180deg);
  z-index: 1;
  background: linear-gradient(165deg, #0f3d1f 0%, #166534 48%, #14532d 100%);
  border-color: #166534;
  color: #ffffff;
}

.zone-back-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px 20px 18px;
}

.zone-flip-back .zone-name {
  color: #ffffff;
  margin-bottom: 8px;
}

.zone-back-lead {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 14px;
}

.zone-back-list {
  list-style: none;
  margin: 0 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zone-back-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.zone-back-list li i {
  margin-top: 2px;
  color: #86efac;
  flex-shrink: 0;
}

.zone-back-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.zone-flip-back .btn-zone-action {
  background: linear-gradient(135deg, #df891c 0%, #b45309 100%);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.btn-zone-know-more,
.btn-zone-flip-back {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-zone-know-more {
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(24, 122, 50, 0.25);
}

.btn-zone-know-more:hover {
  background: linear-gradient(135deg, #df891c 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(223, 137, 28, 0.35);
  color: #ffffff;
}

.btn-zone-know-more i {
  font-size: 0.8rem;
  transition: transform 0.35s ease;
}

.btn-zone-know-more:hover i {
  transform: rotate(90deg);
}

.btn-zone-flip-back {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.btn-zone-flip-back:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
}

@media (max-width: 1100px) {
  .zone-flip-card,
  .zone-flip-inner {
    min-height: 440px;
  }
}

@media (max-width: 768px) {
  .zone-flip-card,
  .zone-flip-inner {
    min-height: 400px;
  }
}

.zone-img-box {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  overflow: hidden;
  position: relative;
}

.zone-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.zone-flip-card:not(.is-flipped):hover .zone-img-box img {
  transform: scale(1.08);
}

.zone-flip-front .zone-info {
  margin-top: auto;
}

.zone-img-box::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%);
  pointer-events: none;
}

.zone-badge-overlay {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  pointer-events: none;
}

.zone-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.2px;
}

.core-chip {
  background: rgba(22, 101, 52, 0.9);
  color: #ffffff;
  border: 1px solid rgba(134, 239, 172, 0.4);
}

.sighting-chip {
  background: rgba(180, 83, 9, 0.9);
  color: #ffffff;
  border: 1px solid rgba(253, 224, 71, 0.4);
}

.water-chip {
  background: rgba(3, 105, 161, 0.9);
  color: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.4);
}

.flora-chip {
  background: rgba(4, 120, 87, 0.9);
  color: #ffffff;
  border: 1px solid rgba(110, 231, 183, 0.4);
}

.photo-chip {
  background: rgba(109, 40, 217, 0.9);
  color: #ffffff;
  border: 1px solid rgba(216, 180, 254, 0.4);
}

.zone-info {
  padding: 22px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

.zone-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.zone-desc {
  font-size: 0.79rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}

.zone-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.zone-features span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 11px;
  border-radius: 8px;
}

.zone-features span i {
  color: var(--primary-green);
  font-size: 0.75rem;
}

.btn-zone-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 18px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 800;
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 14px rgba(24, 122, 50, 0.25);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-zone-action:hover {
  background: linear-gradient(135deg, #df891c 0%, #b45309 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(223, 137, 28, 0.35);
  color: #ffffff;
}

.btn-zone-action i {
  font-size: 0.8rem;
  transition: transform 0.25s ease;
}

.btn-zone-action:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   6. 3-COLUMN INFO GRID (Geographical, Distance, How to Reach)
   ========================================================================== */
.info-grid-section {
  padding: 32px 0 36px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.info-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.info-box-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 18px 16px 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.info-box-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.info-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.info-header-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 2px 8px rgba(24, 122, 50, 0.12);
  flex-shrink: 0;
}

.info-box-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.3px;
  margin: 0;
}

/* Card 1: Geographical details */
.info-items-list.modern-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.modern-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid #f8fafc;
}

.modern-list li:last-child {
  border-bottom: none;
}

.item-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.modern-list strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #1e293b;
}

.modern-list p {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 1px;
  line-height: 1.35;
}

/* Card 2: Road Distances */
.info-items-list.distance-list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.distance-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 11px;
  border-radius: 9px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.distance-list li:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.dist-city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #1e293b;
  font-size: 0.8rem;
}

.dist-city i {
  color: var(--primary-green);
  font-size: 0.75rem;
}

.dist-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

.km-badge {
  background: rgba(24, 122, 50, 0.1);
  color: #15803d;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
}

.time-badge {
  background: rgba(217, 119, 6, 0.1);
  color: #b45309;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 5px;
}

/* Card 3: How to reach */
.info-items-list.travel-modes {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.travel-modes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 11px;
  border-radius: 11px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.travel-modes li:hover {
  background: #ffffff;
  border-color: #cbd5e1;
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.travel-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.air-badge {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0284c7;
}

.train-badge {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
}

.road-badge {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #16a34a;
}

.travel-details {
  flex-grow: 1;
}

.travel-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}

.travel-title-wrap strong {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
}

.mode-tag {
  background: #e2e8f0;
  color: #475569;
  font-size: 0.58rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.2px;
}

.travel-details p {
  font-size: 0.72rem;
  color: #64748b;
  line-height: 1.35;
  margin: 0;
}

/* ==========================================================================
   7. TOUR PACKAGES & RESORTS
   ========================================================================== */
.packages-resorts-section {
  padding: 26px 0 30px 0;
  background-color: #ffffff;
}

.dual-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.modern-feature-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.modern-feature-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 10px 24px -4px rgba(0, 0, 0, 0.08);
}

.feature-header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid #f1f5f9;
}

.card-pre-title {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.3px;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}

.feature-card-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: 0.3px;
  margin: 0;
}

.feature-badge {
  background: #fffbeb;
  color: #b45309;
  border: 1px solid #fef3c7;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.feature-card-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.feature-list-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Tour Packages List */
.packages-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.package-list-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 11px;
  transition: all 0.25s ease;
}

.package-list-item:hover {
  background: #ffffff;
  border-color: var(--primary-green);
  transform: translateX(3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.pkg-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(24, 122, 50, 0.18);
}

.pkg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.pkg-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  display: block;
}

.pkg-days {
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 500;
  display: block;
  margin-top: 1px;
}

.pkg-price-box {
  text-align: right;
}

.pkg-price {
  font-size: 0.86rem;
  font-weight: 900;
  color: #b45309;
  display: block;
}

.pkg-sub {
  font-size: 0.58rem;
  color: #94a3b8;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
}

/* Resorts List */
.resorts-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.resort-list-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 6px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 11px;
  transition: all 0.25s ease;
}

.resort-list-item:hover {
  background: #ffffff;
  border-color: #df891c;
  transform: translateX(3px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.resort-thumb-wrap {
  position: relative;
  flex-shrink: 0;
}

.resort-thumb {
  width: 52px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
}

.thumb-star {
  position: absolute;
  bottom: -3px;
  right: -3px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 0.56rem;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 5px;
  border: 1px solid #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.resort-name {
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1px;
}

.resort-sub {
  font-size: 0.68rem;
  color: #64748b;
  line-height: 1.25;
}

.media-frame {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  height: 100%;
  min-height: 155px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.media-frame img {
  width: 100%;
  height: 100%;
  min-height: 155px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-frame:hover img {
  transform: scale(1.05);
}

.media-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 5px 11px;
  border-radius: 16px;
  font-size: 0.66rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.btn-feature-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  background: #f1f5f9;
  color: #1e293b;
  border: 1px solid #cbd5e1;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: 8px;
}

.btn-feature-modern:hover {
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(24, 122, 50, 0.22);
}

/* ==========================================================================
   8. WHY CHOOSE US & FAQs
   ========================================================================== */
.trust-faq-section {
  padding: 26px 0 30px 0;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.modern-trust-card,
.modern-faq-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.trust-content-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.trust-list-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modern-trust-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modern-trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 1px 0;
}

.trust-check-bubble {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  flex-shrink: 0;
  box-shadow: 0 2px 5px rgba(21, 128, 61, 0.12);
}

.modern-trust-list strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
}

.modern-trust-list p {
  font-size: 0.7rem;
  color: #64748b;
  margin-top: 1px;
  line-height: 1.3;
}

.trust-img-wrap {
  position: relative;
  border-radius: 13px;
  overflow: hidden;
  height: 100%;
  min-height: 175px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 175px;
  object-fit: cover;
}

.floating-trust-pill {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 7px 11px;
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.floating-trust-pill i {
  color: #22c55e;
  font-size: 0.82rem;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f8fafc;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
  border-color: #f59e0b;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
  border-left: 3px solid #f59e0b;
}

.faq-header {
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  transition: color 0.2s ease;
}

.faq-item.active .faq-header {
  color: var(--primary-green);
}

.faq-arrow {
  font-size: 0.72rem;
  color: #94a3b8;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #f59e0b;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 12px;
}

.faq-item.active .faq-body {
  max-height: 200px;
  padding: 0 12px 9px 12px;
}

.faq-body p {
  font-size: 0.72rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   9. MAP & BLOGS SECTION
   ========================================================================== */
.map-blogs-section {
  padding: 26px 0 30px 0;
  background-color: #ffffff;
}

.modern-map-card,
.modern-blogs-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

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

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.blog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px -3px rgba(0, 0, 0, 0.09);
  border-color: #cbd5e1;
}

.blog-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

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

.blog-cat-chip {
  position: absolute;
  top: 7px;
  left: 7px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: #ffffff;
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.blog-content {
  padding: 9px 9px 10px 9px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-read-time {
  font-size: 0.62rem;
  color: #94a3b8;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 8px;
  flex-grow: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary-green);
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-link:hover {
  color: var(--accent-gold);
  gap: 8px;
}

/* ==========================================================================
   10. CTA BANNER SECTION
   ========================================================================== */
.cta-banner-section {
  position: relative;
  width: 100%;
  background-image: url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 28px 0;
  border-top: 2px solid var(--accent-gold);
  overflow: hidden;
}

.cta-banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(8, 14, 10, 0.93) 0%, rgba(10, 20, 13, 0.85) 50%, rgba(8, 14, 10, 0.93) 100%);
  pointer-events: none;
  z-index: 1;
}

.cta-banner-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-left-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cta-paw-decor,
.cta-right-paw {
  width: 32px;
  height: 32px;
  opacity: 0.75;
  flex-shrink: 0;
}

.paw-icon {
  width: 100%;
  height: 100%;
  filter: invert(70%) sepia(85%) saturate(360%) hue-rotate(359deg) brightness(95%) contrast(90%);
}

.cta-tiger-thumb {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 10px rgba(216, 137, 31, 0.4);
  flex-shrink: 0;
}

.cta-tiger-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.cta-subtitle {
  font-size: 0.85rem;
  color: #e2e8f0;
  margin-top: 4px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-cta-book {
  background: linear-gradient(90deg, #df891c 0%, #d87c11 100%);
  color: #ffffff;
  padding: 9px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(223, 137, 28, 0.35);
}

.btn-cta-book:hover {
  background: linear-gradient(90deg, #c97914 0%, #b86608 100%);
  transform: translateY(-1px);
}

.btn-cta-whatsapp {
  background-color: var(--whatsapp-color);
  color: #ffffff;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-cta-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   11. SITE FOOTER
   ========================================================================== */
.site-footer {
  background-color: #101214;
  color: #cbd5e1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 24px 35px 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
  gap: 30px;
}

.footer-brand-desc {
  margin-top: 14px;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 260px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer-nav-list,
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.78rem;
}

.footer-nav-list li a,
.footer-contact-list li a {
  color: #94a3b8;
  transition: var(--transition);
}

.footer-nav-list li a:hover,
.footer-contact-list li a:hover {
  color: var(--accent-gold);
  padding-left: 2px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
}

.footer-contact-list li i {
  color: var(--accent-gold);
  font-size: 0.8rem;
  width: 14px;
}

/* Footer Bottom Bar */
.footer-bottom-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  background-color: #0b0c0e;
}

.footer-bottom-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.74rem;
  color: #64748b;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-social-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social-links a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   12. MODAL DIALOG (Terms & Conditions)
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-window {
  background-color: #ffffff;
  width: 100%;
  max-width: 600px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: modalFadeIn 0.25s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-header {
  background-color: #111315;
  color: #ffffff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
}

.modal-close-btn {
  background: transparent;
  border: none;
  color: #9ca3af;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.modal-body {
  padding: 20px;
  max-height: 70vh;
  overflow-y: auto;
  font-size: 0.85rem;
  color: #374151;
  line-height: 1.6;
}

.modal-body h4 {
  margin-bottom: 10px;
  color: #111827;
}

.modal-body ul {
  padding-left: 20px;
  list-style: disc;
}

.modal-body li {
  margin-bottom: 8px;
}

.modal-footer {
  padding: 12px 20px;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  text-align: right;
}

.btn-agree-modal {
  background-color: var(--primary-green);
  color: #ffffff;
  border: none;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
}

.btn-agree-modal:hover {
  background-color: var(--primary-green-hover);
}

/* ==========================================================================
   11. INNER PAGES COMMON DESIGN SYSTEM & SIDEBAR
   ========================================================================== */
.page-hero-banner {
  background: linear-gradient(135deg, #0d1a11 0%, #15291b 50%, #0c1810 100%);
  padding: 38px 0 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.page-hero-banner::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: radial-gradient(circle at right center, rgba(216, 137, 31, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-container {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #94a3b8;
  margin-bottom: 10px;
}

.breadcrumb-nav a {
  color: #cbd5e1;
  text-decoration: none;
  transition: var(--transition);
}

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

.breadcrumb-separator {
  color: #64748b;
  font-size: 0.68rem;
}

.breadcrumb-current {
  color: var(--accent-gold);
}

.page-main-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.page-subtitle-text {
  font-size: 0.88rem;
  color: #94a3b8;
  max-width: 760px;
  line-height: 1.5;
}

/* Two-Column Page Layout */
.page-layout-section {
  padding: 40px 0 60px 0;
  background-color: #ffffff;
}

.page-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 32px;
  align-items: flex-start;
}

/* Main Content Area */
.page-main-col {
  min-width: 0;
  width: 100%;
  background: #ffffff;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.7;
}

.page-main-col h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 28px 0 12px 0;
  letter-spacing: 0.2px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f1f5f9;
}

.page-main-col h2:first-child {
  margin-top: 0;
}

.page-main-col h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin: 20px 0 10px 0;
}

.page-main-col p {
  margin-bottom: 14px;
}

.page-main-col ul,
.page-main-col ol {
  margin-bottom: 16px;
  padding-left: 20px;
}

.page-main-col li {
  margin-bottom: 8px;
}

/* Feature & Alert Boxes */
.content-alert-box {
  background-color: #f0fdf4;
  border-left: 4px solid var(--primary-green);
  padding: 16px 18px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0;
  font-size: 0.86rem;
  color: #14532d;
}

.content-alert-box strong {
  color: #0f172a;
}

.content-alert-warning {
  background-color: #fffbeb;
  border-left-color: var(--accent-gold);
  color: #78350f;
}

/* Content Image Showcase Grid */
.content-image-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 22px 0;
}

.content-img-card {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  border: 1px solid #e2e8f0;
}

.content-img-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.content-img-card:hover img {
  transform: scale(1.04);
}

/* Standard Content Tables */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.modern-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  text-align: left;
}

.modern-table th {
  background-color: #0f172a;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 14px;
  letter-spacing: 0.3px;
  border: 1px solid #1e293b;
  text-transform: uppercase;
}

.modern-table td {
  padding: 11px 14px;
  border: 1px solid #e2e8f0;
  color: #334155;
  vertical-align: middle;
}

.modern-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.modern-table tr:hover {
  background-color: #f1f5f9;
}

/* Sidebar Styling — common sticky + scrollable on desktop */
.page-sidebar-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: start;
}

.sidebar-sticky-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 992px) {
  .page-sidebar-col {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(26, 126, 55, 0.45) transparent;
  }

  .page-sidebar-col::-webkit-scrollbar {
    width: 5px;
  }

  .page-sidebar-col::-webkit-scrollbar-thumb {
    background: rgba(26, 126, 55, 0.4);
    border-radius: 10px;
  }

  .page-sidebar-col::-webkit-scrollbar-track {
    background: transparent;
  }
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.sidebar-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-card-title i {
  color: var(--accent-gold);
}

/* Sidebar Fast Enquiry Form */
.sidebar-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-form .form-group {
  margin-bottom: 0;
}

.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: 0.8rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  outline: none;
  transition: var(--transition);
  background-color: #f8fafc;
  color: #0f172a;
}

.sidebar-form input:focus,
.sidebar-form select:focus,
.sidebar-form textarea:focus {
  border-color: var(--primary-green);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(24, 122, 50, 0.12);
}

.btn-sidebar-submit {
  width: 100%;
  padding: 10px 14px;
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.84rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(24, 122, 50, 0.25);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-sidebar-submit:hover {
  background: linear-gradient(135deg, #1f943e 0%, #146e2e 100%);
  transform: translateY(-1px);
}

/* Sidebar Directory Links */
.sidebar-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-links-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #334155;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-links-list li a:hover {
  background-color: #ecfdf5;
  color: var(--primary-green);
  border-color: #a7f3d0;
  transform: translateX(3px);
}

.sidebar-links-list li a i {
  color: #94a3b8;
  font-size: 0.7rem;
  transition: var(--transition);
}

.sidebar-links-list li a:hover i {
  color: var(--primary-green);
  opacity: 1;
  transform: translateX(2px);
}

.sidebar-links-list li a.is-active {
  background: rgba(24, 122, 50, 0.1);
  border-color: rgba(24, 122, 50, 0.28);
  color: var(--primary-green);
  font-weight: 700;
}

.sidebar-links-list li a.is-active i {
  color: var(--primary-green);
  opacity: 1;
}

.sidebar-links-list li.sidebar-featured-item a {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border: 1px solid #86efac;
  color: #14532d;
  font-weight: 700;
  padding: 10px 12px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.1);
}

.sidebar-links-list li.sidebar-featured-item a:hover {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border-color: #4ade80;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.18);
}

.sidebar-links-list li.sidebar-all-gates-item a:hover {
  background-color: rgba(24, 122, 50, 0.14) !important;
  border-color: var(--primary-green) !important;
}

/* Jeep page: booking procedure list + image equal-height align */
.procedure-side-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: stretch;
}

.procedure-side-text {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.procedure-checklist {
  list-style: none;
  margin: 0;
  padding: 18px 18px 16px;
  background: #ffffff;
  border: 1px solid #dbe4d8;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}

.procedure-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.55;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.procedure-checklist li:last-child {
  border-bottom: none;
  padding-bottom: 2px;
}

.procedure-checklist li i {
  color: var(--primary-green);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.procedure-side-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.procedure-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.procedure-side-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 26, 14, 0.28) 100%);
  pointer-events: none;
}

/* Sidebar 24/7 Helpline Box */
.sidebar-help-box {
  background: linear-gradient(135deg, #091a0e 0%, #112a19 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(216, 137, 31, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sidebar-help-box h4 {
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sidebar-help-box p {
  font-size: 0.76rem;
  color: #cbd5e1;
  margin-bottom: 12px;
  line-height: 1.4;
}

.sidebar-helpline-number {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  margin-bottom: 8px;
  transition: var(--transition);
}

.sidebar-helpline-number:hover {
  color: var(--accent-gold);
}

.btn-sidebar-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 9px 12px;
  background-color: #25d366;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 6px;
  transition: var(--transition);
}

.btn-sidebar-wa:hover {
  background-color: #20ba5a;
  transform: translateY(-1px);
}

/* ==========================================================================
   12. SPECIALIZED CATALOGS (PACKAGES, HOTELS, PAYMENT, CONTACT)
   ========================================================================== */
/* Tour Packages Catalog */
.packages-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.tour-catalog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.tour-catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.tour-card-media {
  position: relative;
  height: 180px;
  overflow: hidden;
}

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

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

.tour-duration-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
  letter-spacing: 0.2px;
}

.tour-card-body {
  padding: 16px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.35;
}

.tour-specs-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.76rem;
  color: #64748b;
  margin-bottom: 14px;
}

.tour-specs-list span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.tour-specs-list span i {
  color: var(--primary-green);
  font-size: 0.72rem;
}

.tour-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.tour-price-box {
  display: flex;
  flex-direction: column;
}

.tour-price-label {
  font-size: 0.62rem;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.tour-price-val {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-green);
}

.tour-card-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-shrink: 0;
}

.btn-tour-details {
  padding: 8px 14px;
  font-size: 0.76rem;
  font-weight: 700;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #334155;
  text-decoration: none;
  background: #fff;
  text-align: center;
  transition: var(--transition);
}

.btn-tour-details:hover {
  border-color: var(--primary-green);
  color: var(--primary-green);
}

.btn-tour-book {
  padding: 8px 14px;
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 8px;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
}

.btn-tour-book:hover {
  background: linear-gradient(135deg, #1f943e 0%, #146e2e 100%);
}

/* Mobile: price row, then full-width Details + Book Now */
@media (max-width: 768px) {
  .tour-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .tour-price-box {
    width: 100%;
  }

  .tour-card-footer > div:last-child,
  .tour-card-actions {
    display: flex !important;
    width: 100%;
    gap: 8px;
  }

  .tour-card-footer > div:last-child > a,
  .tour-card-actions > a,
  .btn-tour-details,
  .btn-tour-book {
    flex: 1 1 0;
    width: 100%;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-size: 0.82rem;
    white-space: nowrap;
  }
}

/* Hotel Catalog Grid */
.hotels-catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 24px;
}

.hotel-catalog-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.hotel-catalog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.hotel-card-media {
  position: relative;
  height: 180px;
}

.hotel-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-tier-chip {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--primary-green);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 800;
}

.hotel-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-card-title {
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.hotel-rating-stars {
  color: #eab308;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.hotel-amenities-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}

.hotel-amenities-pills span {
  font-size: 0.64rem;
  font-weight: 600;
  background-color: #f1f5f9;
  color: #475569;
  padding: 3px 7px;
  border-radius: 6px;
}

/* Payment Confirmation Page */
.payment-card-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  max-width: 780px;
  margin: 0 auto;
}

.payment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.payment-form-grid .form-full-width {
  grid-column: span 2;
}

.payment-form-grid label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.payment-form-grid input,
.payment-form-grid select,
.payment-form-grid textarea {
  width: 100%;
  padding: 11px 14px;
  font-size: 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background-color: #f8fafc;
  color: #0f172a;
  outline: none;
  transition: var(--transition);
}

.payment-form-grid input:focus,
.payment-form-grid select:focus,
.payment-form-grid textarea:focus {
  border-color: var(--primary-green);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(24, 122, 50, 0.14);
}

.btn-confirm-payment {
  width: 100%;
  padding: 13px 20px;
  background: linear-gradient(135deg, #187a32 0%, #115e27 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(24, 122, 50, 0.3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-confirm-payment:hover {
  background: linear-gradient(135deg, #1f943e 0%, #146e2e 100%);
  transform: translateY(-1px);
}

.payment-security-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 18px;
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}

.payment-security-badges i {
  color: var(--primary-green);
}

/* Contact Page Grid */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: flex-start;
}

.contact-info-card {
  background: linear-gradient(135deg, #091a0e 0%, #132e1c 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 30px 24px;
  border: 1px solid rgba(216, 137, 31, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.contact-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.contact-method-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-method-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(216, 137, 31, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-text h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.contact-method-text p,
.contact-method-text a {
  font-size: 0.86rem;
  color: #ffffff;
  text-decoration: none;
  line-height: 1.45;
}

.contact-method-text a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   DETAIL PAGES: TOUR PACKAGES & HOTELS DESIGN SYSTEM
   ========================================================================== */

/* Immersive Hero Header */
.detail-hero-banner {
  position: relative;
  background-size: cover;
  background-position: center 35%;
  color: #ffffff;
  padding: 44px 0 34px 0;
  overflow: hidden;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 14, 10, 0.94) 0%, rgba(15, 23, 18, 0.88) 60%, rgba(10, 16, 12, 0.95) 100%);
  z-index: 1;
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.detail-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.detail-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.detail-pill-badge.gold {
  background: rgba(216, 137, 31, 0.25);
  border-color: rgba(216, 137, 31, 0.5);
  color: #fbbf24;
}

.detail-pill-badge.green {
  background: rgba(46, 125, 50, 0.35);
  border-color: rgba(74, 222, 128, 0.4);
  color: #86efac;
}

.detail-main-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.22;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.detail-subtitle-text {
  font-size: 0.88rem;
  color: #cbd5e1;
  max-width: 840px;
  line-height: 1.5;
  margin-bottom: 18px;
}

/* Quick Specs Ribbon */
.detail-quick-specs-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
}

.quick-spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-spec-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(216, 137, 31, 0.25);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  flex-shrink: 0;
}

.quick-spec-meta {
  display: flex;
  flex-direction: column;
}

.quick-spec-label {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.quick-spec-val {
  font-size: 0.8rem;
  font-weight: 800;
  color: #ffffff;
}

/* Detail Page Layout Grid */
.detail-layout-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 20px 50px 20px;
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 28px;
  align-items: start;
}

/* Main Content Section Cards */
.detail-main-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-section-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.03);
}

.detail-section-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
}

.detail-section-heading i {
  color: var(--primary-green);
  font-size: 1.15rem;
}

/* Tour Highlights Feature Tiles */
.highlights-tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 12px;
}

.highlight-tile-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  transition: all 0.2s ease;
}

.highlight-tile-item:hover {
  border-color: #cbd5e1;
  background: #f1f5f9;
  transform: translateY(-2px);
}

.highlight-tile-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.highlight-tile-text h4 {
  font-size: 0.8rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2px;
}

.highlight-tile-text p {
  font-size: 0.72rem;
  color: #64748b;
  margin: 0;
  line-height: 1.35;
}

/* Day-by-Day Timeline */
.itinerary-timeline-wrapper {
  position: relative;
  padding-left: 20px;
}

.itinerary-timeline-wrapper::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 7px;
  width: 2px;
  background: #cbd5e1;
}

.timeline-day-card {
  position: relative;
  margin-bottom: 18px;
}

.timeline-day-card:last-child {
  margin-bottom: 0;
}

.timeline-node-bullet {
  position: absolute;
  top: 14px;
  left: -20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid var(--primary-green);
  z-index: 2;
  box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.2);
}

.timeline-day-inner {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  transition: all 0.2s ease;
}

.timeline-day-inner:hover {
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.timeline-day-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.timeline-day-title-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-day-badge {
  background: var(--primary-green);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.timeline-day-title {
  font-size: 0.92rem;
  font-weight: 800;
  color: #0f172a;
}

.timeline-meal-pills {
  display: flex;
  align-items: center;
  gap: 6px;
}

.meal-pill {
  background: #e2e8f0;
  color: #475569;
  font-size: 0.64rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.timeline-day-desc {
  font-size: 0.8rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Inclusions & Exclusions Matrix */
.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.inc-card {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px 18px;
}

.exc-card {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 16px 18px;
}

.inc-exc-title {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inc-card .inc-exc-title {
  color: #166534;
}

.exc-card .inc-exc-title {
  color: #991b1b;
}

.inc-exc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.inc-exc-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.77rem;
  line-height: 1.4;
}

.inc-card .inc-exc-list li {
  color: #14532d;
}

.exc-card .inc-exc-list li {
  color: #7f1d1d;
}

.inc-exc-list li i {
  font-size: 0.84rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.inc-card .inc-exc-list li i {
  color: #16a34a;
}

.exc-card .inc-exc-list li i {
  color: #dc2626;
}

/* Sticky Booking Sidebar */
.detail-sticky-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-pricing-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.sidebar-price-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-price-tag-wrap {
  display: flex;
  flex-direction: column;
}

.sidebar-price-tag-wrap .label {
  font-size: 0.65rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 700;
}

.sidebar-price-tag-wrap .amount {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: #fbbf24;
}

.sidebar-price-tag-wrap .unit {
  font-size: 0.65rem;
  color: #cbd5e1;
}

.sidebar-form-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.sidebar-quick-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sq-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sq-form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #334155;
}

.sq-form-group input,
.sq-form-group select {
  padding: 8px 11px;
  font-size: 0.78rem;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  color: #0f172a;
  font-family: inherit;
  transition: all 0.2s ease;
}

.sq-form-group input:focus,
.sq-form-group select:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.12);
}

.btn-sidebar-reserve {
  width: 100%;
  padding: 11px 16px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.25);
  transition: all 0.2s ease;
  margin-top: 4px;
}

.btn-sidebar-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(46, 125, 50, 0.35);
}

.sidebar-contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.btn-side-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  background: #f1f5f9;
  color: #0f172a;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-side-call:hover {
  background: #e2e8f0;
}

.btn-side-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  background: #25d366;
  color: #ffffff;
  border-radius: 8px;
  font-size: 0.74rem;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-side-wa:hover {
  background: #1ebc59;
}

/* Hotel Gallery Showcase */
.hotel-gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 12px;
  margin-bottom: 22px;
}

.hotel-gallery-main {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
}

.hotel-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.hotel-gallery-thumbs {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.hotel-gallery-thumb-item {
  height: 135px;
  border-radius: 10px;
  overflow: hidden;
}

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

.hotel-gallery-thumb-item:hover img {
  transform: scale(1.04);
}

/* Room Categories Grid */
.hotel-rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 14px;
}

.hotel-room-card {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.hotel-room-media {
  height: 140px;
  overflow: hidden;
  position: relative;
}

.hotel-room-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hotel-room-body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.hotel-room-title {
  font-size: 0.88rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.hotel-room-spec-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.hotel-room-spec-chips span {
  background: #f1f5f9;
  color: #475569;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
}

.hotel-room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}

.hotel-room-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-green);
}

/* ==========================================================================
   TIGER STORIES BANNER SECTION (Matches Reference Design)
   ========================================================================== */
.tiger-stories-banner-section {
  background: #0d0e10;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tiger-stories-banner-section .site-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.tiger-stories-inner {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 250px;
  gap: 20px;
}

/* Left: Dramatic Tiger Face Visual */
.tiger-stories-visual {
  position: relative;
  flex: 0 0 230px;
  height: 250px;
  overflow: hidden;
  display: flex;
  align-items: center;
  margin-left: -20px;
}

.tiger-stories-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
  display: block;
}

.tiger-stories-gradient-fade {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  background: linear-gradient(to right, rgba(13, 14, 16, 0) 0%, #0d0e10 100%);
  pointer-events: none;
}

/* Middle: Content */
.tiger-stories-content {
  flex: 1 1 320px;
  padding: 24px 10px;
  z-index: 2;
}

.tiger-stories-heading {
  font-family: var(--font-heading);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 10px;
  line-height: 1.3;
}

.tiger-stories-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: #d1d5db;
  margin-bottom: 18px;
  max-width: 440px;
}

.btn-read-tiger-stories {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  background: #f59e0b;
  color: #111315;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
}

.btn-read-tiger-stories:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.5);
  color: #000;
}

/* Right: 4 Tiger Cards Grid */
.tiger-stories-cards {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding: 20px 0;
  z-index: 2;
}

.tiger-story-card {
  width: 122px;
  background: #111417;
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.tiger-story-card:hover {
  border-color: #f59e0b;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6), 0 0 12px rgba(245, 158, 11, 0.2);
}

.tiger-card-thumb {
  width: 100%;
  height: 105px;
  overflow: hidden;
  background: #000;
}

.tiger-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.tiger-story-card:hover .tiger-card-thumb img {
  transform: scale(1.08);
}

.tiger-card-meta {
  padding: 8px 6px;
  text-align: center;
  background: #0c0f12;
}

.tiger-card-meta .tiger-name {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #f59e0b;
  margin-bottom: 2px;
  line-height: 1.2;
}

.tiger-card-meta .tiger-role {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  font-weight: 500;
  line-height: 1.2;
}

/* Tiger Modal Styling */
.tiger-modal-window {
  max-width: 840px;
  background: #121519;
  color: #ffffff;
  border: 1px solid rgba(245, 158, 11, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
  border-radius: 12px;
  overflow: hidden;
}

.tiger-modal-header {
  background: #181c22;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 22px;
}

.tiger-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #f59e0b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}

.tiger-modal-header h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-family: var(--font-heading);
  margin: 0;
}

.tiger-modal-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #0d1014;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tiger-tab-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 10px;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: #94a3b8;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.tiger-tab-btn img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.tiger-tab-btn:hover {
  color: #f59e0b;
  background: rgba(255, 255, 255, 0.02);
}

.tiger-tab-btn.active {
  color: #f59e0b;
  border-bottom-color: #f59e0b;
  background: rgba(245, 158, 11, 0.08);
}

.tiger-modal-body {
  padding: 24px;
  background: #121519;
}

.tiger-tab-pane {
  display: none;
}

.tiger-tab-pane.active {
  display: block;
  animation: fadeInTiger 0.3s ease;
}

@keyframes fadeInTiger {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.tiger-detail-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.tiger-detail-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.tiger-spec-tags {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tiger-spec-tags .spec-tag {
  background: #1a1f26;
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.74rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tiger-spec-tags .spec-tag i {
  color: #f59e0b;
}

.tiger-detail-text h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: #f59e0b;
  margin-bottom: 12px;
}

.tiger-detail-text p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.tiger-safari-tip {
  background: rgba(245, 158, 11, 0.1);
  border-left: 3px solid #f59e0b;
  padding: 10px 14px;
  border-radius: 0 6px 6px 0;
  margin: 16px 0 20px 0;
  font-size: 0.82rem;
  color: #e2e8f0;
}

.tiger-safari-tip strong {
  color: #f59e0b;
  display: block;
  margin-bottom: 2px;
}

.btn-tiger-safari {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: #f59e0b;
  color: #0f172a;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.25s ease;
}

.btn-tiger-safari:hover {
  background: #fbbf24;
  transform: translateX(4px);
  color: #000;
}

/* ==========================================================================
   SAFARI BOOKING PAGE - INTRO SHOWCASE & GUIDELINE CARDS
   ========================================================================== */
.safari-showcase-section {
  padding: 50px 0 30px 0;
  background: #ffffff;
}

.safari-showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
}

.safari-showcase-img-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.safari-showcase-img-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.safari-showcase-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.safari-showcase-badge i {
  color: #f59e0b;
  font-size: 1.1rem;
}

.safari-showcase-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 16px;
}

.safari-showcase-content p {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.safari-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.safari-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e293b;
  background: #f8fafc;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.safari-feature-item i {
  color: #16a34a;
  font-size: 0.95rem;
}

/* Safari Guidelines & Notes Section (Matches Kaziranga Reference Design) */
.safari-guidelines-section {
  padding: 40px 0 60px 0;
  background: #f8fafc;
}

.safari-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: start;
}

.safari-info-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.safari-info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.safari-info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #14532d;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  line-height: 1.35;
}

.safari-info-card h3 i {
  color: #16a34a;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.safari-info-card h3.section-spacer {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px dashed #e2e8f0;
}

.safari-check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}

.safari-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.55;
}

.safari-check-list li i {
  color: #16a34a;
  font-size: 0.85rem;
  margin-top: 4px;
  flex-shrink: 0;
}

.safari-formalities-box {
  background: #f8fafc;
  border-left: 4px solid #16a34a;
  border-radius: 0 10px 10px 0;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.65;
}

.safari-formalities-box p {
  margin: 0;
}

.safari-help-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 14px 18px;
  border-radius: 12px;
  color: #065f46;
  margin-top: 20px;
}

.safari-help-strip i {
  font-size: 1.6rem;
  color: #10b981;
  flex-shrink: 0;
}

.safari-help-strip strong {
  display: block;
  font-size: 0.88rem;
  color: #064e3b;
  margin-bottom: 2px;
}

.safari-help-strip p {
  margin: 0;
  font-size: 0.82rem;
  color: #047857;
}

.safari-help-strip a {
  color: #047857;
  font-weight: 800;
  text-decoration: underline;
}

/* ==========================================================================
   PAYMENT PAGE ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ choice-based tariff + checkout (payment-tadoba.php)
   ========================================================================== */
.pay-hero {
  position: relative;
  padding: 42px 0 36px;
  color: #fff;
  overflow: hidden;
}

.pay-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(12, 28, 18, 0.92) 0%, rgba(15, 17, 19, 0.78) 48%, rgba(26, 126, 55, 0.35) 100%),
    url('../images/hero-bg.jpg') center 28% / cover no-repeat;
  transform: scale(1.02);
  animation: payHeroDrift 18s ease-in-out infinite alternate;
}

@keyframes payHeroDrift {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translateY(-1.5%); }
}

.pay-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.pay-breadcrumb {
  justify-content: center;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.pay-breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.pay-breadcrumb a:hover {
  color: #fff;
}

.pay-breadcrumb .breadcrumb-current {
  color: #fff;
}

.pay-hero-brand {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #f0e6d2;
  margin: 0 0 6px;
}

.pay-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3.2vw, 2.15rem);
  font-weight: 800;
  margin: 0 0 10px;
  line-height: 1.2;
}

.pay-hero-sub {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.payment-portal-wrapper {
  padding: 36px 0 64px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(26, 126, 55, 0.07), transparent 60%),
    var(--light-bg);
}

.payment-steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto 32px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--light-border);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.payment-step-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #9ca3af;
}

.payment-step-badge.done {
  color: var(--primary-green);
}

.payment-step-badge.active {
  color: var(--text-dark);
}

.payment-step-badge.active .step-num {
  background: var(--primary-green);
  color: #fff;
}

.step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #ebe6dc;
  color: #6b7280;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.payment-step-badge.done .step-num {
  background: rgba(26, 126, 55, 0.14);
  color: var(--primary-green);
}

.step-divider-arrow {
  width: 28px;
  height: 1px;
  background: #ddd4c4;
}

/* ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ Choice-based tariff selection ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ¢ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ */
.pay-tariff-section {
  max-width: 1160px;
  margin: 0 auto 28px;
}

.pay-section-head {
  text-align: center;
  margin-bottom: 20px;
}

.pay-section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.pay-section-head p {
  margin: 0 auto;
  max-width: 540px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.pay-tariff-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.pay-tariff-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
  padding: 18px 16px 16px;
  min-height: 148px;
  background: #fff;
  border: 1.5px solid var(--light-border);
  border-radius: 14px;
  cursor: pointer;
  font-family: var(--font-main);
  color: var(--text-dark);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.pay-tariff-card:hover {
  border-color: rgba(26, 126, 55, 0.45);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.pay-tariff-card.active {
  border-color: var(--primary-green);
  background: linear-gradient(180deg, #f3faf5 0%, #ffffff 55%);
  box-shadow: 0 0 0 1px var(--primary-green), 0 12px 28px rgba(26, 126, 55, 0.12);
  transform: translateY(-2px);
}

.pay-tariff-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  background: rgba(26, 126, 55, 0.12);
  color: var(--primary-green);
}

.pay-tariff-tag--gold {
  background: rgba(216, 137, 31, 0.16);
  color: #a65f0c;
}

.pay-tariff-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  padding-right: 48px;
}

.pay-tariff-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pay-tariff-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.02em;
  margin-top: auto;
}

.pay-tariff-price--custom {
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-gold);
}

.pay-tariff-note {
  font-size: 0.7rem;
  color: #8b919a;
}

.pay-tariff-check {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ebe6dc;
  color: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.pay-tariff-card.active .pay-tariff-check {
  background: var(--primary-green);
  color: #fff;
  transform: scale(1.08);
}

.pay-tariff-card--custom {
  border-style: dashed;
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.pay-custom-amount {
  margin-top: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 12px;
  animation: payPanelIn 0.28s ease;
}

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

.pay-custom-amount label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pay-custom-amount-row {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 14px;
  align-items: center;
}

.pay-amount-input input {
  font-size: 1.05rem !important;
  font-weight: 700;
}

.pay-custom-hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.payment-checkout-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr;
  gap: 24px;
  align-items: start;
  max-width: 1160px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .payment-portal-wrapper {
    padding: 20px 0 40px;
  }

  .payment-steps-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    max-width: 100%;
    gap: 4px;
    padding: 10px 8px;
  }

  .payment-checkout-layout {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .checkout-summary-card {
    position: static;
    top: auto;
  }
}

@media (max-width: 640px) {
  .payment-step-badge {
    font-size: 0.7rem;
    gap: 5px;
  }

  .checkout-form-card,
  .checkout-summary-card {
    padding: 16px 12px;
  }
}

.checkout-summary-card {
  position: sticky;
  top: 88px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: var(--shadow-md);
}

.summary-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border-subtle);
  margin-bottom: 16px;
}

.summary-card-header img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--light-border);
}

.summary-title-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 5px;
  line-height: 1.3;
}

.summary-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(26, 126, 55, 0.1);
  color: var(--primary-green);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.pay-inclusions {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.pay-inclusions li,
.summary-details-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: #3d434b;
  margin-bottom: 8px;
  line-height: 1.4;
}

.pay-inclusions li i,
.summary-details-list li i {
  color: var(--primary-green);
  font-size: 0.78rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.checkout-breakdown-box {
  background: linear-gradient(180deg, #f7f4ee 0%, #fbf9f4 100%);
  border: 1px solid var(--light-border);
  border-radius: 12px;
  padding: 16px 16px 14px;
  margin-bottom: 16px;
}

.breakdown-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 9px;
}

.breakdown-line strong {
  color: var(--text-dark);
  font-weight: 700;
}

.breakdown-free .free-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary-green);
  background: rgba(26, 126, 55, 0.12);
  padding: 3px 8px;
  border-radius: 999px;
}

.breakdown-line.total-line {
  border-top: 1px solid #e4dccf;
  padding-top: 12px;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
}

.breakdown-line.total-line .amount-highlight {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-green);
  letter-spacing: -0.02em;
}

.checkout-helpline-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: linear-gradient(135deg, #fff8eb 0%, #fff 100%);
  border: 1px solid rgba(216, 137, 31, 0.28);
  padding: 14px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  color: #7a5420;
}

.checkout-helpline-card > i {
  font-size: 1.25rem;
  color: var(--accent-gold);
  margin-top: 2px;
}

.checkout-helpline-card strong {
  display: block;
  color: #5c3d12;
  margin-bottom: 2px;
}

.checkout-helpline-card a {
  color: var(--accent-gold-hover);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkout-form-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  padding: 28px 26px;
  box-shadow: var(--shadow-md);
}

.checkout-form-header {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--card-border-subtle);
}

.checkout-form-header h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.checkout-form-header p {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin: 0;
}

.pay-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 18px;
}

.pay-fieldset legend {
  display: block;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3d434b;
  margin-bottom: 8px;
  padding: 0;
}

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

.payment-method-card {
  position: relative;
  border: 1.5px solid var(--light-border);
  border-radius: 10px;
  padding: 11px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.payment-method-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-method-card:hover {
  border-color: #c9bfad;
}

.payment-method-card.selected {
  border-color: var(--primary-green);
  background: #f3faf5;
  box-shadow: 0 0 0 1px var(--primary-green);
}

.method-icon-wrap i {
  font-size: 1.15rem;
  color: var(--primary-green);
}

.method-info strong {
  display: block;
  font-size: 0.82rem;
  color: var(--text-dark);
}

.method-info span {
  font-size: 0.7rem;
  color: var(--text-muted);
}

.checkout-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 16px;
}

.checkout-fields-grid .field-full {
  grid-column: span 2;
}

.checkout-field-wrap label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: #3d434b;
  margin-bottom: 6px;
}

.checkout-field-wrap .req {
  color: #c2410c;
}

.checkout-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.checkout-input-group .input-icon {
  position: absolute;
  left: 14px;
  color: #9ca3af;
  font-size: 0.88rem;
  pointer-events: none;
}

.checkout-input-group .input-icon--top {
  top: 14px;
}

.checkout-input-group input,
.checkout-input-group select,
.checkout-input-group textarea {
  width: 100%;
  padding: 11px 14px 11px 38px;
  font-size: 0.88rem;
  font-family: var(--font-main);
  border: 1px solid #ddd4c4;
  border-radius: 10px;
  background: #fbf9f4;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.checkout-input-group textarea {
  resize: vertical;
  min-height: 72px;
}

.checkout-input-group input:focus,
.checkout-input-group select:focus,
.checkout-input-group textarea:focus {
  border-color: var(--primary-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 126, 55, 0.12);
}

.pay-policy-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #fff7f2;
  border: 1px solid #f3d9c8;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 18px;
  font-size: 0.78rem;
  color: #7c3a1d;
  line-height: 1.45;
}

.pay-policy-note i {
  color: #c2410c;
  margin-top: 2px;
  flex-shrink: 0;
}

.pay-policy-note p {
  margin: 0;
}

.btn-proceed-checkout {
  width: 100%;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-hover) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(26, 126, 55, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-proceed-checkout:hover {
  background: linear-gradient(135deg, #1f943e 0%, var(--primary-green) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(26, 126, 55, 0.4);
}

.btn-proceed-checkout:active {
  transform: translateY(0);
}

.checkout-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 18px;
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
}

.checkout-trust-logos span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.checkout-trust-logos i {
  color: var(--primary-green);
}

.pay-assurance-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1160px;
  margin: 36px auto 0;
}

.pay-assurance-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--light-border);
  border-radius: 12px;
}

.pay-assurance-item > i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(26, 126, 55, 0.1);
  color: var(--primary-green);
  font-size: 0.95rem;
}

.pay-assurance-item:nth-child(2) > i {
  background: rgba(216, 137, 31, 0.14);
  color: var(--accent-gold);
}

.pay-assurance-item strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.pay-assurance-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1180px) {
  .pay-tariff-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pay-tariff-card--custom {
    grid-column: span 1;
  }
}

/* ==========================================================================
   TADOBA NEWS & BLOG SYSTEM STYLES
   ========================================================================== */

/* ---------------- News Hero Section ---------------- */
.news-hero-section {
  position: relative;
  background: linear-gradient(135deg, #092810 0%, #11421e 50%, #185a2b 100%);
  color: #ffffff;
  padding: 55px 0 65px;
  overflow: hidden;
  border-bottom: 3px solid var(--accent-gold);
}

.news-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 85% 20%, rgba(216, 137, 31, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.news-hero-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.news-breadcrumb {
  margin-bottom: 18px;
}

.news-breadcrumb a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-breadcrumb a:hover {
  color: var(--accent-gold);
}

.news-breadcrumb .breadcrumb-separator {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
}

.news-breadcrumb .breadcrumb-current {
  color: var(--accent-gold);
  font-size: 0.88rem;
  font-weight: 600;
}

.news-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 137, 31, 0.2);
  border: 1px solid rgba(216, 137, 31, 0.5);
  color: #ffd27d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.news-hero-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.news-hero-subtitle {
  font-size: 1.12rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 820px;
}

.news-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.news-hero-stats .stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 40px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.news-hero-stats .stat-pill:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.news-hero-stats .stat-pill i {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

.news-hero-stats .stat-num {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.news-hero-stats .stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* ---------------- News Main Content ---------------- */
.news-main-section {
  padding: 50px 0 80px;
  background-color: #f7f6f2;
}

.news-grid-heading {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #0f172a;
  margin: 8px 0 8px;
  text-align: center;
}

.news-grid-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 28px;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---------------- Featured Story Card ---------------- */
.news-featured-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5dfd2;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 50px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 126, 55, 0.12);
  border-color: #bcdbc3;
}

.featured-card-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 380px;
}

.featured-image-col {
  position: relative;
  overflow: hidden;
}

.featured-img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.news-featured-card:hover .featured-main-img {
  transform: scale(1.05);
}

.featured-glow-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  background: linear-gradient(135deg, #d8891f 0%, #b86e0c 100%);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 14px rgba(216, 137, 31, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.featured-content-col {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  color: #64748b;
  margin-bottom: 14px;
}

.featured-meta-top .category-pill {
  background: rgba(26, 126, 55, 0.1);
  color: var(--primary-green);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 4px 10px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-meta-top .meta-dot {
  color: #cbd5e1;
}

.featured-story-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.35;
  color: #1e293b;
  margin-bottom: 16px;
}

.featured-story-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.featured-story-title a:hover {
  color: var(--primary-green);
}

.featured-story-excerpt {
  font-size: 0.98rem;
  line-height: 1.68;
  color: #475569;
  margin-bottom: 24px;
}

.featured-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #f1ece1;
  margin-top: auto;
}

.featured-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-author .author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(26, 126, 55, 0.12);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
}

.featured-author .author-by {
  display: block;
  font-size: 0.72rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.featured-author .author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

.btn-read-featured {
  background: linear-gradient(135deg, var(--primary-green) 0%, #14662c 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(26, 126, 55, 0.28);
  transition: all 0.25s ease;
}

.btn-read-featured:hover {
  background: linear-gradient(135deg, #1f943e 0%, #177332 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(26, 126, 55, 0.38);
  gap: 12px;
}

/* ---------------- News Toolbar (Search & Filter) ---------------- */
.news-toolbar {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5dfd2;
  padding: 22px 26px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  margin-bottom: 24px;
}

.news-search-box {
  position: relative;
  margin-bottom: 20px;
}

.news-search-box .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 1.05rem;
}

.news-search-box input {
  width: 100%;
  height: 52px;
  padding: 0 46px 0 48px;
  border: 2px solid #e2ded5;
  border-radius: 30px;
  font-family: var(--font-main);
  font-size: 0.98rem;
  color: #1e293b;
  background-color: #faf9f6;
  outline: none;
  transition: all 0.25s ease;
}

.news-search-box input:focus {
  border-color: var(--primary-green);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(26, 126, 55, 0.12);
}

.news-search-box .search-clear-btn {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: #e2ded5;
  border: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.news-search-box .search-clear-btn:hover {
  background: #cbd5e1;
  color: #0f172a;
}

.news-category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-pill-btn {
  background: #faf8f5;
  border: 1px solid #e4ddd1;
  padding: 8px 16px;
  border-radius: 30px;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.category-pill-btn:hover {
  background: #f1ede4;
  color: #1e293b;
  border-color: #cbd5e1;
}

.category-pill-btn.active {
  background: var(--primary-green);
  color: #ffffff;
  border-color: var(--primary-green);
  box-shadow: 0 4px 14px rgba(26, 126, 55, 0.3);
}

.category-pill-btn .count-badge {
  background: rgba(0, 0, 0, 0.07);
  padding: 2px 7px;
  border-radius: 12px;
  font-size: 0.74rem;
  font-weight: 800;
}

.category-pill-btn.active .count-badge {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.news-results-status {
  margin-bottom: 22px;
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 500;
}

.news-results-status strong {
  color: var(--primary-green);
  font-weight: 800;
}

/* ---------------- News Cards Grid ---------------- */
.news-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e7e1d5;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(26, 126, 55, 0.1);
  border-color: #b7d6be;
}

.news-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #e2ded5;
}

.news-card-thumb a {
  display: block;
  width: 100%;
  height: 100%;
}

.news-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

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

.news-card-category-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(15, 30, 20, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffd27d;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 210, 125, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.news-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #788292;
  margin-bottom: 12px;
}

.news-card-dot {
  color: #cbd5e1;
}

.news-card-meta i {
  color: var(--primary-green);
  margin-right: 3px;
}

.news-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.42;
  color: #1e293b;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card-title a:hover {
  color: var(--primary-green);
}

.news-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.62;
  color: #556274;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1ece1;
  margin-top: auto;
}

.news-card-link {
  color: var(--primary-green);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.news-card-link:hover {
  color: var(--accent-gold);
  gap: 10px;
}

.news-card-share-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.news-card-share-btn:hover {
  background: #16a34a;
  color: #ffffff;
  transform: scale(1.1);
}

/* ---------------- Empty Results State ---------------- */
.news-empty-state {
  text-align: center;
  padding: 60px 20px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px dashed #d5cebf;
}

.news-empty-state .empty-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(26, 126, 55, 0.1);
  color: var(--primary-green);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.news-empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
}

.news-empty-state p {
  color: #64748b;
  max-width: 480px;
  margin: 0 auto 20px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.btn-reset-filters {
  background: var(--primary-green);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-reset-filters:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
}

/* ---------------- News Pagination ---------------- */
.news-pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 45px;
}

.page-num-btn,
.page-nav-btn {
  background: #ffffff;
  border: 1px solid #dcd5c7;
  color: #334155;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  height: 42px;
  min-width: 42px;
  padding: 0 14px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.page-num-btn:hover,
.page-nav-btn:hover:not(.disabled) {
  background: #f4f0e8;
  border-color: #cbd5e1;
  color: #0f172a;
}

.page-num-btn.active {
  background: var(--primary-green);
  border-color: var(--primary-green);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(26, 126, 55, 0.3);
}

.page-nav-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #f8fafc;
}

.page-dots {
  padding: 0 6px;
  color: #94a3b8;
  font-weight: 700;
}

/* ---------------- News Bottom CTA Banner ---------------- */
.news-bottom-cta-section {
  padding: 0 0 70px;
  background-color: #f7f6f2;
}

.news-bottom-cta-card {
  position: relative;
  background: linear-gradient(135deg, #092810 0%, #11421e 60%, #1a642e 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 48px 50px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(17, 66, 30, 0.22);
}

.bottom-cta-deco {
  position: absolute;
  right: -25px;
  bottom: -35px;
  font-size: 15rem;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.bottom-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.bottom-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(216, 137, 31, 0.25);
  border: 1px solid rgba(216, 137, 31, 0.5);
  color: #ffd27d;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.news-bottom-cta-card h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 14px;
}

.news-bottom-cta-card p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}

.bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn-bottom-book {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #bd7312 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(216, 137, 31, 0.4);
  transition: all 0.25s ease;
}

.btn-bottom-book:hover {
  background: linear-gradient(135deg, #e49326 0%, #ca7e17 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216, 137, 31, 0.55);
}

.btn-bottom-whatsapp {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
  transition: all 0.25s ease;
}

.btn-bottom-whatsapp:hover {
  background: #20bd59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   BLOG DETAIL PAGE STYLES
   ========================================================================== */
.blog-detail-hero {
  background: linear-gradient(135deg, #092810 0%, #11421e 55%, #185a2b 100%);
  color: #ffffff;
  padding: 45px 0 50px;
  border-bottom: 3px solid var(--accent-gold);
}

.blog-detail-hero .page-hero-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-hero-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-category-badge {
  background: rgba(216, 137, 31, 0.22);
  border: 1px solid rgba(216, 137, 31, 0.5);
  color: #ffd27d;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-read-time {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-hero-title {
  font-family: var(--font-heading);
  font-size: 2.35rem;
  font-weight: 800;
  line-height: 1.28;
  color: #ffffff;
  margin-bottom: 22px;
}

.blog-hero-author-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.blog-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-info .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.blog-author-info .author-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.blog-author-info .post-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.blog-quick-share {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-quick-share .share-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  margin-right: 4px;
}

.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
  transform: translateY(-2px) scale(1.08);
  opacity: 0.9;
}

.share-wa { background: #25d366; }
.share-fb { background: #1877f2; }
.share-tw { background: #0f1419; border: 1px solid rgba(255, 255, 255, 0.25); }
.share-copy { background: rgba(255, 255, 255, 0.2); }

/* ---------------- Blog Detail Content ---------------- */
.blog-layout-section {
  padding: 40px 0 60px;
  background-color: #fbf9f5;
}

.blog-main-col {
  min-width: 0;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e7e2d6;
  padding: 38px 42px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.blog-featured-image-wrapper {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid #e2ddd2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.blog-featured-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.blog-article-body {
  min-width: 0;
  width: 100%;
  font-size: 1.05rem;
  line-height: 1.82;
  color: #334155;
  word-break: break-word;
  overflow-wrap: break-word;
}

.blog-article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.35;
  color: #15331e;
  margin: 36px 0 16px;
  border-left: 4px solid var(--primary-green);
  padding-left: 14px;
}

.blog-article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.4;
  color: #1e293b;
  margin: 28px 0 12px;
}

.blog-article-body p {
  margin-bottom: 20px;
}

.blog-article-body ul,
.blog-article-body ol {
  margin: 18px 0 24px;
  padding-left: 24px;
}

.blog-article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-article-body a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(26, 126, 55, 0.4);
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.blog-article-body a:hover {
  color: var(--accent-gold);
  text-decoration-color: var(--accent-gold);
}

.blog-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 22px 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

/* ---------------- In-Article Safari CTA Card ---------------- */
.blog-safari-cta-card {
  position: relative;
  background: linear-gradient(135deg, #092810 0%, #124921 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 32px 36px;
  margin: 40px 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(18, 73, 33, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.blog-safari-cta-card .cta-card-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.blog-safari-cta-card .cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(216, 137, 31, 0.25);
  border: 1px solid rgba(216, 137, 31, 0.5);
  color: #ffd27d;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-safari-cta-card h3 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.blog-safari-cta-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 22px;
}

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

.btn-cta-primary {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #bd7312 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 14px rgba(216, 137, 31, 0.4);
  transition: all 0.2s ease;
}

.btn-cta-primary:hover {
  background: linear-gradient(135deg, #e59326 0%, #ca7e17 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(216, 137, 31, 0.5);
}

.btn-cta-outline {
  background: #25d366;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-cta-outline:hover {
  background: #20bd59;
  transform: translateY(-2px);
}

.cta-card-badge {
  position: absolute;
  right: 28px;
  top: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
}

.cta-card-badge i {
  color: var(--accent-gold);
  font-size: 1rem;
}

/* ---------------- Article Bottom Share & Topics ---------------- */
.blog-article-footer {
  padding: 24px 0;
  border-top: 1px solid #e7e2d6;
  border-bottom: 1px solid #e7e2d6;
  margin: 36px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-tags .tags-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
  margin-right: 4px;
}

.blog-tags .tag-link {
  background: #f1ede4;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.blog-tags .tag-link:hover {
  background: var(--primary-green);
  color: #ffffff;
}

.blog-bottom-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.blog-bottom-share span {
  font-size: 0.88rem;
  font-weight: 700;
  color: #475569;
}

.share-buttons-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-share-social {
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-share-social:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

.btn-share-wa { background: #25d366; }
.btn-share-fb { background: #1877f2; }
.btn-share-copy { background: #475569; }

/* ---------------- Blog Navigation Row ---------------- */
.blog-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-back-to-news {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1ede4;
  color: #1e293b;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-back-to-news:hover {
  background: #e5ded2;
  color: var(--primary-green);
  gap: 12px;
}

.btn-nav-safari {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-green);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(26, 126, 55, 0.28);
  transition: all 0.2s ease;
}

.btn-nav-safari:hover {
  background: var(--primary-green-hover);
  transform: translateY(-2px);
  gap: 12px;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS FOR NEWS & BLOG
   ========================================================================== */
@media (max-width: 1024px) {
  .featured-card-inner {
    grid-template-columns: 1fr;
  }
  .featured-image-col {
    height: 280px;
  }
  .news-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-hero-title {
    font-size: 2.2rem;
  }
  .blog-hero-title {
    font-size: 1.95rem;
  }
  .blog-main-col {
    padding: 28px 24px;
  }
}

@media (max-width: 768px) {
  .news-cards-grid {
    grid-template-columns: 1fr;
  }
  .news-hero-title {
    font-size: 1.85rem;
  }
  .news-hero-subtitle {
    font-size: 0.98rem;
  }
  .featured-content-col {
    padding: 24px 20px;
  }
  .featured-story-title {
    font-size: 1.35rem;
  }
  .news-toolbar {
    padding: 16px 14px;
  }
  .news-bottom-cta-card {
    padding: 32px 20px;
  }
  .news-bottom-cta-card h2 {
    font-size: 1.6rem;
  }
  .blog-hero-title {
    font-size: 1.6rem;
  }
  .blog-hero-author-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-safari-cta-card {
    padding: 24px 18px;
  }
  .cta-card-badge {
    position: static;
    margin-bottom: 14px;
  }
  .blog-bottom-share {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* ==========================================================================
   SIMPLE FREE PAYMENT PAGE (payment-tadoba.php) ÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂÃÂ like live gateway form
   ========================================================================== */
.simple-pay-hero {
  padding: 40px 0 28px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(12, 28, 18, 0.92) 0%, rgba(15, 17, 19, 0.82) 100%),
    url('../images/hero-bg.jpg') center 30% / cover no-repeat;
}

.simple-pay-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.simple-pay-hero p {
  margin: 0 auto;
  max-width: 480px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.simple-pay-crumb {
  justify-content: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
}

.simple-pay-crumb a { color: rgba(255, 255, 255, 0.7); }
.simple-pay-crumb .breadcrumb-current { color: #fff; }

.simple-pay-section {
  padding: 36px 0 64px;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(26, 126, 55, 0.06), transparent 55%),
    var(--light-bg);
}

.simple-pay-layout {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.simple-pay-form-card,
.simple-pay-aside-card {
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.simple-pay-form-card {
  padding: 28px 28px 24px;
}

.simple-pay-form-head {
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--card-border-subtle);
}

.simple-pay-form-head h2 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.simple-pay-form-head p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.simple-pay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-bottom: 22px;
}

.simple-pay-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #3d434b;
  margin-bottom: 6px;
}

.simple-pay-field .req { color: #c2410c; }

.simple-pay-field input,
.simple-pay-field select,
.simple-pay-field textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-main);
  font-size: 0.92rem;
  border: 1px solid #ddd4c4;
  border-radius: 10px;
  background: #fbf9f4;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.simple-pay-field textarea {
  resize: vertical;
  min-height: 84px;
}

.simple-pay-field input:focus,
.simple-pay-field select:focus,
.simple-pay-field textarea:focus {
  border-color: var(--primary-green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 126, 55, 0.12);
}

.simple-pay-input {
  position: relative;
}

.simple-pay-prefix {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  color: var(--primary-green);
  pointer-events: none;
}

.simple-pay-input input {
  padding-left: 32px;
  font-weight: 700;
  font-size: 1.05rem;
}

.simple-pay-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-hover) 100%);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(26, 126, 55, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.simple-pay-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(26, 126, 55, 0.38);
}

.simple-pay-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--text-muted);
}

.simple-pay-trust i { color: var(--primary-green); margin-right: 5px; }

.simple-pay-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 92px;
}

.simple-pay-aside-card {
  padding: 18px 18px 16px;
}

.simple-pay-aside-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text-dark);
}

.simple-pay-aside-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.simple-pay-aside-card li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.84rem;
  color: #3d434b;
  line-height: 1.45;
  margin-bottom: 10px;
}

.simple-pay-aside-card li i {
  color: var(--primary-green);
  margin-top: 3px;
  flex-shrink: 0;
}

.simple-pay-aside-card p {
  margin: 0 0 12px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.simple-pay-aside-help {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: linear-gradient(135deg, #fff8eb 0%, #fff 100%);
  border-color: rgba(216, 137, 31, 0.28);
}

.simple-pay-aside-help > i {
  font-size: 1.35rem;
  color: var(--accent-gold);
  margin-top: 2px;
}

.simple-pay-aside-help strong {
  display: block;
  font-size: 0.92rem;
  color: #5c3d12;
  margin-bottom: 2px;
}

.simple-pay-aside-help p {
  margin: 0 0 4px;
  font-size: 0.78rem;
}

.simple-pay-aside-help a {
  font-weight: 800;
  color: var(--accent-gold-hover);
  font-size: 1.05rem;
}

.simple-pay-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--primary-green);
}

.simple-pay-link:hover { color: var(--primary-green-hover); }

.checkout-loader {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(26, 126, 55, 0.2);
  border-top-color: var(--primary-green);
  border-radius: 50%;
  animation: simplePaySpin 0.8s linear infinite;
}

@keyframes simplePaySpin {
  to { transform: rotate(360deg); }
}

/* Full-page booking transition loader (home / jeep → safari-booking) */
.booking-page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(9, 26, 14, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 20px;
}

.booking-page-loader.is-visible {
  display: flex;
}

.booking-page-loader-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 32px;
  min-width: 260px;
  max-width: 360px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(26, 126, 55, 0.18);
}

.booking-page-loader-card .checkout-loader {
  margin: 0 auto 14px;
}

.booking-page-loader-text {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.35;
}

.booking-page-loader-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

body.booking-loader-open {
  overflow: hidden;
}

@media (max-width: 960px) {
  .simple-pay-layout {
    grid-template-columns: 1fr;
  }
  .simple-pay-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  .simple-pay-grid {
    grid-template-columns: 1fr;
  }
  .simple-pay-form-card {
    padding: 20px 16px;
  }
  .simple-pay-btn {
    width: 100%;
  }
}
