/* ==========================================================
   NEW PALETTE: ROYAL HERITAGE EMERALD & AMBER GOLD
========================================================== */
:root {
  /* Brand Heritage Accents */
  --ats-primary: #0f5132;
  /* Deep Heritage Emerald */
  --ats-primary-light: #157347;
  /* Fresh Green */
  --ats-gold: #c58925;
  /* Classic Agra Mughal Gold */
  --ats-gold-hover: #a36d14;
  --ats-gold-soft: #fef8ee;
  /* Warm subtle background */

  /* Base & Structural Tones */
  --ats-dark: #121927;
  /* Deep Midnight Onyx */
  --ats-dark-alt: #1e293b;
  --ats-text-main: #212529;
  /* Crisp dark body text */
  --ats-text-muted: #64748b;
  --ats-light-bg: #f8fafc;
  --ats-white: #ffffff;
  --ats-border: #e2e8f0;

  /* Shadows & Layout Elements */
  --ats-shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.04);
  --ats-shadow-md: 0 12px 30px rgba(18, 25, 39, 0.12);
  --ats-radius: 8px;
  --ats-transition: all 0.25s ease-in-out;
}

/* ==========================================================
   HEADER STRUCTURAL STYLES
========================================================== */
.ats-header {
  position: relative;
  width: 100%;
  z-index: 1000;
  background: var(--ats-white);
  box-shadow: var(--ats-shadow-sm);
}

/* 1. Top Bar */
.ats-top-bar {
  background-color: var(--ats-primary);
  color: #fff;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ats-top-bar a {
  color: #fff;
  text-decoration: none;
  transition: var(--ats-transition);
}

.ats-top-bar a:hover {
  color: var(--ats-gold);
}

.top-item {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
}

.top-item i {
  color: #fff;
  margin-right: 7px;
  font-size: 14px;
}

.top-social {
  padding-left: 0;
}

.top-social li {
  margin-left: 6px;
}

.top-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: #fff;
  font-size: 12px;
  transition: var(--ats-transition);
}

.top-social a:hover {
  background: var(--ats-gold);
  color: var(--ats-white);
  transform: translateY(-2px);
}

/* 2. Main Navbar */
.ats-navbar-wrapper {
  background: var(--ats-white);
  position: relative;
}

.ats-logo img {
  height: 50px;
  width: auto;
}

.ats-navbar-wrapper .nav-item {
  margin: 0 4px;
}

.ats-navbar-wrapper .nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--ats-dark) !important;
  padding: 10px 14px !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: var(--ats-transition);
}

/* Remove default bootstrap arrow/square artifact completely */
.ats-drop-toggle::after {
  display: none !important;
  content: none !important;
}

/* Clean controlled icon for dropdown */
.ats-drop-toggle .drop-arrow {
  margin-left: 6px;
  font-size: 13px;
  color: var(--ats-gold);
  transition: transform 0.25s ease;
}

.ats-dropdown:hover .drop-arrow {
  transform: rotate(180deg);
}

/* Underline link highlight */
.ats-navbar-wrapper .nav-link::before {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 3px;
  background: var(--ats-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.ats-navbar-wrapper .nav-item:hover .nav-link::before,
.ats-navbar-wrapper .nav-item.active .nav-link::before {
  transform: scaleX(1);
  transform-origin: left;
}

.ats-navbar-wrapper .nav-item:hover .nav-link,
.ats-navbar-wrapper .nav-item.active .nav-link {
  color: var(--ats-primary) !important;
}

/* 3. Dropdown Menu Overhaul */
.ats-dropdown-menu {
  border: none !important;
  border-radius: var(--ats-radius);
  box-shadow: var(--ats-shadow-md);
  padding: 8px 0;
  margin-top: 0px;
  min-width: 255px;
  background: var(--ats-white) !important;
  border-top: 3px solid var(--ats-primary) !important;
}

.ats-dropdown-menu .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--ats-text-main) !important;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  background: transparent !important;
  border-left: 3px solid transparent;
  transition: var(--ats-transition);
}

.ats-dropdown-menu .dropdown-item i {
  font-size: 11px;
  margin-right: 10px;
  color: var(--ats-gold);
  transition: transform 0.2s ease;
}

/* Clear, sharp visibility on hover */
.ats-dropdown-menu .dropdown-item:hover {
  background-color: var(--ats-gold-soft) !important;
  color: var(--ats-primary) !important;
  font-weight: 600;
  border-left-color: var(--ats-primary);
  padding-left: 22px;
}

.ats-dropdown-menu .dropdown-item:hover i {
  color: var(--ats-primary);
  transform: translateX(3px);
}

/* 4. Action Button (Mughal Heritage Gold Gradient) */
.ats-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--ats-primary);
  color: var(--ats-white) !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 11px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  /* box-shadow: 0 4px 14px rgba(197, 137, 37, 0.35); */
  transition: var(--ats-transition);
}

.ats-btn-primary:hover {
  /* background: linear-gradient(135deg, var(--ats-gold-hover) 0%, #92400e 100%); */
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 137, 37, 0.45);
}

.ats-btn-primary i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.ats-btn-primary:hover i {
  transform: translateX(3px);
}

/* ==========================================================
   MOBILE MENU: FLOATING OVERLAY (NO PAGE PUSH-DOWN)
========================================================== */
@media (max-width: 991px) {
  .ats-navbar-wrapper .navbar-collapse {
    position: absolute;
    top: 112%;
    left: 0px;
    right: 0px;
    background: var(--ats-white);
    padding: 20px;
    border-radius: 0;
    /* box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18); */
    /* border: 1px solid var(--ats-border); */
    z-index: 99999;
  }

  .ats-navbar-wrapper .nav-link {
    padding: 10px 0 !important;
    border-bottom: 1px solid #f1f5f9;
  }

  .ats-navbar-wrapper .nav-link::before {
    display: none;
  }

  .ats-dropdown-menu {
    border-top: none !important;
    box-shadow: none;
    background: var(--ats-light-bg) !important;
    margin: 5px 0;
    padding: 4px 10px;
  }

  .ats-btn-primary {
    width: 100%;
    margin-top: 12px;
  }
}

@media only screen and (max-width: 991px) {

  .header .navbar-nav .active>.nav-link,
  .header .navbar-nav li .nav-link.active {
    background-color: transparent;
  }

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

footer i {
  color: #fff;
}



/* ==========================================================
   HERO CAROUSEL & HERO ACTIONS
========================================================== */
.ats-hero-section {
  position: relative;
  overflow: hidden;
  padding: 0px;
}

.ats-hero-slide {
  position: relative;
  min-height: 560px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.ats-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.60) 0%, rgba(15, 23, 42, 0.5) 55%, rgba(15, 23, 42, 0.3) 100%);
  z-index: 1;
}

