: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;
}
*,
*::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;
  text-rendering: optimizeSpeed;
}
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;
}
.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 {
  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;
}
.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;
}
.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);
}
.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);
}
@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;
  position: relative;
  z-index: 12001;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
}
.mobile-nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}
.hero-section.hero-banner-section {
  position: relative;
  width: 100%;
  min-height: auto;
  background-color: #0f1113;
  background-image: none;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 24px 0 38px 0;
  display: block;
  overflow: hidden;
}
.hero-lcp-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 13, 16, 0.9) 0%,
    rgba(10, 13, 16, 0.82) 45%,
    rgba(10, 13, 16, 0.94) 100%
  );
  pointer-events: none;
}
.hero-section.hero-banner-section:not(:has(.hero-lcp-img)) {
  background-image: url("../images/hero-bg.jpg");
  background-image: image-set(
    url("../images/hero-bg.webp") type("image/webp"),
    url("../images/hero-bg.jpg") type("image/jpeg")
  );
}
.hero-inner-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 16px;
}
.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;
}
.hero-booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
  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;
}
.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;
}
.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;
}
.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.7rem;
  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.6rem;
  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.8rem;
}
.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;
}
.price-rules-block {
  margin: 0;
  padding: 6px 10px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.rules-headline {
  font-size: 0.7rem;
  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;
}
.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-callout-box {
  margin-bottom: 0;
  padding: 6px 10px;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
}
.terms-header {
  font-size: 0.7rem;
  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;
}
.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;
}
.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;
  min-height: 210px;
}
.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;
}
.cal-day.day-avail:hover {
  background: #dcfce7;
  color: #15803d;
  border-color: #86efac;
  transform: scale(1.12);
  font-weight: 700;
}
.cal-day.day-today {
  border-color: var(--accent-gold);
  color: #b45309;
  font-weight: 800;
}
.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);
}
.cal-day.day-disabled {
  color: #cbd5e1;
  background: transparent;
  cursor: not-allowed;
  opacity: 0.35;
  text-decoration: line-through;
}
.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;
}
.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;
}
.cal-day.day-tuesday {
  color: inherit;
  background: transparent;
}
.cal-day.day-blank {
  background: transparent;
  cursor: default;
}
.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;
}
.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-row-full {
  grid-template-columns: 1fr;
}
.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;
}
.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);
}
.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;
}
.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;
}
.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;
}
.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: 0;
    height: auto;
  }
  .zone-flip-front,
  .zone-flip-back {
    position: relative;
    inset: auto;
    height: auto;
    transform: none;
  }
  .zone-flip-back {
    display: none;
  }
  .zone-flip-card.is-flipped .zone-flip-inner {
    transform: none;
  }
  .zone-flip-card.is-flipped .zone-flip-front {
    display: none;
  }
  .zone-flip-card.is-flipped .zone-flip-back {
    display: flex;
    transform: none;
  }
  .zone-flip-front .zone-info {
    margin-top: 0;
  }
  .zone-info,
  .zone-desc {
    flex-grow: 0;
  }
  .zone-desc {
    margin-bottom: 8px;
  }
}
.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);
}
.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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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 {
  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;
  width: 52px;
  height: 40px;
}
.resort-thumb-wrap picture {
  display: block;
  width: 52px;
  height: 40px;
}
.resort-thumb {
  width: 52px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.06);
  display: block;
  background: #e8f5e9;
}
.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);
}
.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 {
  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: 12px 14px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0f172a;
  transition: color 0.2s ease;
  position: relative;
  z-index: 2;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(26, 126, 55, 0.12);
  -webkit-appearance: none;
  appearance: none;
}
.faq-header span {
  flex: 1;
  pointer-events: none;
}
.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);
  pointer-events: none;
  flex-shrink: 0;
}
.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: #f59e0b;
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 12px;
}
.faq-item.active .faq-body {
  max-height: 640px;
  padding: 0 12px 12px 12px;
}
.faq-body p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.45;
  margin: 0;
}
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0;
}
.faq-accordion-container details,
.page-faq-item {
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
}
.faq-accordion-container summary,
.page-faq-summary {
  font-weight: 800;
  font-size: 0.95rem;
  color: #0f172a;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(26, 126, 55, 0.12);
}
.faq-accordion-container summary::-webkit-details-marker,
.page-faq-summary::-webkit-details-marker {
  display: none;
}
.faq-accordion-container summary::marker,
.page-faq-summary::marker {
  content: "";
  display: none;
}
.faq-accordion-container summary span,
.page-faq-summary span {
  flex: 1;
  pointer-events: none;
}
.faq-accordion-container summary i,
.page-faq-summary i {
  color: var(--accent-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
  pointer-events: none;
}
.faq-accordion-container details[open] summary i,
.page-faq-item[open] .page-faq-summary i {
  transform: rotate(180deg);
}
.faq-accordion-container details > p,
.page-faq-body p {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #475569;
  line-height: 1.6;
}
.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);
  min-height: 220px;
  background: #e8f5e9;
}
.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;
}
.cta-banner-section {
  position: relative;
  width: 100%;
  background-image: url("../images/hero-bg.jpg");
  background-image: image-set(
    url("../images/hero-bg.webp") type("image/webp"),
    url("../images/hero-bg.jpg") type("image/jpeg")
  );
  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);
}
.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 {
  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);
}
.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);
}
.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;
}
.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;
}
.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;
}
.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-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);
}
.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;
}
.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-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-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;
}
.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-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);
}
.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%);
}
@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;
  }
}
.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-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 {
  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-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;
}
.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-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;
}
.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;
}
.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;
}
.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;
}
.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;
}
.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-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);
}
.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 {
  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;
}
.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;
}
.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;
}
.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-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-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-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;
}
@media (max-width: 1024px) {
  .hero-container {
    gap: 20px;
  }
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .packages-catalog-grid,
  .hotels-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-layout-grid {
    grid-template-columns: 1fr 300px;
    gap: 24px;
  }
  .dual-feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-container {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 868px) {
  .mobile-top-header {
    display: block;
  }
  .mobile-nav-toggle {
    display: flex;
  }
  .site-header {
    overflow: visible;
  }
  .header-container {
    position: relative;
    z-index: 12002;
  }
  .main-navigation {
    position: fixed !important;
    top: 86px;
    left: 0;
    width: 100%;
    height: calc(100vh - 86px);
    max-height: calc(100vh - 86px);
    background-color: #111315;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
    overflow-y: auto;
    z-index: 12000;
    visibility: hidden;
    pointer-events: none;
    flex: none;
    min-height: 0;
  }
  .main-navigation.nav-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  body.nav-drawer-open {
    overflow: hidden;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 10px;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal;
    font-size: 0.95rem;
  }
  .whatsapp-btn span {
    display: inline;
  }
  .header-phone-link .phone-numbers {
    display: inline;
    max-width: none;
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background-color: #1a1d21;
    border: none;
    box-shadow: none;
    padding: 5px 0 5px 15px;
    display: none;
  }
  .has-dropdown.dropdown-open .dropdown-menu {
    display: block;
  }
  .header-contact-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    margin-left: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero-section {
    min-height: 420px;
    padding: 45px 0 50px 0;
  }
  .hero-main-title {
    font-size: 1.8rem;
    line-height: 1.24;
  }
  .hero-subtitle {
    font-size: 0.88rem;
  }
  .hero-stats-bar {
    flex-wrap: wrap;
    gap: 16px;
    padding: 12px 18px;
  }
  .stat-divider {
    display: none;
  }
  .stat-item {
    min-width: 110px;
  }
  .hero-container,
  .booking-fares-grid,
  .hero-booking-grid {
    grid-template-columns: 1fr;
  }
  .hero-booking-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .hero-booking-grid .booking-widget-card {
    order: 1;
  }
  .hero-booking-grid .price-chart-card {
    order: 2;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .info-columns-grid {
    grid-template-columns: 1fr;
  }
  .page-layout-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }
  .page-sidebar-col {
    position: static;
    margin-top: 24px;
  }
  .procedure-side-layout {
    grid-template-columns: 1fr !important;
  }
  .procedure-side-image {
    min-height: 240px !important;
    height: 240px !important;
  }
  .procedure-side-image img {
    min-height: 240px !important;
  }
  .cta-banner-container {
    flex-direction: column;
    text-align: center;
  }
  .cta-left-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-actions {
    justify-content: center;
    width: 100%;
  }
  .cta-right-paw {
    display: none;
  }
  .footer-top-container {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 576px) {
  .mobile-top-header {
    padding: 5px 10px;
  }
  .mobile-tel-link {
    font-size: 0.72rem;
  }
  .header-container {
    padding: 8px 16px;
  }
  .brand-title {
    font-size: 1.25rem;
  }
  .brand-subtitle {
    font-size: 0.52rem;
  }
  .hero-section.hero-banner-section {
    padding: 24px 0 36px;
  }
  .hero-top-intro {
    margin-bottom: 18px;
  }
  .hero-top-intro .hero-main-title {
    font-size: 1.4rem;
    line-height: 1.24;
  }
  .hero-top-intro .hero-subtitle {
    font-size: 0.78rem;
    margin-bottom: 10px;
  }
  .hero-chips-bar {
    gap: 6px;
  }
  .hero-chip {
    font-size: 0.68rem;
    padding: 3px 9px;
  }
  .card-header {
    padding: 10px 14px;
  }
  .card-header h2,
  .card-header h3 {
    font-size: 0.92rem;
  }
  .card-body {
    padding: 14px 12px;
  }
  .booking-hotline-pill {
    font-size: 0.68rem;
    padding: 2px 7px;
  }
  .booking-form .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .booking-form .form-row-full {
    grid-template-columns: 1fr;
  }
  .booking-form .form-row .form-group:only-child {
    grid-column: 1 / -1;
  }
  .booking-form label {
    font-size: 0.68rem;
  }
  .booking-form input,
  .booking-form select {
    height: 36px;
    font-size: 0.8rem;
    padding: 5px 8px;
  }
  .shifts-grid-3 {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .price-table th,
  .price-table td {
    padding: 7px 8px;
    font-size: 0.74rem;
  }
  .price-rules-list {
    padding: 10px;
    font-size: 0.72rem;
  }
  .hero-main-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }
  .hero-subtitle {
    font-size: 0.82rem;
    line-height: 1.55;
  }
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }
  .hero-cta-group a {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .about-img-frame img {
    height: 260px;
  }
  .about-floating-badge {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 12px;
    gap: 8px;
  }
  .about-floating-badge i {
    font-size: 1.1rem;
  }
  .about-floating-badge strong {
    font-size: 0.8rem;
  }
  .about-floating-badge span {
    font-size: 0.65rem;
  }
  .highlight-item {
    padding: 16px 14px;
  }
  .modern-feature-card,
  .modern-trust-card,
  .modern-faq-card,
  .modern-map-card,
  .modern-blogs-card,
  .info-box-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  .feature-header-wrap {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .zones-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .zone-card {
    border-radius: 12px;
  }
  .zone-badge-overlay {
    top: 6px;
    left: 6px;
    right: 6px;
    gap: 4px;
    flex-wrap: wrap;
  }
  .zone-chip {
    font-size: 0.52rem;
    padding: 2px 6px;
    border-radius: 12px;
    gap: 3px;
  }
  .zone-chip i {
    font-size: 0.5rem;
  }
  .zone-info {
    padding: 10px 8px 12px 8px;
    flex-grow: 0;
  }
  .zone-name {
    font-size: 0.82rem;
    margin-bottom: 2px;
  }
  .zone-desc {
    font-size: 0.66rem;
    line-height: 1.35;
    margin-bottom: 6px;
    flex-grow: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .zone-features {
    gap: 4px;
    margin-bottom: 8px;
  }
  .zone-features span {
    font-size: 0.58rem;
    padding: 2px 5px;
    border-radius: 5px;
    gap: 3px;
  }
  .zone-features span i {
    font-size: 0.6rem;
  }
  .btn-zone-action {
    padding: 7px 8px;
    font-size: 0.68rem;
    border-radius: 8px;
    gap: 4px;
  }
  .btn-zone-action i {
    font-size: 0.62rem;
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .form-row-full {
    grid-template-columns: 1fr;
  }
  .form-row .form-group:only-child {
    grid-column: 1 / -1;
  }
  .feature-card-inner,
  .trust-content-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .media-frame,
  .trust-img-wrap {
    min-height: 180px;
  }
  .media-frame img,
  .trust-img-wrap img {
    height: 180px;
  }
  .blogs-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-container {
    grid-template-columns: 1fr;
  }
  .page-hero-banner {
    padding: 26px 0 22px 0;
  }
  .page-main-title {
    font-size: 1.45rem;
  }
  .packages-catalog-grid,
  .hotels-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tour-card-media,
  .hotel-card-media {
    height: 125px;
  }
  .tour-card-body,
  .hotel-card-body {
    padding: 10px 8px 12px 8px;
  }
  .tour-card-title,
  .hotel-card-title {
    font-size: 0.78rem;
    line-height: 1.3;
  }
  .tour-specs-list {
    font-size: 0.68rem;
    gap: 4px;
  }
  .tour-price-val {
    font-size: 0.95rem;
  }
  .tour-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .tour-card-footer > div:last-child {
    display: flex !important;
    width: 100%;
    gap: 8px;
  }
  .tour-card-footer > div:last-child > a,
  .btn-tour-book,
  .btn-tour-details {
    flex: 1 1 0;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    font-size: 0.78rem;
    white-space: nowrap;
    text-align: center;
  }
  .payment-card-box {
    padding: 20px 14px;
  }
  .payment-form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
  }
  .payment-form-grid .form-full-width {
    grid-column: 1 / -1;
  }
  .content-image-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .content-img-card img {
    height: 120px;
  }
  .footer-bottom-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 360px) {
  .mobile-top-header {
    padding: 4px 6px;
  }
  .mobile-tel-link {
    font-size: 0.66rem;
    padding: 1px 2px;
  }
  .zones-grid {
    gap: 6px;
  }
  .zone-info {
    padding: 8px 6px 10px 6px;
    flex-grow: 0;
  }
  .zone-name {
    font-size: 0.76rem;
  }
  .zone-desc {
    font-size: 0.62rem;
    flex-grow: 0;
    margin-bottom: 4px;
  }
  .btn-zone-action {
    font-size: 0.62rem;
    padding: 6px 4px;
  }
}
@media (max-width: 960px) {
  .detail-layout-grid {
    grid-template-columns: 1fr;
  }
  .detail-sticky-sidebar {
    position: static;
    margin-top: 20px;
  }
  .hotel-gallery-grid {
    grid-template-columns: 1fr;
  }
  .hotel-gallery-thumbs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .inc-exc-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .detail-main-title {
    font-size: 1.55rem;
  }
  .detail-quick-specs-ribbon {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotel-gallery-main {
    height: 200px;
  }
  .hotel-gallery-thumb-item {
    height: 95px;
  }
  .highlights-tiles-grid {
    grid-template-columns: 1fr;
  }
  .timeline-day-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 1100px) {
  .tiger-stories-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
  }
  .tiger-stories-visual {
    flex: 0 0 200px;
    height: 220px;
    margin-left: 0;
  }
  .tiger-stories-content {
    flex: 1 1 280px;
  }
  .tiger-stories-cards {
    flex: 0 0 100%;
    justify-content: center;
    padding-top: 10px;
  }
}
@media (max-width: 868px) {
  .tiger-stories-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 24px 0;
  }
  .tiger-stories-visual {
    width: 100%;
    max-width: 320px;
    height: 200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  .tiger-stories-gradient-fade {
    width: 100%;
    background: linear-gradient(
      to top,
      rgba(13, 14, 16, 0.9) 0%,
      rgba(13, 14, 16, 0) 50%
    );
  }
  .tiger-stories-content {
    padding: 0;
  }
  .tiger-stories-heading {
    font-size: 1.25rem;
  }
  .tiger-stories-desc {
    margin: 0 auto 16px auto;
    font-size: 0.85rem;
  }
  .tiger-stories-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
    gap: 10px;
    padding: 10px 0 0 0;
  }
  .tiger-story-card {
    width: 100%;
  }
  .tiger-card-thumb {
    height: 90px;
  }
  .tiger-modal-tabs {
    grid-template-columns: repeat(2, 1fr);
  }
  .tiger-detail-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .tiger-detail-media img {
    height: 180px;
  }
}
@media (max-width: 540px) {
  .tiger-stories-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .tiger-card-thumb {
    height: 110px;
  }
  .tiger-modal-tabs {
    grid-template-columns: 1fr 1fr;
  }
  .tiger-tab-btn {
    font-size: 0.72rem;
    padding: 8px 6px;
  }
}
@media (max-width: 960px) {
  .safari-showcase-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .safari-showcase-img-box img {
    height: 280px;
  }
  .safari-notes-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .payment-checkout-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .checkout-summary-card {
    position: static;
  }
  .pay-tariff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pay-tariff-card--custom {
    grid-column: span 2;
  }
  .pay-assurance-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .pay-custom-amount-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .safari-showcase-content h2 {
    font-size: 1.6rem;
  }
  .safari-features-list {
    grid-template-columns: 1fr;
  }
  .pay-hero {
    padding: 32px 0 28px;
  }
  .payment-steps-nav {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    border-radius: 14px;
    gap: 4px;
    max-width: 100%;
    padding: 10px 8px;
  }
  .payment-step-badge {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    gap: 4px;
    font-size: 0.62rem;
    white-space: nowrap;
  }
  .payment-step-badge .step-num {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
    flex-shrink: 0;
  }
  .step-divider-arrow {
    display: none;
  }
  .pay-tariff-grid {
    grid-template-columns: 1fr;
  }
  .pay-tariff-card--custom {
    grid-column: span 1;
  }
  .pay-tariff-card {
    min-height: 0;
  }
  .payment-methods-grid {
    grid-template-columns: 1fr;
  }
  .checkout-fields-grid {
    grid-template-columns: 1fr;
  }
  .checkout-fields-grid .field-full {
    grid-column: span 1;
  }
  .checkout-form-card,
  .checkout-summary-card {
    padding: 20px 16px;
  }
  .pay-assurance-row {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
}