.ats-hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 100px;
}

.ats-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 137, 37, 0.2);
  color: var(--ats-gold);
  border: 1px solid rgba(197, 137, 37, 0.45);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ats-hero-title {
  color: var(--ats-white);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 16px;
}

.ats-hero-title span {
  color: var(--ats-gold);
  position: relative;
}

.ats-hero-subtitle {
  color: #e2e8f0;
  font-size: 17px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 30px;
}

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

/* Secondary outline button on dark backgrounds */
.ats-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: var(--ats-white) !important;
  font-size: 13.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-btn-outline:hover {
  background: var(--ats-white);
  color: var(--ats-dark) !important;
  border-color: var(--ats-white);
  transform: translateY(-2px);
}

/* Carousel Indicators & Controls */
.ats-indicators {
  bottom: 80px;
  z-index: 5;
}

.ats-indicators li {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 5px;
  transition: var(--ats-transition);
}

.ats-indicators li.active {
  width: 26px;
  border-radius: 10px;
  background-color: var(--ats-gold);
}

.ats-carousel-control {
  width: 48px;
  height: 48px;
  top: 45%;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 50%;
  color: var(--ats-white);
  font-size: 20px;
  opacity: 0.75;
  transition: var(--ats-transition);
  z-index: 5;
}

.ats-carousel-control:hover {
  background: var(--ats-gold);
  color: var(--ats-white);
  opacity: 1;
}

.carousel-control-prev.ats-carousel-control {
  left: 20px;
}

.carousel-control-next.ats-carousel-control {
  right: 20px;
}

/* ==========================================================
   FLOATING CATEGORY FEATURE BAR
========================================================== */
.ats-features-bar {
  position: relative;
  z-index: 10;
  /* margin-top: -55px; */
  /* Floats cleanly over the hero bottom */
  padding-bottom: 30px;
  padding-top: 30px;
}

.ats-features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.ats-feature-card {
  background: var(--ats-white);
  padding: 18px 14px;
  border-radius: 10px;
  /* box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08); */
  border: 1px solid var(--ats-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ats-primary);
  color: var(--ats-white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  transition: var(--ats-transition);
}

.ats-card-icon i.fa.fa-star {
  color: var(--ats-white) !important;
}

.ats-card-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ats-dark);
  margin-bottom: 4px;
  transition: color 0.2s ease;
}

.ats-card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ats-primary);
  opacity: 0.85;
}

.ats-card-link i {
  transition: transform 0.2s ease;
}

/* Card Hover Interactions */
.ats-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.12);
  border-color: var(--ats-gold);
}

.ats-feature-card:hover .ats-card-icon {
  background: var(--ats-primary);
  color: var(--ats-white);
}

.ats-feature-card:hover .ats-card-title {
  color: var(--ats-primary);
}

.ats-feature-card:hover .ats-card-link i {
  transform: translateX(3px);
}

/* ==========================================================
   RESPONSIVE ADAPTATIONS
========================================================== */
@media (max-width: 991px) {
  .ats-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .ats-hero-title {
    font-size: 34px;
  }

  .ats-hero-slide {
    min-height: 480px;
  }
}

@media (max-width: 576px) {
  .ats-features-bar {
    margin-top: 15px;
    /* On tiny screens, drop below hero naturally */
  }

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

  .ats-hero-title {
    font-size: 26px;
  }

  .ats-hero-subtitle {
    font-size: 14px;
  }

  .ats-hero-slide {
    min-height: 420px;
  }

  .ats-carousel-control {
    display: none;
  }
}

/* ==========================================================
   MOBILE VIEW FIXES (Smartphones & Tablets)
========================================================== */
@media (max-width: 767px) {

  /* 1. Header & Toggler Clean-up */
  .ats-navbar-wrapper {
    padding: 8px 0 !important;
  }

  .ats-logo img {
    height: 42px !important;
  }

  .ats-toggler {
    border: 1.5px solid var(--ats-primary) !important;
    padding: 4px 8px !important;
    border-radius: 0px !important;
    outline: none !important;
  }

  .ats-toggler:focus {
    box-shadow: 0 0 0 2px rgba(197, 137, 37, 0.25) !important;
  }

  .ats-toggler .navbar-toggler-icon {
    /* background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23c58925' stroke-width='2.5' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E") !important; */
    width: 30px;
    height: 30px;
  }

  /* 2. Hero Slide & Dynamic Content Spacing */
  .ats-hero-section {
    position: relative;
    width: 100%;
    padding: 0px;
  }

  .ats-hero-slide {
    min-height: auto !important;
    height: auto !important;
    padding: 45px 0 50px !important;
    background-position: center center !important;
    background-size: cover !important;
    display: block !important;
  }

  .ats-hero-content {
    padding: 0 !important;
    text-align: left;
  }

  .ats-hero-badge {
    font-size: 11px !important;
    padding: 4px 10px !important;
    margin-bottom: 12px !important;
  }

  .ats-hero-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
    margin-bottom: 10px !important;
  }

  .ats-hero-subtitle {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    margin-bottom: 20px !important;
    color: #f1f5f9 !important;
    display: block !important;
    visibility: visible !important;
  }

  /* Stack buttons neatly on mobile */
  .ats-hero-actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
    width: 100%;
  }

  .ats-hero-actions .ats-btn-primary,
  .ats-hero-actions .ats-btn-outline {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
  }

  .ats-indicators {
    display: none !important;
    /* Cleaner look without dots overlapping mobile CTA */
  }

  /* 3. Category Feature Cards (Fix whitespace & align 2-column grid) */
  .ats-features-bar {
    margin-top: 0 !important;
    padding: 20px 0 10px !important;
    background: #f8fafc;
  }

  .ats-features-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .ats-feature-card {
    padding: 14px 10px !important;
    border-radius: 8px !important;
  }

  .ats-card-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  .ats-card-title {
    font-size: 13px !important;
    margin-bottom: 2px !important;
  }

  .ats-card-link {
    font-size: 11px !important;
  }


}

@media only screen and (max-width: 391px) {
  .carousel-item {
    height: 380px !important;
  }
}


/* ==========================================================
   TRUST & BADGES SECTION
========================================================== */
.ats-trust-section {
  background: var(--ats-white);
  border-bottom: 1px solid var(--ats-border);
  border-top: 1px dashed var(--ats-border);
}

.ats-trust-wrapper {
  /* background: #fdfdfd; */
  padding: 18px 24px;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  /* box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03); */
}

.ats-trust-badge {
  display: inline-block;
  transition: var(--ats-transition);
}

.ats-trust-badge img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  filter: contrast(102%);
  transition: var(--ats-transition);
}

.ats-trust-badge:hover img {
  transform: scale(1.05);
}

/* ==========================================================
   GLOBAL SECTION HEADERS
========================================================== */
.ats-section-subtitle {
  display: inline-block;
  color: var(--ats-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ats-section-title {
  color: var(--ats-dark);
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}

.ats-section-title span {
  color: var(--ats-primary);
  position: relative;
}

.ats-title-separator {
  width: 50px;
  height: 3px;
  background: var(--ats-gold);
  border-radius: 2px;
  margin: 10px auto 14px;
}

.ats-section-desc {
  color: var(--ats-text-muted);
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================
   TOUR CARD STYLING & DIRECT ACTIONS
========================================================== */
.ats-tours-section {
  background: var(--ats-light-bg);
}

.ats-tour-card {
  background: var(--ats-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ats-border);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--ats-transition);
}

.ats-tour-card:hover {
  /* transform: translateY(-6px); */
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.1);
  /* border-color: rgba(197, 137, 37, 0.4); */
}

/* Thumbnail & Floating Overlays */
.ats-tour-thumb {
  position: relative;
  overflow: hidden;
  height: 200px;
}

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

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

.ats-trip-pill {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(15, 23, 42, 0.78);
  backdrop-filter: blur(4px);
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--ats-transition);
}

.ats-trip-pill i {
  color: #00af87;
  /* Official Tripadvisor green */
  font-size: 13px;
}

.ats-trip-pill:hover {
  background: rgba(15, 23, 42, 0.95);
  color: var(--ats-gold) !important;
}

.ats-tour-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--ats-primary);
  color: var(--ats-white);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.ats-tour-badge.express {
  background: #0284c7;
}

.ats-tour-badge.popular {
  background: var(--ats-gold);
  color: var(--ats-dark);
}

/* Card Body Content */
.ats-tour-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ats-tour-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.ats-tour-title a {
  color: var(--ats-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ats-tour-title a:hover {
  color: var(--ats-primary);
}

/* Ratings */
.ats-tour-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.ats-tour-rating .stars i {
  color: var(--ats-gold);
  font-size: 12px;
}

.reviews-count {
  font-size: 12px;
  color: var(--ats-text-muted);
}

/* Perks List */
.ats-tour-perks {
  border-top: 1px dashed var(--ats-border);
  border-bottom: 1px dashed var(--ats-border);
  padding: 10px 0;
  margin-bottom: 14px;
}

.ats-tour-perks li {
  font-size: 12.5px;
  color: var(--ats-text-main);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.ats-tour-perks li:last-child {
  margin-bottom: 0;
}

.ats-tour-perks li i {
  width: 18px;
  color: var(--ats-primary);
  font-size: 13px;
}

/* Pricing Display */
.ats-tour-pricing {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.ats-tour-pricing .from-text {
  font-size: 12px;
  color: var(--ats-text-muted);
  text-transform: uppercase;
  font-weight: 600;
}

.ats-tour-pricing .price-val {
  font-size: 24px;
  font-weight: 800;
  color: var(--ats-dark);
}

.ats-tour-pricing .price-val sup {
  font-size: 14px;
  top: -8px;
  color: var(--ats-primary);
}

.ats-tour-pricing .price-val span {
  font-size: 12px;
  font-weight: 400;
  color: var(--ats-text-muted);
}

/* Quick Inquiry Buttons: WhatsApp & Phone */
.ats-quick-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ats-btn-whatsapp {
  background-color: #25d366;
  color: #fff !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--ats-transition);
}

.ats-btn-whatsapp:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
}

.ats-btn-call {
  background-color: var(--ats-light-bg);
  border: 1px solid var(--ats-border);
  color: var(--ats-dark) !important;
  font-size: 12.5px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 6px;
  text-align: center;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--ats-transition);
}

.ats-btn-call:hover {
  background-color: #e2e8f0;
  border-color: #cbd5e1;
  transform: translateY(-2px);
}

/* Primary Booking Button */
.ats-btn-book {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--ats-primary);
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-btn-book:hover {
  background: var(--ats-primary-light);
  box-shadow: 0 4px 12px rgba(15, 81, 50, 0.3);
}

.ats-btn-book i {
  font-size: 11px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}

.ats-btn-book:hover i {
  transform: translateX(3px);
}


/* ==========================================================
   BALANCED TOUR CARDS (WITH 2-COLUMN PERKS GRID)
========================================================== */
.ats-tours-section {
  background: var(--ats-light-bg);
}

.ats-tour-card {
  background: var(--ats-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ats-border);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--ats-transition);
}

/* .ats-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
  border-color: rgba(197, 137, 37, 0.45);
} */

/* Image Thumbnail & Badges */
.ats-tour-thumb {
  position: relative;
  overflow: hidden;
  height: 175px;
}

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

.ats-tour-card:hover .ats-tour-thumb img {
  transform: scale(1.06);
}

.ats-trip-pill {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(4px);
  color: #fff !important;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ats-trip-pill i {
  color: #00af87;
  font-size: 12px;
}

.ats-tour-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--ats-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
}

.ats-tour-badge.express {
  background: #0284c7;
}

.ats-tour-badge.popular {
  background: var(--ats-gold);
  color: var(--ats-dark);
}

/* Price Pill on Thumbnail */
.ats-thumb-price {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(4px);
  color: #cbd5e1;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ats-thumb-price strong {
  color: #fbbf24;
  font-size: 14.5px;
  margin-left: 2px;
}

/* Card Body */
.ats-tour-body {
  padding: 16px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ats-tour-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  min-height: 40px;
}

.ats-tour-title a {
  color: var(--ats-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ats-tour-title a:hover {
  color: var(--ats-primary);
}

/* Ratings */
.ats-tour-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
}

.ats-tour-rating .stars i {
  color: var(--ats-gold);
  font-size: 11px;
}

.reviews-count {
  font-size: 11.5px;
  color: var(--ats-text-muted);
}

/* 2-Column Perks Grid */
.ats-tour-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  background: #f8fafc;
  padding: 10px 8px;
  border-radius: 6px;
  border: 1px solid #edf2f7;
  margin-bottom: 14px;
}

.ats-tour-perks-grid li {
  font-size: 11.5px;
  color: #475569;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ats-tour-perks-grid li i {
  color: var(--ats-primary);
  font-size: 11.5px;
  flex-shrink: 0;
}

/* Actions Row (WhatsApp + Call + Book Now) */
.ats-card-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.ats-icon-btn {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-btn-wa {
  background-color: #25d366;
  color: #fff !important;
  padding: 8px 15px;
}

.ats-btn-wa:hover {
  background-color: #1ebc57;
  transform: translateY(-2px);
}

.ats-btn-phone {
  background-color: #f1f5f9;
  border: 1px solid var(--ats-border);
  color: var(--ats-dark) !important;
}

.ats-btn-phone:hover {
  background-color: #e2e8f0;
  transform: translateY(-2px);
}


.ats-btn-book-sm {
  flex-grow: 1;
  height: 34px;
  background: var(--ats-primary);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-radius: 6px;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px;
  line-height: 1 !important;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-btn-book-sm:hover {
  background: var(--ats-primary-light);
  box-shadow: 0 3px 10px rgba(15, 81, 50, 0.25);
}

.ats-btn-book-sm i {
  font-size: 11px;
  line-height: 1 !important;
  display: inline-flex;
  align-items: center;
  margin-top: -1px;
  /* Corrects Font Awesome baseline offset */
  transition: transform 0.2s ease;
}

.ats-btn-book-sm:hover i {
  transform: translateX(3px);
}


/* ==========================================================
   TAILOR-MADE BANNER CARD
========================================================== */
.ats-tailormade-section {
  background: var(--ats-white);
}

.ats-tailormade-card {
  position: relative;
  background: linear-gradient(135deg, var(--ats-dark) 0%, #1a2639 60%, var(--ats-primary) 140%);
  border-radius: 16px;
  padding: 45px 40px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle decorative radial glow behind text */
.ats-tailormade-pattern {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 137, 37, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.ats-tailormade-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 137, 37, 0.18);
  color: #fbbf24;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(197, 137, 37, 0.35);
  margin-bottom: 12px;
}

.ats-tailormade-title {
  color: var(--ats-white);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.ats-tailormade-title span {
  color: var(--ats-gold);
}

.ats-tailormade-desc {
  color: #cbd5e1;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 620px;
  margin-bottom: 20px;
}

/* Three-item feature bullets */
.ats-tailormade-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ats-perk-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
}

.ats-perk-item i {
  color: #22c55e;
  font-size: 14px;
}

/* WhatsApp Secondary Button on Dark Card */
.ats-tailormade-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px dashed #fff;
}

.ats-btn-wa-alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #4ade80 !important;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-btn-wa-alt i {
  font-size: 16px;
}

.ats-btn-wa-alt:hover {
  background: #25d366;
  color: #ffffff !important;
  border-color: #25d366;
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .ats-tailormade-card {
    padding: 28px 20px;
  }

  .ats-tailormade-title {
    font-size: 22px;
  }

  .ats-tailormade-perks {
    gap: 10px;
  }
}


/* 2x2 Feature Pills matching the clean card screenshot */
.ats-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
  background: #f8fafc;
  padding: 8px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  border: 1px solid #f1f5f9;
}

.ats-perk-pill {
  font-size: 11px;
  color: #475569;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.ats-perk-pill i {
  color: var(--ats-primary);
  font-size: 11px;
}


/* ==========================================================
   PERSONAL TOUR GUIDE PROMO BANNER
========================================================== */
/* .ats-guide-promo-section {
  background: var(--ats-light-bg);
} */

.ats-guide-banner {
  position: relative;
  border-radius: 16px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 55px 45px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.ats-guide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 81, 50, 0.78) 60%, rgba(15, 23, 42, 0.65) 100%);
  z-index: 1;
}

.ats-guide-banner .row {
  z-index: 2;
}

.ats-guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(197, 137, 37, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(197, 137, 37, 0.4);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.ats-guide-title {
  color: var(--ats-white);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
}

.ats-guide-title span {
  color: var(--ats-gold);
}

.ats-guide-subtitle {
  color: #e2e8f0;
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 22px;
}

/* Three-item checklist row */
.ats-guide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.ats-g-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #f1f5f9;
  font-size: 13px;
  font-weight: 500;
}

.ats-g-feature i {
  color: #22c55e;
  font-size: 13px;
}

.ats-guide-actions {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 20px;
  border: 1px dashed #fff;
}

@media (max-width: 767px) {
  .ats-guide-banner {
    padding: 30px 20px;
  }

  .ats-guide-title {
    font-size: 24px;
  }

  .ats-guide-features {
    gap: 10px;
  }
}

/* ==========================================================
   WHY CHOOSE AMSAH SECTION (WITH BG IMAGE & OVERLAY)
========================================================== */
.ats-why-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* Creates a clean parallax depth effect */
  overflow: hidden;
  padding: 80px 0;
}

/* Dark atmospheric overlay ensuring high contrast */
.ats-why-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.94) 0%, rgba(15, 81, 50, 0.85) 100%);
  z-index: 1;
}

.ats-why-section .container {
  z-index: 2;
}

.ats-why-section .text-gold {
  color: var(--ats-gold) !important;
}

.ats-why-section .text-white {
  color: var(--ats-white) !important;
}

.ats-why-section .text-light-slate {
  color: #cbd5e1 !important;
}

/* Glassmorphic Frosted Feature Cards */
.ats-why-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--ats-transition);
}

.ats-why-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(197, 137, 37, 0.16);
  border: 1px solid rgba(197, 137, 37, 0.4);
  color: var(--ats-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
  transition: var(--ats-transition);
}

.ats-why-card-title {
  color: var(--ats-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.ats-why-card-desc {
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Hover Interaction */
.ats-why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ats-gold);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
}

.ats-why-card:hover .ats-why-icon {
  background: var(--ats-primary);
  border-color: var(--ats-primary);
  color: var(--ats-white);
  transform: scale(1.08);
}

.ats-why-card:hover .ats-why-card-title {
  color: var(--ats-gold);
}


/* ==========================================================
   ABOUT / GLOBAL SECTION
========================================================== */
.ats-about-section {
  background: var(--ats-white);
  position: relative;
  overflow: hidden;
}

.ats-about-lead {
  color: var(--ats-dark);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.ats-about-body {
  color: var(--ats-text-muted);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}

/* Spotlight Card for Imran Khan / Guiding Leadership */
.ats-expert-spotlight {
  background: var(--ats-gold-soft);
  border-left: 4px solid var(--ats-gold);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin: 18px 0;
  display: flex;
  gap: 14px;
}

.ats-spotlight-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(197, 137, 37, 0.2);
  color: var(--ats-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ats-spotlight-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--ats-dark);
  margin-bottom: 4px;
}

.ats-spotlight-text p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ats-text-main);
  margin-bottom: 0;
}

.ats-spotlight-text strong {
  color: var(--ats-primary);
}

/* Tour Pill Badges */
.ats-packages-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ats-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.ats-package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ats-package-tags a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ats-dark);
  background: var(--ats-light-bg);
  border: 1px solid var(--ats-border);
  padding: 6px 12px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-package-tags a i {
  color: var(--ats-gold);
}

.ats-package-tags a:hover {
  background: var(--ats-primary);
  border-color: var(--ats-primary);
  color: var(--ats-white);
  transform: translateY(-2px);
}

.ats-package-tags a:hover i {
  color: var(--ats-white);
}

/* Image Wrap & Floating Badge */
.ats-about-img-wrap {
  position: relative;
  padding: 10px;
}

.ats-img-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 20px;
  left: 20px;
  background: var(--ats-gold-soft);
  border: 2px solid rgba(197, 137, 37, 0.3);
  border-radius: 16px;
  z-index: 1;
}

.ats-about-img {
  position: relative;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  z-index: 2;
  width: 100%;
  object-fit: cover;
}

.ats-experience-badge {
  position: absolute;
  bottom: 0;
  left: -10px;
  background: var(--ats-primary);
  color: var(--ats-white);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(15, 81, 50, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
}

.ats-experience-badge .badge-number {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--ats-gold);
}

.ats-experience-badge .badge-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .ats-img-backdrop {
    display: none;
  }

  .ats-experience-badge {
    left: 20px;
    bottom: 10px;
  }
}

/* Full Width Bottom Content Alignment */
.ats-about-full-content {
  border-top: 1px dashed var(--ats-border);
  padding-top: 24px;
}

.ats-about-full-content .ats-about-body {
  color: #475569;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.ats-about-full-content .ats-packages-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ats-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* ==========================================================
   3-CARD PER ROW GALLERY DESIGN
========================================================== */
.ats-gallery-section {
  background: var(--ats-light-bg);
}

.ats-gallery-card {
  background: var(--ats-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--ats-border);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  cursor: pointer;
  transition: var(--ats-transition);
}

.ats-gal-img-wrap {
  position: relative;
  height: auto;
  overflow: hidden;
}

.ats-gal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ats-gal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 81, 50, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--ats-transition);
  padding: 15px;
  text-align: center;
}

.ats-gal-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ats-gold);
  color: var(--ats-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transform: translateY(12px);
  transition: var(--ats-transition);
}

.ats-gal-caption-text {
  color: var(--ats-white);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.ats-gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-color: var(--ats-gold);
}

.ats-gallery-card:hover .ats-gal-img-wrap img {
  transform: scale(1.08);
}

.ats-gallery-card:hover .ats-gal-overlay {
  opacity: 1;
}

.ats-gallery-card:hover .ats-gal-btn {
  transform: translateY(0);
}

/* ==========================================================
   DIRECT LIGHTBOX POPUP & SLIDER
========================================================== */
.ats-lightbox-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ats-lb-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 15, 29, 0.95);
  backdrop-filter: blur(8px);
}

.ats-lb-stage {
  position: relative;
  z-index: 5;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ats-lb-stage img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.ats-lb-caption {
  margin-top: 14px;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 600;
}

.ats-lb-count {
  font-size: 12px;
  color: var(--ats-gold);
  margin-top: 4px;
}

.ats-lb-close-btn {
  position: absolute;
  top: 25px;
  right: 35px;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  transition: var(--ats-transition);
}

.ats-lb-close-btn:hover {
  color: var(--ats-gold);
  transform: scale(1.15);
}

.ats-lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ats-transition);
}

.ats-lb-arrow:hover {
  background: var(--ats-gold);
  border-color: var(--ats-gold);
  transform: translateY(-50%) scale(1.1);
}

.ats-lb-arrow-prev {
  left: 30px;
}

.ats-lb-arrow-next {
  right: 30px;
}

@media (max-width: 767px) {
  .ats-gal-img-wrap {
    height: 200px;
  }

  .ats-lb-arrow-prev {
    left: 10px;
  }

  .ats-lb-arrow-next {
    right: 10px;
  }

  .ats-lb-arrow {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .ats-lb-close-btn {
    top: 15px;
    right: 20px;
    font-size: 34px;
  }
}


/* ==========================================================
   TRAVEL PARTNERS SECTION
========================================================== */
.ats-partners-section {
  background: var(--ats-white);
  border-top: 1px solid var(--ats-border);
}

.ats-partners-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 12px;
  border: 1px solid var(--ats-border);
  /* box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04); */
}

.ats-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: center;
  gap: 20px;
}

.ats-partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  height: 75px;
  border-radius: 8px;
  background: transparent;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-partner-item img {
  max-height: 70px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  /* filter: grayscale(100%);
  opacity: 0.65; */
  transition: var(--ats-transition);
}

/* Hover State: Bring out vibrant brand colors */
.ats-partner-item:hover {
  background: var(--ats-light-bg);
  transform: translateY(-3px);
}

.ats-partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .ats-partners-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .ats-partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .ats-partner-item {
    height: 65px;
  }
}

/* ==========================================================
   TESTIMONIALS / REVIEWS SECTION
========================================================== */
.ats-testimonials-section {
  background: var(--ats-light-bg);
  position: relative;
}

.ats-reviews-card {
  background: var(--ats-white);
  padding: 35px 25px;
  border-radius: 16px;
  border: 1px solid var(--ats-border);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
  min-height: 280px;
}

@media (max-width: 767px) {
  .ats-reviews-card {
    padding: 20px 12px;
  }
}


/* ==========================================================
   FOOTER & COMPACT PAYMENT BADGES
========================================================== */
.ats-footer {
  background-color: var(--ats-dark);
  color: #94a3b8;
  border-top: 3px solid var(--ats-gold);
}

.ats-footer-title {
  color: var(--ats-white);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ats-footer-title span {
  color: var(--ats-gold);
}

.ats-footer-sep {
  width: 35px;
  height: 2.5px;
  background: var(--ats-primary);
  border-radius: 2px;
  margin-bottom: 16px;
}

.ats-footer-desc {
  font-size: 13px;
  line-height: 1.6;
  color: #cbd5e1;
  margin-bottom: 12px;
}

/* Compact Payment Pills */
.ats-pay-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.ats-pay-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.ats-pay-pill {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ats-pay-pill i {
  color: var(--ats-gold);
  font-size: 12px;
}

.ats-cash-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* Links List */
.ats-footer-links li {
  margin-bottom: 7px;
}

.ats-footer-links a {
  color: #cbd5e1;
  font-size: 13px;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--ats-transition);
}

.ats-footer-links a i {
  font-size: 11px;
  color: var(--ats-gold);
  transition: transform 0.2s ease;
}

.ats-footer-links a:hover {
  color: var(--ats-gold);
  padding-left: 4px;
}

.ats-footer-links a:hover i {
  color: var(--ats-primary-light);
  transform: translateX(2px);
}

/* Contact Details */
.ats-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: #cbd5e1;
}

.ats-footer-contact li i {
  color: var(--ats-gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.ats-footer-contact a {
  color: #cbd5e1;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

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

/* Social Icon Circles */
.ats-social-title {
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.ats-footer-social .list-inline-item {
  margin-right: 6px;
}

.ats-footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  font-size: 13px;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-footer-social a:hover {
  background: var(--ats-gold);
  border-color: var(--ats-gold);
  color: var(--ats-white);
  transform: translateY(-2px);
}

/* Copyright Bar */
.ats-copyright-bar {
  background-color: #0a0f1d;
  color: #94a3b8;
  font-size: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ats-copyright-bar a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  transition: var(--ats-transition);
}

.ats-copyright-bar a:hover {
  color: var(--ats-gold);
}

.ats-footer-logo {
  text-align: left !important;
  display: block;
}

.ats-footer-logo img {
  display: inline-block !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.ats-copyright-bar p {
  color: #cbd5e1 !important;
  /* Crisp, readable light slate */
  font-size: 13px;
}

.ats-copyright-bar a {
  color: var(--ats-gold) !important;
  /* Gold highlight for the maintainer link */
  text-decoration: none !important;
  font-weight: 600;
  transition: var(--ats-transition);
}

.ats-copyright-bar a:hover {
  color: #ffffff !important;
  text-decoration: underline !important;
}

/* ==========================================================
   VIEW ALL GOLDEN TRIANGLE PACKAGES BUTTON
========================================================== */
.ats-btn-view-all {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--ats-primary) !important;
  /* Deep Emerald Green */
  color: #ffffff !important;
  font-size: 13.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 12px 30px !important;
  border-radius: 50px !important;
  border: 2px solid var(--ats-primary) !important;
  text-decoration: none !important;
  box-shadow: 0 4px 14px rgba(15, 81, 50, 0.25) !important;
  transition: all 0.25s ease-in-out !important;
}

.ats-btn-view-all span {
  color: #ffffff !important;
}

.ats-btn-view-all i {
  color: var(--ats-gold) !important;
  /* Warm Gold Arrow */
  font-size: 13px;
  transition: transform 0.25s ease !important;
}

/* Hover Interaction */
.ats-btn-view-all:hover {
  background-color: var(--ats-dark) !important;
  /* Midnight Slate */
  border-color: var(--ats-dark) !important;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.2) !important;
}

.ats-btn-view-all:hover i {
  transform: translateX(4px);
}


/* Tint SVG Logo to Deep Heritage Emerald Green */
#logo_img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(85%) saturate(542%) hue-rotate(101deg) brightness(92%) contrast(92%);
  transition: filter 0.3s ease;
}

/* ==========================================================
   ABOUT US PAGE STYLES
========================================================== */
.ats-about-page-section {
  background: var(--ats-white);
}

.ats-about-contact-pill {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: var(--ats-gold-soft);
  border: 1px solid rgba(197, 137, 37, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13.5px;
  color: var(--ats-dark);
}

.ats-about-contact-pill a {
  color: var(--ats-primary);
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease;
}

.ats-about-contact-pill a:hover {
  color: var(--ats-gold);
}

/* Key Highlights Row */
.ats-about-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.ats-about-perks .ats-perk-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ats-dark);
}

.ats-about-perks .ats-perk-item i {
  color: var(--ats-primary);
}

/* Destination Callout Box */
.ats-destination-callout {
  background: #f8fafc;
  border-left: 4px solid var(--ats-primary);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ats-dark);
}

.ats-destination-callout strong {
  color: var(--ats-primary);
}

.ats-about-extended-text {
  border-top: 1px dashed var(--ats-border);
  padding-top: 25px;
}

.ats-about-extended-text .ats-about-body {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
  margin-bottom: 16px;
}

/* ==========================================================
   CONTACT PAGE & MAP REDESIGN
========================================================== */
.ats-map-section {
  background: var(--ats-white);
}

.ats-map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--ats-border);
}

.ats-map-wrapper iframe {
  display: block;
  width: 100%;
}

.ats-contact-section {
  background: var(--ats-light-bg);
}

/* Contact Form Card */
.ats-contact-form-card {
  background: var(--ats-white);
  border-radius: 16px;
  padding: 40px 35px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
  border: 1px solid var(--ats-border);
}

.ats-form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ats-dark);
  margin-bottom: 6px;
}

.ats-input {
  height: 48px;
  font-size: 14px;
  color: var(--ats-text-main);
  background-color: #f8fafc;
  border: 1px solid var(--ats-border);
  border-radius: 8px;
  padding: 10px 16px;
  transition: var(--ats-transition);
}

textarea.ats-input {
  height: auto;
}

.ats-input:focus {
  background-color: var(--ats-white);
  border-color: var(--ats-primary);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.15);
  outline: none;
}

.ats-math-card {
  background: #fdf8ed;
  border: 1px dashed var(--ats-gold);
  border-radius: 8px;
  padding: 10px 14px;
}

/* Contact Info Sidebar Cards */
.ats-contact-info-sidebar {
  padding-left: 10px;
}

.ats-contact-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--ats-white);
  border: 1px solid var(--ats-border);
  padding: 22px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: var(--ats-transition);
}

.ats-contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--ats-gold-soft);
  color: var(--ats-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  transition: var(--ats-transition);
}

.ats-contact-text h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ats-dark);
  margin-bottom: 5px;
}

.ats-contact-text p {
  font-size: 13.5px;
  color: var(--ats-text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

.ats-contact-text a {
  color: var(--ats-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.ats-contact-text a:hover {
  color: var(--ats-primary);
}

.ats-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #16a34a !important;
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
}

.ats-wa-link:hover {
  text-decoration: underline !important;
}

/* Hover States for Info Cards */
.ats-contact-box:hover {
  transform: translateY(-3px);
  border-color: var(--ats-gold);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.ats-contact-box:hover .ats-contact-icon {
  background: var(--ats-primary);
  color: var(--ats-white);
}

@media (max-width: 991px) {
  .ats-contact-info-sidebar {
    padding-left: 0;
  }

  .ats-contact-form-card {
    padding: 25px 20px;
  }
}


/* ==========================================================
   TAILOR MADE PAGE & SIDEBAR TAG CLOUD
========================================================== */
.ats-sidebar-card {
  background: var(--ats-white);
  border: 1px solid var(--ats-border);
  border-radius: 16px;
  padding: 35px 30px;
  box-shadow: 0 8px 30px rgba(15, 23, 42, 0.05);
}

.ats-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ats-tag-cloud a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ats-light-bg);
  border: 1px solid var(--ats-border);
  color: var(--ats-dark);
  font-size: 12.5px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 20px;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-tag-cloud a i {
  color: var(--ats-gold);
  font-size: 11px;
}

.ats-tag-cloud a:hover,
.ats-tag-cloud a.active {
  background: var(--ats-primary);
  border-color: var(--ats-primary);
  color: var(--ats-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15, 81, 50, 0.2);
}

.ats-tag-cloud a:hover i,
.ats-tag-cloud a.active i {
  color: var(--ats-white);
}

.ats-sidebar-cta {
  background: var(--ats-gold-soft);
  border: 1px dashed rgba(197, 137, 37, 0.4);
  border-radius: 10px;
  padding: 16px;
}



/* ==========================================================
   LEGAL & PRIVACY POLICY PAGE
========================================================== */
.ats-policy-section {
  background: var(--ats-light-bg);
}

.ats-policy-card {
  background: var(--ats-white);
  border: 1px solid var(--ats-border);
  border-radius: 16px;
  padding: 45px 40px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.05);
}

.ats-policy-intro {
  font-size: 15px;
  line-height: 1.75;
  color: var(--ats-dark);
}

.ats-clause-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--ats-dark);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.clause-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ats-gold-soft);
  color: var(--ats-gold);
  font-size: 13px;
  font-weight: 800;
  border: 1px solid rgba(197, 137, 37, 0.3);
}

.ats-policy-clause p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ats-text-muted);
}

.ats-policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ats-text-main);
  margin-bottom: 10px;
}

.ats-policy-list li i {
  color: var(--ats-primary);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.ats-policy-contact {
  background: #f8fafc;
  border: 1px dashed var(--ats-border);
}

.ats-contact-pill {
  display: inline-flex;
  align-items: center;
  background: var(--ats-white);
  border: 1px solid var(--ats-border);
  padding: 8px 16px;
  border-radius: 30px;
  color: var(--ats-dark);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none !important;
  transition: var(--ats-transition);
}

.ats-contact-pill:hover {
  background: var(--ats-primary);
  color: var(--ats-white);
  border-color: var(--ats-primary);
}

.ats-contact-pill:hover i {
  color: var(--ats-gold) !important;
}

@media (max-width: 767px) {
  .ats-policy-card {
    padding: 25px 20px;
  }
}


/* ==========================================================
   PHOTO GALLERY SECTION
========================================================== */
.ats-gallery-section {
  background: var(--ats-light-bg);
}

.ats-gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
  border: 1px solid var(--ats-border);
  background-color: #ffffff;
  /* aspect-ratio: 4 / 3; */
}

.ats-gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.ats-gallery-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

/* Hover Overlay with Emerald Gradient & Gold Icon */
.ats-gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 81, 50, 0.75), rgba(15, 23, 42, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ats-gallery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ats-gold);
  color: #ffffff;
  font-size: 16px;
  transform: scale(0.7);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ats-gallery-card:hover .ats-gallery-link img {
  transform: scale(1.08);
}

.ats-gallery-card:hover .ats-gallery-overlay {
  opacity: 1;
}

.ats-gallery-card:hover .ats-gallery-icon {
  transform: scale(1);
}

@media (max-width: 575px) {
  .ats-gallery-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}


/* ==========================================================
   ATS CUSTOM LIGHTBOX STYLING
========================================================== */
.ats-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ats-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.ats-lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.92);
  backdrop-filter: blur(6px);
}

.ats-lightbox-dialog {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.ats-lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ats-lightbox-figure img {
  max-width: 88vw;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  user-select: none;
  animation: atsZoomIn 0.25s ease-out;
}

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

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

#ats-lightbox-caption {
  margin-top: 12px;
  color: #f1f5f9;
  font-size: 14px;
  text-align: center;
  max-width: 750px;
  line-height: 1.5;
  display: none;
}

/* Lightbox Action Buttons */
.ats-lightbox-btn {
  position: absolute;
  background: rgba(15, 81, 50, 0.85);
  /* Heritage Emerald */
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
  outline: none;
}

.ats-lightbox-btn:hover {
  background: var(--ats-gold);
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(197, 137, 37, 0.4);
}

/* Button Positioning */
.ats-lightbox-close {
  top: -55px;
  right: 0;
  font-size: 20px;
}

.ats-lightbox-prev {
  left: -65px;
  top: 50%;
  transform: translateY(-50%);
}

.ats-lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.ats-lightbox-next {
  right: -65px;
  top: 50%;
  transform: translateY(-50%);
}

.ats-lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.ats-lightbox-counter {
  position: absolute;
  bottom: -45px;
  color: var(--ats-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
}

/* Mobile responsive constraints */
@media (max-width: 768px) {
  .ats-lightbox-btn {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .ats-lightbox-close {
    top: -45px;
    right: 5px;
  }

  .ats-lightbox-prev {
    left: 8px;
  }

  .ats-lightbox-next {
    right: 8px;
  }
}





/* ==========================================================
   GLOBAL TOUR DETAIL PAGES (APPLIES TO ALL 20 TOURS)
========================================================== */

/* Main Title & Lead Overview */
.iti h1 {
  font-size: 28px;
  font-weight: 800;
  color: var(--ats-dark);
  line-height: 1.35;
  margin-bottom: 18px;
  border-left: 4px solid var(--ats-primary);
  padding-left: 14px;
}

.iti .overview {
  background: #f8fafc;
  border: 1px solid var(--ats-border);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.iti .overview p {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--ats-text-main);
  margin-bottom: 0;
}

/* Accordion Shell */
.iti .accordion .card {
  border: 1px solid var(--ats-border) !important;
  border-radius: 12px !important;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.iti .accordion .card-header {
  background-color: #ffffff !important;
  border-bottom: 1px solid var(--ats-border) !important;
  padding: 0 !important;
}

.iti .accordion .card-header .btn-link {
  width: 100%;
  text-align: left;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none !important;
  color: var(--ats-dark) !important;
}

.iti .accordion .card-header .btn-link h2 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--ats-dark);
}

.iti .accordion .card-header .btn-link::after {
  content: "\f107";
  font-family: "FontAwesome";
  font-size: 18px;
  color: var(--ats-gold);
  transition: transform 0.3s ease;
}

.iti .accordion .card-header .btn-link.collapsed::after {
  transform: rotate(-90deg);
}

/* Day-by-Day Timeline */
.iti-content {
  position: relative;
  padding-left: 28px;
  padding-bottom: 24px;
  border-left: 5px solid var(--ats-primary);
  margin-left: 10px;
}

.iti-content {
  box-shadow: none;
}

.iti-content::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--ats-primary);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 2px var(--ats-gold);
}

.iti-content:last-child {
  /* border-left: 2px solid transparent; */
  padding-bottom: 0;
}

.iti-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ats-dark);
  margin-bottom: 8px;
}

.iti-content h3 span {
  color: var(--ats-primary);
  font-weight: 800;
  margin-right: 4px;
}

.iti-content p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--ats-text-muted);
}

/* Inclusions & Exclusions Checklist */
.iti .card-body ul.grn,
.iti ul.grn {
  list-style: none;
  padding: 0;
  margin: 0;
}

.iti .card-body ul.grn li,
.iti ul.grn li {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  color: var(--ats-text-main);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.iti .card-body ul.grn li i.fa-check,
.iti ul.grn li i.fa-check {
  color: var(--ats-primary);
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.iti .card-body ul.grn li i.fa-times,
.iti ul.rd li i.fa-times {
  color: #dc2626;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* FAQ Formatting */
#collapseThree .card-body>ul {
  list-style: none;
  padding: 0;
}

#collapseThree h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ats-dark);
  margin-top: 18px;
  margin-bottom: 6px;
}

#collapseThree h3 li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

#collapseThree h3 li i {
  color: var(--ats-gold);
  font-size: 12px;
}

#collapseThree p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ats-text-muted);
  padding-left: 20px;
  margin-bottom: 12px;
}

#collapseThree p ul {
  padding-left: 18px;
  margin-top: 6px;
}

/* Sticky Booking Form Card */
.booking-form {
  background: #ffffff;
  border: 1px solid var(--ats-border);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  margin-bottom: 24px;
}

.booking-form .form-heading {
  font-size: 19px;
  font-weight: 800;
  color: var(--ats-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: 5px;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--ats-gold-soft);
  text-align: center;
  background-color: var(--ats-primary-light);
  border-radius: 8px;
}

.booking-form .form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ats-dark);
  margin-bottom: 4px;
}

.booking-form .form-control {
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--ats-border);
  background: #f8fafc;
  font-size: 13.5px;
  padding: 8px 12px;
  transition: var(--ats-transition);
}

.booking-form textarea.form-control {
  height: 80px;
}

.booking-form .form-control:focus {
  background: #ffffff;
  border-color: var(--ats-primary);
  box-shadow: 0 0 0 3px rgba(15, 81, 50, 0.15);
  outline: none;
}

.booking-form .btn-dark {
  width: 100%;
  height: 46px;
  background: var(--ats-primary) !important;
  border: none !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(15, 81, 50, 0.25);
  transition: var(--ats-transition);
}

.booking-form .btn-dark:hover {
  background: var(--ats-dark) !important;
  transform: translateY(-2px);
}

/* Support & Contact Quick Widget */
.contact-inf {
  background: var(--ats-gold-soft);
  border: 1px dashed rgba(197, 137, 37, 0.4);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 24px;
  text-align: center;
}

.contact-inf h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ats-dark);
  margin-bottom: 8px;
}

.contact-inf p {
  font-size: 13px;
  color: var(--ats-text-muted);
  line-height: 1.5;
  margin-bottom: 14px;
}

.contact-inf a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none !important;
  margin-bottom: 8px;
  transition: var(--ats-transition);
}

.contact-inf .btn-trip {
  background: #16a34a;
  color: #ffffff;
}

.contact-inf .btn-trip-phn {
  background: #ffffff;
  color: var(--ats-dark);
  border: 1px solid var(--ats-border);
}

.contact-inf .btn-trip-email {
  background: #ffffff;
  color: var(--ats-dark);
  border: 1px solid var(--ats-border);
  margin-bottom: 0;
}

.contact-inf a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.1);
}

/* Price Checklist Widget */
.widget {
  background: #ffffff;
  border: 1px solid var(--ats-border);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 24px;
}

.widget .title-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ats-dark);
  border-bottom: 2px solid var(--ats-primary);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.widget .title-box .per {
  font-size: 12px;
  color: var(--ats-gold);
  margin-left: 5px;
}

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

.cat-item ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--ats-border);
  font-size: 13.5px;
  color: var(--ats-text-main);
}

.cat-item ul li:last-child {
  border-bottom: none;
}

.cat-item ul li i {
  color: var(--ats-gold);
  margin-right: 8px;
}

.cat-item ul li span {
  font-weight: 700;
  color: var(--ats-primary);
}

.theme-sidebar .title-box h3:after {
  background-color: transparent;
}

.theme-sidebar .title-box h3:before {
  background-color: transparent;
  bottom: 0;
  content: "";
  height: 0px;
}

.iti-content {
  margin-bottom: 0px;
}

.tags-item a {
  border: 1px solid var(--ats-primary-light);
  color: #ffffff;
  background-color: var(--ats-primary-light);
}

.tags-item a:hover {
  transition: all 0.4s;
  border: 1px solid var(--ats-gold);
  color: #fff;
  background-color: var(--ats-gold);
}

/* Mobile responsive constraints */
@media (max-width: 768px) {
  .iti h1 {
    font-size: 20px;
    text-align: left;
  }

  .iti-content h3 {
    text-align: left;
  }

  .iti-content h3 span {
    font-size: 18px;
  }

  .iti .card-body ul.grn li,
  .iti ul.grn li {
    text-align: left;
  }

  #collapseThree h3 li {
    text-align: left;
    line-height: 1.6;
  }

  .iti ul li {
    font-size: 14px;
  }

  #collapseThree p {
    font-size: 13px;
    line-height: 1.5;
  }
}



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

/* Tablet & Mobile Adjustments */
@media (max-width: 991px) {
  .img-banner {
    height: 350px;
    border-radius: 8px;
  }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
  .img-banner {
    /* Set a comfortable banner height for mobile viewports */
    height: 250px;
    border-radius: 6px;
    margin-bottom: 20px;
  }
}