/* ==========================================================================
   UDANKHATOLA - MODERN ROPEWAY & CABLE CAR WEB APPLICATION
   Design System with Gradient Typography, Hauora Font, & Exact Screenshot Styling
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN SYSTEM & CSS VARIABLES
   -------------------------------------------------------------------------- */
@import url("https://fonts.cdnfonts.com/css/hauora-sans");
@import url("https://fonts.googleapis.com/css2?family=Bayon&display=swap");

:root {
  /* Text Gradient definition from user specification */
  --text-gradient: linear-gradient(
    90deg,
    #fc2166 0%,
    #fc7144 50%,
    #fcb50a 100%
  );
  --button-gradient: linear-gradient(
    90deg,
    #fc2166 0%,
    #fc7144 50%,
    #fcb50a 100%
  );

  /* Brand Color Palette */
  --primary-orange: #fc7144;
  --primary-pink: #fc2166;
  --primary-yellow: #fcb50a;

  /* Neutral Color Tokens */
  --dark-bg: #0b0f19;
  --dark-card: #151c2e;
  --dark-footer: #0a0e17;
  --text-dark: #111827;
  --text-muted: #6b7280;
  --text-light: #f9fafb;

  /* Font Family: Hauora */
  --font-family:
    "Hauora", "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & TYPOGRAPHY
   -------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background-color: #ffffff;
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
a,
button,
input {
  font-family: var(--font-family);
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Gradient Text Helper Class */
.gradient-text {
  background: linear-gradient(90deg, #fc2166 0%, #fc7144 50%, #fcb50a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Smooth Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #fc7144;
  border-radius: 4px;
}
.top-bar {
  background: #fc2166;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 0 0px;
  text-align: center;
  position: relative;
  height: 40px;
  z-index: 9999;
}
.top-bar .marquee-line {
  padding: 0px 0 5px;
  height: 30px;
}
/* --------------------------------------------------------------------------
   3. HEADER / NAVIGATION BAR SECTION
   -------------------------------------------------------------------------- */
.navbar-custom {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1050;
  padding: 1.2rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.navbar-custom.scrolled {
  padding: 0.8rem 0;
  background: #0b0f19;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-logo {
  display: flex;
  align-items: center;
}

.brand-logo .logo-img {
  height: 50px; /* Adjust as needed */
  width: auto;
  display: block;
}
.hero-slide .timing {
  float: right;
  position: relative;
  z-index: 999;
  margin-top: 5px;
  margin-right: 10px;
}
.hero-slide .timing p {
}
@media (max-width: 767px) {
  .brand-logo .logo-img {
    height: 40px;
  }
}

.brand-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--button-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(252, 33, 102, 0.4);
}

.dropdown-toggle::after {
  display: none !important;
}

.nav-link-custom {
  color: rgb(233 230 230 / 90%) !important;
  font-weight: 400;
  font-size: 0.95rem;
  padding: 10px !important;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nav-link-custom i {
  font-size: 0.95rem;
  opacity: 0.85;
}

.nav-link-custom:hover,
.nav-link-custom.active {
  color: #fc7144 !important;
}

.nav-link-custom:hover i {
  opacity: 1;
  color: #fc7144;
}

/* Orange Toggle Button positioned RIGHT of Book Ticket */
.btn-toggle-orange {
  background: var(--button-gradient) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50px !important;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(252, 113, 68, 0.4);
  transition: all 0.3s ease !important;
  cursor: pointer;
  margin-left: 4px;
}

.btn-toggle-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(252, 33, 102, 0.6);
  color: #ffffff !important;
}

.btn-book-ticket {
  background: #fff;
  color: #fc7144;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.65rem 1.4rem;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 20px rgba(252, 113, 68, 0.4);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-book-ticket img {
  margin-right: 8px;
  vertical-align: middle;
}

.btn-book-ticket:hover {
  transform: translateY(-2px);
  background: #f2f2f2;
  box-shadow: 0 10px 25px rgba(252, 33, 102, 0.6);
  color: #000000;
}

.btn-login-link {
  color: #ffffff !important;
  font-weight: 700;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 0.8rem;
  transition: all 0.3s ease;
}

.btn-login-link:hover {
  color: #fc7144 !important;
}

.btn-help-icon {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
  background: rgb(194 194 194 / 22%);
  width: 102px;
  height: 42px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-help-icon img {
  margin-right: 8px;
  vertical-align: middle;
}

.btn-help-icon:hover {
  background: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   3B. DESKTOP HOVER MEGA DROPDOWN MENU
   -------------------------------------------------------------------------- */
.nav-item.dropdown {
  position: relative !important;
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover > .mega-dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
  }
}

.mega-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0 !important;
  transform: none !important;
  min-width: 520px;
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.06);
  z-index: 1200;
  margin-top: 0px;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  opacity: 0;
  visibility: hidden;
}

.mega-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 36px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid #ffffff;
}

.mega-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.mega-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 5px 10px;
  border-radius: 14px;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.mega-dropdown-item:hover {
  background: #f8fafc;
  transform: translateX(3px);
}

.mega-dest-thumb {
  width: 58px;
  height: 58px;

  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mega-dest-info {
  display: flex;
  flex-direction: column;
}

.mega-dest-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 2px;
}

.mega-dest-subtitle {
  font-size: 0.76rem;
  color: #6b7280;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   3C. OFFCANVAS MOBILE DRAWER MENU (Matches Screenshot 100%)
   -------------------------------------------------------------------------- */

.offcanvas {
  z-index: 99999 !important;
}

@media (max-width: 767px) {
  .offcanvas.offcanvas-end {
    left: 12px !important;
    width: calc(100% - 24px); /* 12px gap on left & right */
  }
}

.mobile-offcanvas-menu {
  width: 25% !important;
  max-width: 420px;
  background-color: #ffffff;
  border: none;
  font-family: var(--font-family);
}

.mobile-offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
}

.mobile-close-btn {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111827;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.mobile-close-btn:hover {
  background: #f1f5f9;
  color: var(--primary-pink);
}

.mobile-menu-list {
  list-style: none;
  padding: 0 1.25rem;
  margin: 0;
}

.mobile-menu-item {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0.5rem;
  color: #111827;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.mobile-menu-link:hover {
  background-color: #fafbfc;
  border-radius: 12px;
}

.mobile-item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-icon-box {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fc2166;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.mobile-item-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
  margin-bottom: 2px;
}

.mobile-item-desc {
  font-size: 0.82rem;
  color: #6b7280;
  font-weight: 500;
}

.mobile-chevron-icon {
  color: #111827;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.mobile-menu-link[aria-expanded="true"] .mobile-chevron-icon {
  transform: rotate(180deg);
}

.mobile-submenu-collapse {
  padding-left: 3.5rem;
  padding-bottom: 0.8rem;
}

.mobile-submenu-collapse a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}

.mobile-submenu-collapse a:hover {
  color: #fc7144;
}
.navbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 25, 0.8) 0%,
    rgba(11, 15, 25, 0) 100%
  );
  z-index: -1;
}
/* --------------------------------------------------------------------------
   4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 60vh;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 20px 90px 20px;
  color: #ffffff;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  z-index: 1;
}

.hero-simple-subheading {
  font-size: 19px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 2.3px;
  color: #fff;
  margin: 0 auto 18px auto;
  text-align: center;
  background: none !important;
  border: none !important;
  padding: 0 !important;
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 25px auto;
  max-width: 920px;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: -1px;
}

.select-destinations-simple {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 auto 25px auto;
  text-align: center;
  background: transparent;
  padding: 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50px;
  display: inline-block;
}

/* --------------------------------------------------------------------------
   5. DESTINATIONS CAROUSEL / GRID (All 8 Cards Fixed on Large Screens)
   -------------------------------------------------------------------------- */
.destinations-wrapper {
  position: relative;
  margin-top: -80px;
  z-index: 20;
  padding-bottom: 40px;
}

/* Default Mobile/Tablet Scrollable Layout */
.destinations-scroll-container {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 10px 10px 25px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.destinations-scroll-container::-webkit-scrollbar {
  height: 6px;
}

.destinations-scroll-container::-webkit-scrollbar-thumb {
  background: #fc7144;
  border-radius: 4px;
}

.destination-card {
  flex: 0 0 155px;
  min-width: 145px;
  scroll-snap-align: start;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.dest-img-box {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid #ffffff;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px -1px;
  transition: border-color 0.3s ease;
}

.destination-card:hover .dest-img-box {
  border-color: #fcdc0a;
}

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

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

.dest-info {
  padding: 8px 4px 4px 4px;
  text-align: center;
}

.dest-info .dest-title {
  font-size: 0.9rem !important;
  font-weight: 700;
  color: #2b2828;
  margin-bottom: 2px;
  text-overflow: ellipsis;
}
.dest-info .dest-title a {
  color: #2b2828;
  text-decoration: none;
}

.dest-location {
  font-size: 0.74rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Large Screens: 8 Fixed Cards in 1 Row without scrolling! */
@media (min-width: 992px) {
  .destinations-scroll-container {
    display: grid !important;
    grid-template-columns: repeat(8, 1fr) !important;
    gap: 12px !important;
    overflow-x: visible !important;
    padding: 10px 0 25px 0 !important;
  }

  .destination-card {
    flex: none !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 6px !important;
    border-radius: 16px !important;
  }

  .dest-img-box {
    height: 185px !important;
    border-radius: 24px !important;
  }

  .dest-title {
    font-size: 18px !important;
    font-weight: 700 !important;
  }

  .dest-location {
    font-size: 0.7rem !important;
  }
}

/* --------------------------------------------------------------------------
   6. STATS COUNTER SECTION
   -------------------------------------------------------------------------- */
.stats-section {
  background: #ffffff;
  padding: 55px 0;
  border-bottom: 1px solid #f1f5f9;
}

.stat-item-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: left;
  padding: 10px;
}

.stat-number {
  font-size: 60px;
  font-weight: 900;
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.stat-label {
  font-size: 22px;
  font-weight: 700;
  color: #374151;
  line-height: 1.3;
}

/* --------------------------------------------------------------------------
   7. WHY CHOOSE UDANKHATOLA SECTION
   -------------------------------------------------------------------------- */
.why-choose-section {
  padding: 50px 0;
  background-color: #ffffff;
}

.section-badge-simple {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 12px;
  background: none;
  padding: 0;
}

.section-title {
  font-size: 51px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 55px auto;
  font-weight: 500;
}

.feature-card-simple {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  height: 100%;
  transition: all 0.35s ease;
}

.feature-img-wrapper {
  width: 100%;
  height: 330px;
  overflow: hidden;
  border-radius: 30px;
  border: 6px solid #fff;
  margin-bottom: 33px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.feature-img-wrapper:hover {
  /* transform: translateY(-4px); */
  border: 6px solid #fff;
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(255, 255, 255, 1);
}

.feature-card-simple:hover .feature-img-wrapper img {
  transform: scale(1.06);
}

.feature-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #474343;
  margin-bottom: 10px;
}

.feature-card-desc {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.55;
  font-weight: 500;
}

.btn-read-more-dark {
  background: #111827;
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 5px 8px 18px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 45px;
  box-shadow: 0 6px 20px rgba(17, 24, 39, 0.25);
}

#btn-read-more-cta {
  background: #fff;
  color: #fc7144 !important;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 22px;
}

#Adventure-yellow {
  background: #fcdc0a;
  color: #000 !important;
  font-size: 0.9rem;
  font-weight: 600;
}

#guideline-yellow {
  background: #fcdc0a;
  color: #000 !important;
  font-size: 0.9rem;
  font-weight: 600;
}

.btn-read-more-dark:hover {
  background: #fc7144;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 113, 68, 0.4);
}

.btn-arrow-circle {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

.btn-arrow-cta {
  width: 38px;
  height: 38px;
  background: #fc7144;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
}

/* --------------------------------------------------------------------------
   8. SPECIAL GROUP OFFERS / PROMO BANNER SECTION
   -------------------------------------------------------------------------- */
.promo-section {
  padding: 30px 0 80px 0;
}

.promo-card-wrapper-full {
  position: relative;
  background: url("../images/promo-section.png") center/cover no-repeat;
  border-radius: 28px;
  padding: 65px 50px;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
  overflow: hidden;
}

.promo-h5-yellow {
  color: #fcdc0a !important;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.promo-title {
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.promo-desc {
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 35px;
  max-width: 520px;
  line-height: 1.6;
}

.btn-explore-now {
  background: #ffc107;
  color: #111827 !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
  transition: all 0.3s ease;
}

.btn-explore-now:hover {
  background: #ffffff;
  color: #fc7144 !important;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   9. CUSTOMER REVIEWS / TESTIMONIALS SLIDER SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgb(11 15 25 / 17%) 0%, rgb(11 15 25 / 0%) 100%),
    url(../images/testimonial.png) center / cover scroll;
  color: #ffffff;
  overflow: hidden;
}

.testimonial-carousel-container {
  overflow: hidden;

  width: 100%;
}

left-testi p {
  text-align: left !important;
  align-items: start;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  padding-top: 13px;
}

.testimonial-card-slide {
  flex: 0 0 calc(33.333% - 16px);
  min-width: 300px;
}

@media (max-width: 991.98px) {
  .testimonial-card-slide {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 767px) {
  .testimonial-card-slide {
    flex: 0 0 100%;
  }

  .d-none {
    display: none;
  }
  .mobile-offcanvas-menu {
    width: 100% !important;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  transition: all 0.35s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(252, 113, 68, 0.5);
}

.star-rating {
  color: #ffc107;
  font-size: 1.15rem;
  margin-bottom: 20px;
  display: flex;
  gap: 5px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin-bottom: 28px;
  font-style: italic;
}

#testimonial-item-border {
  border-right: 1px solid #5f5f5f;
}

.user-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fc7144;
}

.user-name {
  font-size: 0.98rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.user-location {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.slider-nav-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 45px;
}

.btn-slider {
  width: 148px;
  height: 48px;
  border-radius: 44px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.btn-slider:hover {
  background: var(--button-gradient);
  border-color: transparent;
  transform: scale(1.05);
}

/* --------------------------------------------------------------------------
   10. GROUP TICKET HERO CALLOUT SECTION
   -------------------------------------------------------------------------- */
.group-ticket-section {
  width: 100%;
  background: url("../images/cta.png") center center / cover no-repeat;
  padding: 0;
}

.group-ticket-section .container {
  max-width: 1350px;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.group-ticket-banner {
  width: 100%;
  min-height: 500px; /* optional */

  overflow: hidden;
  position: relative;
  color: #fff;
  box-shadow: none; /* remove if you don't want shadow */
}

.group-banner-content {
  padding: 60px 45px;
  z-index: 5;
}

.group-tag {
  background: #fcdc0a;
  color: #111827;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}

.group-heading {
  font-family: "Bayon", sans-serif;
  font-size: 102px;
  font-weight: 400; /* Bayon has only one weight */
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1;
}

.group-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 12px;
  max-width: 480px;
}

.btn-group-book {
  background: #ffffff;
  color: #fc7144 !important;
  font-size: 0.95rem;
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-group-book:hover {
  background: var(--button-gradient);
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(252, 113, 68, 0.5);
}

.group-banner-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

/* --------------------------------------------------------------------------
   11. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer-section {
  background: var(--dark-footer);
  color: rgba(255, 255, 255, 0.75);
  padding: 85px 0 35px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin: 18px 0 25px 0;
  line-height: 1.65;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-text h4 {
  color: #fff;
}
.social-link {
  width: 38px;
  height: 38px;
  /* border-radius: 50%;
  background: rgba(109, 109, 109, 0.795); */
  color: #ffffff;
  display: flex;

  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--button-gradient);
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 22px;
}

.footer-links {
  list-style: none;
  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 18px;
  padding-bottom: 8px;
  border-bottom: 1px solid #4d4545;
}

.footer-links a {
  color: #fff;
  transition: all 0.3s ease;
  font-weight: 500;
  display: inline-block;
}

.footer-links a:hover {
  color: #fc7144;
  padding-left: 6px;
}

.location-contact-item {
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.location-name {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-phone {
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 25px;
  margin-top: 60px;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.5);
}

/* Custom footer location styles matching mockups */
.footer-contact-item {
  margin-bottom: 24px;
}

.footer-contact-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer-contact-title span {
  font-weight: 400;
  color: #f1f1f1;
  font-size: 0.85rem;
  margin-left: 2px;
}

.footer-contact-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.footer-contact-info i {
  color: #fcb50a;
  font-size: 0.85rem;
  width: 14px;
}

.footer-contact-info a {
  color: #fff;
}
.footer-contact-info a:hover {
  color: #fc7144;
}

/* --------------------------------------------------------------------------
   12. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .section-title {
    font-size: 2.2rem;
  }
  .promo-title {
    font-size: 32px;
  }
  .group-heading {
    font-size: 2.6rem;
  }
  .mega-dropdown-menu {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    padding-top: 130px;
  }
  .hero-title {
    font-size: 1.9rem;
  }
  .stat-number {
    font-size: 2.3rem;
  }
  .promo-card-wrapper-full {
    padding: 22px 2px 71px 15px;
    position: relative;
    background: url("../images/promo-phone.png") center/cover no-repeat;
    border-radius: 24px;

    color: #ffffff;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.896);
  }

  .promo-h5-yellow {
    font-size: 17px;
  }

  .promo-desc {
    font-size: 15px;
    margin-bottom: 5px;
  }

  #Adventure-yellow {
    margin-bottom: 165px;
    margin-top: 5px;
  }

  #grouptickets {
    padding: 40px 14px;
    background: url("../images/grouptickets-phone.png") center/cover no-repeat;
  }

  .group-banner-content {
    padding: 22px 8px;
  }
}

/* login page css start */

.login-section {
  background:
    linear-gradient(192deg, rgba(0, 0, 0, 0.073) 0%, rgba(11, 15, 25, 0)),
    url(../images/loginbg.png) center / cover no-repeat;

  width: 100%;
  padding: 119px 10px 50px 10px;
}

.login-section .container-fluid {
  padding-left: 5%;
  padding-right: 5%;
}

.left-img {
  max-width: 85%;
}

.login-card {
  width: 100%;
  max-width: 520px;
  background: #fff;
  border-radius: 20px;
  padding: 45px 35px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  margin: 40px 0;
}

.logo {
  height: 45px;
}

.custom-input {
  height: 52px;
  border: none;
  border-radius: 30px;
  background: #f3f4f6;
  padding: 0 20px;
  box-shadow: none;
}

.custom-input:focus {
  background: #f3f4f6;
  box-shadow: none;
  border: none;
}

.login-btn {
  height: 52px;
  border: none;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(90deg, #fdb515, #ff4b78);
}

.small a,
p a {
  color: #ff4b78;
  text-decoration: none;
}

@media (max-width: 991px) {
  .login-section {
    padding: 120px 5px 30px 5px;
    min-height: auto;
  }

  #register {
    padding: 90px 3px 30px 3px;
  }

  .login-card {
    max-width: 100%;
    margin: 20px auto;
    padding: 35px 25px;
  }
}
/* login page end */

/* modal */

.modal-dialog {
  max-width: 1200px;
}

.modal-content {
  box-shadow: none;
  border: none;
}

.modal-body {
  padding: 0;
}

.modal-backdrop.show {
  opacity: 0.7;
}
/* modal end */

/* //guidelines page css// */

.guideline-sec {
  position: relative;
  min-height: 30vh;
  background: url(../images/guideline/guideline-hero.png) center / cover
    no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 160px 20px 90px 20px;
  color: #ffffff;
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
  z-index: 1;
}

.guideline-sec-subheading {
  font-size: 20px;
  font-weight: 500;

  letter-spacing: 0.7px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 18px auto;
  text-align: center;
}
.guideline-title {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto 25px auto;
  max-width: 920px;
  text-align: center;

  letter-spacing: -1px;
}

/* // facilities section css// */

.guideline-facilities {
  padding: 50px 0 !important;
}

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

.facilities-heading {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}

.facilities-heading span {
  display: inline-block;
  color: #0588ca;
  font-weight: 600;

  letter-spacing: 1px;
  margin-bottom: 12px;
}

.facilities-heading h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #0c0c0d;
  margin-bottom: 20px;
}

.facilities-heading p {
  font-size: 17px;
  color: #666;
  line-height: 1.8;
}

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

.facilities-card {
  background: #f9f9f9;
  padding: 35px 18px;
  border-radius: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: 0.35s;
  border: 3px solid #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.facilities-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.facilities-icon {
  width: 70px;
  height: 70px;
  background: #0588ca;
  color: #fff;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 25px;
}

.facilities-card h3 {
  font-size: 18px;
  color: #16233b;
  font-weight: 600;
  margin-bottom: 5px;
  text-align: center;
}

.facilities-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 2px;
  text-align: center;
  flex: 1;
}

.facilities-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 19px;
  background: #0588ca;
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  margin: auto auto 0;
}

.facilities-btn:hover {
  background: #16233b;
  color: #fff;
}

@media (max-width: 991px) {
  .facilities-heading h2 {
    font-size: 34px;
  }

  .guideline-facilities {
    padding: 80px 0;
  }
}

@media (max-width: 767px) {
  .facilities-heading h2 {
    font-size: 28px;
  }

  .guideline-title {
    font-size: 44px;
  }

  .facilities-card {
    padding: 25px;
  }

  .facilities-card h3 {
    font-size: 22px;
  }
}

/* facilities section end  */

/* guideline-not-allowed section */

.Guide-n-allowed {
  position: relative;
  background: linear-gradient(90deg, #ff5659 0%, #fc2166 50%, #993335 100%);

  border-radius: 18px;

  padding: 65px 20px 0 60px;
  color: #ffffff;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
  overflow: hidden;
}

#not-heading h1 {
  font-size: 45px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

/* ---new */

.guideline-not-allowed {
  padding: 20px 0 30px 0;
}

.guideline-not-allowed .container {
  max-width: 1280px;
  margin: auto;
  padding: 40px 20px;
}

.not-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 35px;
}

.guide-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.left-img {
  max-width: 100%;
  height: auto;
}

.content-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Tablet */
@media (max-width: 991px) {
  .content-box {
    height: auto;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .guideline-not-allowed {
    padding: 30px 0;
  }

  .not-heading {
    font-size: 38px;
    text-align: center;
  }

  .guide-icon-box {
    align-items: flex-start;
  }

  .left-img {
    max-width: 350px;
    margin: 30px auto 0;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .not-heading {
    font-size: 30px;
  }

  .guideline-not-allowed .container {
    padding: 10px 10px;
  }

  .Guide-n-allowed {
    padding: 25px 16px;
  }

  #not-heading h1 {
    font-size: 32px;
  }

  .guide-icon-box {
    gap: 12px;
  }

  .guide-icon-box img {
    width: 32px;
    height: 32px;
  }

  .guide-icon-box p {
    font-size: 16px;
  }
}

.not-heading {
  margin-bottom: 30px;
}

.guide-icon-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.guide-icon-box img {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}

.guide-icon-box p {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
}

/* Mobile */
@media (max-width: 767px) {
  .guide-icon-box {
    gap: 12px;
  }

  .guide-icon-box img {
    width: 30px;
    height: 30px;
  }

  .guide-icon-box p {
    font-size: 16px;
  }
}

* Gallery Section
 * -------------------------------------------------- */

/* --------------------------------------------------
 * Background Text Marquee
 * -------------------------------------------------- */
.gallery-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-text-container {
  position: relative;
  inset: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bg-text-marquee {
  display: flex;
  width: max-content;
  animation: scroll-left-text 45s linear infinite;
}

.image-marquee-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: -30px;
}

.bg-text-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.bg-text-track span {
  font-size: clamp(
    80px,
    11vw,
    150px
  ); /* Responsive sizing: shrinks nicely on mobile */
  font-weight: 900;
  color: #f3f3f3; /* Very light grey matching the image mockup */
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1;
}

.bg-text-track .sparkle {
  font-size: clamp(50px, 7vw, 95px);
  color: #e5e5e5; /* Slightly darker grey sparkle for visual balance */
  margin: 0 45px;
  display: inline-block;
}

/* --------------------------------------------------
 * Foreground Images Marquee
 * -------------------------------------------------- */

.image-marquee-wrapper {
  display: flex;
  width: max-content;
  animation: scroll-left-images 30s linear infinite;
  transition: animation-play-state 0.3s ease;
}

/* Pause scroll when user hovers over the gallery */
.image-marquee-wrapper:hover {
  animation-play-state: paused;
}

.image-marquee-track {
  display: flex;
  align-items: center; /* Vertically center cards before applying offsets */
  flex-shrink: 0;
  gap: 30px; /* Horizontal spacing between cards */
  padding-right: 30px; /* Exact match with gap to ensure perfect infinite looping */
}

/* Alternating Up and Down (Upar-Niche) Layout */
.image-marquee-track .gallery-card:nth-child(odd) {
  margin-top: -35px; /* Shunted upwards */
}

.image-marquee-track .gallery-card:nth-child(even) {
  margin-top: 35px; /* Shunted downwards */
}

/* --------------------------------------------------
 * Gallery Card Styling (Rounded, Shadowed, Hoverable)
 * -------------------------------------------------- */
.gallery-card {
  width: 280px; /* Default size for nice desktop representation */
  height: 380px;
  border-radius: 28px; /* Large, smooth rounded corners matching mockup */
  overflow: hidden;
  background: #ffffff;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.08),
    0 5px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.015);
  transition:
    transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
    box-shadow 0.4s ease;
  cursor: pointer;
  position: relative;
}

/* Card hover animation (smooth lift & scale) */
.gallery-card:hover {
  transform: translateY(-12px) scale(1.02); /* Lifts up and zooms in slightly */
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.16),
    0 8px 25px rgba(0, 0, 0, 0.08); /* High contrast depth shadow */
}

.gallery-card img {
  width: 100%;
  height: 100%;
  border: 4px solid #fff;
  object-fit: cover;
  border-radius: 31px;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Image zoom effect inside card on hover */
.gallery-card:hover img {
  transform: scale(1.05);
}

/* --------------------------------------------------
 * Keyframes for Seamless Loop Animations
 * -------------------------------------------------- */
@keyframes scroll-left-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-left-images {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------
 * Mobile & Tablet Responsiveness
 * -------------------------------------------------- */
@media (max-width: 768px) {
  .gallery-section {
    padding: 20px 0;
    min-height: 220px;
  }

  .bg-text-container {
    top: 42%;
  }

  .bg-text-track span {
    font-size: 48px;
    letter-spacing: 2px;
  }

  .bg-text-track .sparkle {
    font-size: 32px;
    margin: 0 15px;
  }

  .image-marquee-container {
    padding: 35px 0;
    overflow: hidden;
  }

  .image-marquee-track {
    gap: 15px;
  }

  .gallery-card {
    width: 170px;
    height: 230px;

    flex: 0 0 170px; /* Prevent cards from stretching */
  }

  .image-marquee-track .gallery-card:nth-child(odd) {
    margin-top: -12px;
  }

  .image-marquee-track .gallery-card:nth-child(even) {
    margin-top: 12px;
  }

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

/* * FAQ Section Styling */

.faq-section {
  background-color: #fff;
  padding: 50px 0;
}

.faq-badge {
  border: 1px solid #aaaaaa71;
  color: #475569;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  display: inline-flex;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
  letter-spacing: 0.05em;
}

.faq-badge span {
  color: #000;
  margin-left: 8px;
}
.faq-title {
  font-size: 45px;
  font-weight: 600;
  color: #000;
  margin-top: 14px;
  margin-bottom: 40px;
}

.faq-accordion {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-card {
  background-color: #ffffff;
  border-radius: 18px; /* Smooth rounded corners */
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow:
    0 5px 15px rgba(0, 0, 0, 0.015),
    0 2px 4px rgba(0, 0, 0, 0.005);
  transition:
    background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;

  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  transition: color 0.3s ease;
  cursor: pointer;
}

.faq-btn:focus {
  outline: none;
}

.faq-btn strong {
  font-weight: 700;
  margin-right: 2px;
}

.faq-icon-svg {
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    color 0.3s ease;
  color: #64748b;
  flex-shrink: 0;
  margin-left: 15px;
}

.faq-body {
  padding: 0 28px 24px 28px;
  color: #475569;
  font-size: 0.98rem;
  text-align: justify;
  line-height: 1.65;
  transition: color 0.3s ease;
}

/* --------------------------------------------------
 * Open/Active Accordion States (Orange Color Scheme)
 * Supported via modern CSS :has() & JS fallback class
 * -------------------------------------------------- */
.faq-card:has(.faq-btn:not(.collapsed)),
.faq-card.faq-active {
  background-color: #ff6d42; /* Premium Coral Orange matching mockup */
  border-color: #ff6d42;
  box-shadow: 0 15px 35px rgba(255, 109, 66, 0.22);
}

.faq-card:has(.faq-btn:not(.collapsed)) .faq-btn,
.faq-card.faq-active .faq-btn {
  color: #ffffff;
}

.faq-card:has(.faq-btn:not(.collapsed)) .faq-icon-svg,
.faq-card.faq-active .faq-icon-svg {
  transform: rotate(180deg);
  color: #ffffff;
}

.faq-card:has(.faq-btn:not(.collapsed)) .faq-body,
.faq-card.faq-active .faq-body {
  color: rgba(255, 255, 255, 0.92);
}

/* Mobile adjustments for FAQ */
@media (max-width: 768px) {
  .faq-section {
    padding: 30px 0;
  }
  .faq-title {
    margin-bottom: 30px;
    font-size: 29px;
  }
  .faq-btn {
    padding: 18px 20px;
    font-size: 0.98rem;
  }
  .faq-body {
    padding: 0 20px 18px 20px;
    font-size: 0.92rem;
  }
}

/* faq section end */
/* contact guildeline last section start styling */

.contact-section {
  background-color: #fff; /* Matches FAQ section background */
  padding: 20px 0 40px 0; /* Tight spacing at top since FAQ already has bottom padding */
}

.contact-card {
  background-color: #ffffff;
  border-radius: 36px; /* Extra smooth, large corner radius for modern card container */
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.025);
  max-width: 1240px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.025);
}

.contact-img-wrapper {
  border-radius: 24px;
  overflow: hidden;
  height: 480px; /* Uniform height for support image block */
  background-color: #fcfcfc;
}

.contact-img-wrapper img {
  object-fit: cover;
  display: block;
}

.contact-title {
  font-weight: 800;
  color: #0f172a;
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 6px;
}

.contact-subtitle {
  color: #64748b;
  font-size: 0.98rem;
  margin-bottom: 28px;
}

.contact-form .form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 8px;
}

/* Custom styled inputs */
.contact-input {
  background-color: #f1f3f5 !important;
  border: 1px solid transparent !important;
  border-radius: 14px !important;
  padding: 14px 20px !important;
  font-size: 0.96rem !important;

  color: #1e293b !important;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
}

.contact-input::placeholder {
  color: #94a3b8;
}

.contact-input:focus {
  background-color: #ffffff !important;
  border-color: #ff6d42 !important; /* Focus glows in orange theme */
  box-shadow: 0 0 0 4px rgba(255, 109, 66, 0.1) !important;
  outline: none;
}

/* Message Container containing Textarea and Submit button inside it */
.message-container {
  position: relative;
  background-color: #f1f3f5;
  border-radius: 16px;
  border: 1px solid transparent;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.message-container:focus-within {
  background-color: #ffffff;
  border-color: #ff6d42;
  box-shadow: 0 0 0 4px rgba(255, 109, 66, 0.1);
}

.message-textarea {
  background: #f3f4f6 !important;
  border-radius: 20px;
  resize: none !important;
  border: none;
  padding: 16px 20px 70px 20px !important; /* Large bottom padding to accommodate submit button placement */
  font-size: 0.96rem !important;

  color: #1e293b !important;
  width: 100% !important;
}

.message-textarea:focus {
  box-shadow: none !important;
  outline: none !important;
}

.message-textarea::placeholder {
  color: #94a3b8;
}

/* Submit button floated in bottom right of container */

/* Mobile responsive formatting */
@media (max-width: 991px) {
  .contact-card {
    padding: 24px;
  }
  .contact-img-wrapper {
    height: 320px;
  }
  .contact-title {
    margin-top: 15px;
  }
}

/* mansa-devi-ropeway page */

.mansadevi-banner {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background: url("../images/mansa-devi/mansa-devi-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

.mansadevi-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mansadevi-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.78),
    rgba(0, 0, 0, 0.42),
    rgba(0, 0, 0, 0.18)
  );
}

.mansadevi-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 25px 50px;
}

.mansadevi-content h1 {
  color: #fff;
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.1;
}

.mansadevi-content p {
  font-size: 17px;
  color: #fff;
  width: 840px;
}

.mansadevi-info {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  align-items: center;
  margin-bottom: 30px;
}

.mansadevi-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 19px;
  font-weight: 500;
}

.mansadevi-item i {
  color: #ffd400;
  font-size: 20px;
}

.mansadevi-item span {
  font-size: 15px;
}

/*============================*/

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(45, 45, 38, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: 60px;
  padding: 9px 22px 9px 14px;
}

.live-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #123b24;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 7px rgba(53, 255, 107, 0.08);
}

.live-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #32d35a;
}

.live-status p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 2px;
}

/*============================*/

@media (max-width: 991px) {
  .mansadevi-banner {
    min-height: 500px;
  }

  .mansadevi-content {
    padding: 0 20px 40px;
  }

  .mansadevi-content h1 {
    font-size: 44px;
  }

  .mansadevi-info {
    gap: 18px;
  }

  .mansadevi-item {
    font-size: 17px;
  }

  .mansadevi-item i {
    font-size: 22px;
  }

  .live-status {
    width: 100%;
    justify-content: flex-start;
  }

  .live-status p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .mansadevi-banner {
    min-height: 470px;
  }

  .mansadevi-content h1 {
    font-size: 34px;
    margin-bottom: 20px;
  }

  .mansadevi-content p {
    width: auto;
  }

  .mansadevi-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
  }

  .mansadevi-item {
    font-size: 16px;
  }

  .mansadevi-item i {
    font-size: 20px;
  }

  .live-status {
    padding: 12px 18px 12px 12px;
    border-radius: 18px;
  }

  .live-status p {
    font-size: 15px;
    line-height: 1.4;
  }
}

/* stats-section */

.mansadevi-stats-section {
  background: #fff;
  padding: 50px 0;
  margin: 0 auto;
  max-width: 1300px;
}

.mansadevi-stats-container {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.mansadevi-stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mansadevi-stat-icon {
  width: 86px;
  height: 86px;
  min-width: 86px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.mansadevi-stat-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mansadevi-stat-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  line-height: 1;
  margin-bottom: 0;
  white-space: nowrap;
}

.mansadevi-stat-content p {
  font-size: 18px;
  color: #666;
  font-weight: 500;
  margin: 0;
}

/* Tablet */

@media (max-width: 992px) {
  .mansadevi-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
  }

  .mansadevi-stat-content h2 {
    font-size: 38px;
  }

  .mansadevi-stat-content p {
    font-size: 21px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .mansadevi-stats-section {
    padding: 30px 15px;
  }

  .mansadevi-stats-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mansadevi-stat-box {
    gap: 15px;
  }

  .mansadevi-stat-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    font-size: 34px;
  }

  .mansadevi-stat-content h2 {
    font-size: 30px;
  }

  .mansadevi-stat-content p {
    font-size: 18px;
  }
}
/* stats-section-end */
/* ticket-section */

.ticket-section {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 15px;
}

.ticket-table {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

.ticket-header {
  background: #ff6d3f;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px;
  font-size: 21px;
  font-weight: 500;
  text-transform: uppercase;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 28px;
}

#ticket-last-row {
  border-radius: 0 0 28px 28px;
  margin-bottom: 3px;
}

.ticket-row:nth-child(odd) {
  background: #fff;
}

.ticket-row:nth-child(odd) {
  background: #fff3ef;
  margin: 0 4px;
}

.ticket-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.ticket-left i {
  font-size: 30px;
  color: #ff6d3f;
  width: 36px;
  text-align: center;
}

.ticket-left h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2d2d2d;
}

.ticket-price {
  font-size: 18px;
  font-weight: 700;
  color: #2d2d2d;
}

.ticket-heading {
  max-width: 600px;
  margin-bottom: 35px;
}

.ticket-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.ticket-heading p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

@media (max-width: 576px) {
  .ticket-heading h2 {
    font-size: 32px;
  }

  .ticket-heading p {
    font-size: 16px;
  }
}

/* Tablet */

@media (max-width: 991px) {
  .ticket-header {
    font-size: 28px;
  }

  .ticket-left h4,
  .ticket-price {
    font-size: 24px;
  }

  .ticket-left i {
    font-size: 24px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .ticket-header {
    font-size: 20px;
    padding: 18px;
  }

  .ticket-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px;
  }

  .ticket-left {
    gap: 12px;
  }

  .ticket-left h4 {
    font-size: 18px;
  }

  .ticket-price {
    font-size: 20px;
    margin-left: 48px;
  }

  .ticket-left i {
    font-size: 20px;
    width: 24px;
  }
}

/* ticket-section */

/* mansa-devi-about */
.mansa-devi-section {
  padding: 70px 20px;
  background-color: #f7f7f7;
  margin-top: 35px;
}

.mansa-devi-section-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.15;
}

.mansa-devi-wrapper {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 45px;
  align-items: center;
}

.mansa-devi-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 35px;
  border: 5px solid #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.mansa-devi-content h3 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 22px;
}

.mansa-devi-content ul {
  padding-left: 28px;
}

.mansa-devi-content li {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 7px;
}

/* Tablet */

@media (max-width: 991px) {
  .mansa-devi-section-title {
    font-size: 42px;
  }

  .mansa-devi-wrapper {
    grid-template-columns: 1fr;
  }

  .mansa-devi-image img {
    height: 420px;
  }

  .mansa-devi-content h3 {
    font-size: 34px;
  }

  .mansa-devi-content li {
    font-size: 20px;
  }
}

/* Mobile */

@media (max-width: 576px) {
  .mansa-devi-section {
    padding: 60px 15px;
  }

  .mansa-devi-section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .mansa-devi-wrapper {
    gap: 30px;
  }

  .mansa-devi-image img {
    height: 260px;
    border-radius: 22px;
  }

  .mansa-devi-content h3 {
    font-size: 28px;
  }

  .mansa-devi-content ul {
    padding-left: 20px;
  }

  .mansa-devi-content li {
    font-size: 17px;
    line-height: 1.7;
  }
}
/* end */
/* Nearby location css */
.mansa-nearby-section {
  padding: 5px 20px 40px 20px;
  background: #f7f7f7;
}

.mansa-nearby-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 35px;
  align-items: center;
}

.mansa-nearby-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 15px;
  padding: 22px 0;
  border-bottom: 1px solid #e5e5e5;
}

.mansa-nearby-item:last-child {
  border-bottom: none;
}

.mansa-nearby-label {
  font-size: 16px;
  color: #777;
  font-weight: 600;
  text-transform: uppercase;
}

.mansa-nearby-value {
  font-size: 18px;
  color: #333;
  font-weight: 500;
  line-height: 1.7;
}

.mansa-nearby-image img {
  width: 100%;
  display: block;
  border-radius: 24px;
  border: 4px solid #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* Tablet */
@media (max-width: 991px) {
  .mansa-nearby-container {
    grid-template-columns: 1fr;
  }

  .mansa-nearby-image {
    order: -1;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .mansa-nearby-section {
    padding: 20px 15px;
  }

  .mansa-nearby-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .mansa-nearby-label {
    font-size: 14px;
  }

  .mansa-nearby-value {
    font-size: 16px;
    line-height: 1.6;
  }

  .mansa-nearby-image img {
    border-radius: 18px;
  }
}

/* nearby location section */
.nearby-section {
  padding: 70px 20px;
  background-color: #fafafa;
}

.mansa-devi-container {
  max-width: 1280px;
  margin: auto;
}

.category-title {
  font-size: 20px;
  font-weight: 700;
  margin: 45px 0 25px;
  color: #111111;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.mansa-devi-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mansa-devi-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #ffffff;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid #ebebeb;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.mansa-devi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(255, 107, 53, 0.3);
}

.mansa-devi-card img {
  width: 188px;
  height: 243px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  flex: 1;
  min-width: 0;
}

.card-content h3 {
  font-size: 19px;
  font-weight: 700;
  color: #222222;
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-content p {
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 14px;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 50px;
  background: #f4f4f6;
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s ease;
  width: fit-content;
}

.location-btn:hover {
  background: #ff6b35;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.location-btn svg {
  width: 18px;
  height: 18px;
  fill: #ff6b35;
  transition: fill 0.25s ease;
}

.location-btn:hover svg {
  fill: #ffffff;
}

/* Tablet Large (992px to 1199px) */
@media (max-width: 1199px) {
  .mansa-devi-cards {
    gap: 20px;
  }

  .mansa-devi-card {
    padding: 14px;
    gap: 14px;
  }

  .mansa-devi-card img {
    width: 125px;
    height: 160px;
  }

  .card-content h3 {
    font-size: 17px;
  }

  .card-content p {
    font-size: 13.5px;
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) {
  .nearby-section {
    padding: 55px 20px;
  }

  .mansa-devi-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .mansa-devi-card {
    padding: 14px;
  }

  .mansa-devi-card img {
    width: 115px;
    height: 145px;
    border-radius: 12px;
  }

  .category-title {
    font-size: 18px;
    margin: 35px 0 20px;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .nearby-section {
    padding: 40px 16px;
  }

  .category-title {
    font-size: 16px;
    font-weight: 700;
    margin: 28px 0 16px;
    letter-spacing: 0.6px;
    color: #ff6b35;
  }

  .mansa-devi-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mansa-devi-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.05);
    border: 1px solid #ebebeb;
  }

  .mansa-devi-card img {
    width: 100px;
    height: 110px;
    min-width: 100px;
    border-radius: 12px;
    object-fit: cover;
  }

  .card-content {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }

  .card-content h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #1a1a1a;
  }

  .card-content p {
    font-size: 13px;
    line-height: 1.4;
    margin-bottom: 8px;
    color: #666666;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .location-btn {
    padding: 6px 14px;
    font-size: 12.5px;
    gap: 6px;
  }

  .location-btn svg {
    width: 15px;
    height: 15px;
  }
}

/* Small Mobile (under 400px) */
@media (max-width: 400px) {
  .mansa-devi-card {
    gap: 10px;
    padding: 10px;
  }

  .mansa-devi-card img {
    width: 88px;
    height: 100px;
    min-width: 88px;
    border-radius: 10px;
  }

  .card-content h3 {
    font-size: 15px;
  }

  .card-content p {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .location-btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}

/* nearby location end */

/* mansa-devi-ropeway-page-end */

/* \\uttrakhand destination page start css\\ */

/* hero section css */

#uttrakhand-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  background: url("../images/uttrakhand/destination_banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 0 0 40px 40px;
  overflow: hidden;
}

/* end */

.uttrakhand-tab-section {
  padding: 70px 20px;
  background: linear-gradient(90deg, #ff166c, #ff7f11, #ffc400);
}

.uttrakhand-container {
  max-width: 1280px;
  margin: auto;
}

.uttrakhand-tab-section h2 {
  color: #fff;
  font-size: 38px;
  margin-bottom: 25px;
}

.uttrakhand-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.uttrakhand-tabs button {
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.uttrakhand-tabs button.active,
.uttrakhand-tabs button:hover {
  background: #fff;
  color: #222;
}

.uttrakhand-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.uttrakhand-card {
  width: 180px;
}

.uttrakhand-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.uttrakhand-card:hover img {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.uttrakhand-card h4 {
  color: #fff;
  margin-top: 12px;
  font-size: 16px;
}

.uttrakhand-card p {
  color: #f4f4f4;
  font-size: 13px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .uttrakhand-slider {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .uttrakhand-slider::-webkit-scrollbar {
    display: none;
  }

  .uttrakhand-card {
    flex: 0 0 150px;
  }

  .uttrakhand-card img {
    height: 160px;
  }

  .uttrakhand-tab-section h2 {
    font-size: 28px;
  }
}

/* ---card slider start */
/* =====================================================
   MAIN SECTION
===================================================== */

.uttrakhand-card-slide {
  width: 100%;
  padding: 55px 0 45px;
  background: #fff;
  overflow: hidden;
  font-family: Arial, sans-serif;
}

.uttrakhand-card-slide *,
.uttrakhand-card-slide *::before,
.uttrakhand-card-slide *::after {
  box-sizing: border-box;
}

/* =====================================================
   CONTAINER
===================================================== */

.uttrakhandn-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 15px;
}

/* =====================================================
   BADGE
===================================================== */

.uttrakhand-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 14px;

  border: 1px solid #ddd;
  border-radius: 30px;

  background: #fff;

  color: #333;
  font-size: 12px;
  font-weight: 500;
}

.uttrakhand-badge span {
  color: #ff3652;
  font-size: 17px;
}

/* =====================================================
   HEADING
===================================================== */

.uttrakhand-heading {
  margin-bottom: 25px;
}

.uttrakhand-heading h2 {
  margin: 12px 0 0;

  color: #292929;

  line-height: 1.2;
  font-weight: 700;
}

.uttrakhand-heading h2 span {
  color: #ff3c55;
}

/* =====================================================
   SLIDER WRAPPER
===================================================== */

.uttrakhand-slider-wrap {
  position: relative;
  width: 100%;
}

/* =====================================================
   SLIDER
===================================================== */

.uttrakhand-slider-new {
  display: flex;
  gap: 20px;

  width: 100%;

  overflow-x: auto;

  scroll-behavior: smooth;

  scrollbar-width: none;

  padding: 0 5px;
}

.uttrakhand-slider-new::-webkit-scrollbar {
  display: none;
}

/* =====================================================
   CARD
   DESKTOP = 4.5 CARDS
===================================================== */

.uttrakhand-card-round {
  position: relative;

  flex: 0 0 calc((100% - 80px) / 4.5);

  height: 377px;

  border-radius: 32px;

  overflow: hidden;

  background: #ddd;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* =====================================================
   IMAGE
===================================================== */

.uttrakhand-card-round img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.uttrakhand-card-round:hover img {
  transform: scale(1.06);
}

/* =====================================================
   DARK OVERLAY
===================================================== */

.uttrakhand-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 30%,
    rgba(0, 0, 0, 0.15) 48%,
    rgba(0, 0, 0, 0.9) 100%
  );

  pointer-events: none;
}

/* =====================================================
   CARD CONTENT
===================================================== */

.uttrakhand-card-content {
  position: absolute;

  left: 10px;
  right: 10px;
  bottom: 10px;

  z-index: 2;

  color: #fff;
}

.uttrakhand-card-content h3 {
  margin: 0 0 12px;

  color: #fff;

  font-size: 19px;
  line-height: 1.2;
  font-weight: 600;
}

.uttrakhand-card-content p {
  margin: 0 0 10px;

  color: rgba(255, 255, 255, 0.85);

  font-size: 14px;
  line-height: 1.3;
}

.uttrakhand-card-content a {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  padding: 7px 10px;

  border-radius: 20px;

  background: rgb(69 69 69 / 51%);

  color: #fff;

  text-decoration: none;

  font-size: 13px;

  transition: all 0.3s ease;
}

.uttrakhand-card-content a span {
  font-size: 13px;
}

.uttrakhand-card-content a:hover {
  background: #ff3c55;
}

/* =====================================================
   ARROWS
===================================================== */

.uttrakhand-arrow {
  position: absolute;

  top: 50%;
  transform: translateY(-50%);

  z-index: 10;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  border-radius: 50%;

  background: #fff;

  color: #333;

  font-size: 17px;

  cursor: pointer;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);

  transition: all 0.3s ease;
}

.uttrakhand-arrow:hover {
  background: #ff3c55;
  color: #fff;
}

.uttrakhand-prev {
  left: -3px;
}

.uttrakhand-next {
  right: -3px;
}

/* =====================================================
   TABLET
   3.5 CARDS
===================================================== */

@media (max-width: 1023px) and (min-width: 768px) {
  .uttrakhand-card-round {
    flex: 0 0 calc((100% - 60px) / 3.5);
  }
}

/* =====================================================
   MOBILE
   ONE COMPLETE CARD
===================================================== */

@media (max-width: 767px) {
  .uttrakhand-card-slide {
    padding: 25px 0 35px;
  }

  .uttrakhandn-container {
    padding: 0 15px;
  }

  .uttrakhand-heading {
    margin-bottom: 18px;
  }

  .uttrakhand-heading h2 {
    font-size: 22px;
    line-height: 1.25;
  }

  /* 
       IMPORTANT:
       One card fills the complete slider width.
    */

  .uttrakhand-slider-new {
    gap: 12px;

    overflow-x: auto;

    scroll-behavior: smooth;

    scroll-snap-type: x mandatory;

    scroll-padding-left: 0;

    padding: 0;

    margin: 0;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
  }

  .uttrakhand-slider-new::-webkit-scrollbar {
    display: none;
  }

  /* ONE COMPLETE CARD */

  .uttrakhand-card-round {
    flex: 0 0 100%;

    width: 100%;
    min-width: 100%;

    height: 300px;

    border-radius: 15px;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .uttrakhand-card-content {
    left: 15px;
    right: 15px;
    bottom: 15px;
  }

  .uttrakhand-card-content h3 {
    font-size: 15px;
  }

  .uttrakhand-card-content p {
    font-size: 10px;
    margin-bottom: 10px;
  }

  .uttrakhand-card-content a {
    padding: 8px 12px;
    font-size: 10px;
  }

  /* MOBILE ARROWS */

  .uttrakhand-arrow {
    width: 30px;
    height: 30px;

    font-size: 16px;
  }

  .uttrakhand-prev {
    left: -5px;
  }

  .uttrakhand-next {
    right: -5px;
  }
}

/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {
  .uttrakhand-heading h2 {
    font-size: 21px;
  }

  .uttrakhand-card-round {
    flex: 0 0 100%;
    min-width: 100%;

    height: 290px;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
}
/* card end */

/* how to reach css */
/* ==========================================
   MAIN SECTION
========================================== */

.haridwar-reach-section {
  width: 100%;
  padding: 60px 20px;
  background: #f8f8f8;
  overflow: hidden;
}

/* ==========================================
   CONTAINER
========================================== */

.haridwar-reach-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr 0.95fr;
  align-items: center;

  gap: 55px;
}

/* ==========================================
   HEADING
========================================== */

.haridwar-reach-content h2 {
  margin: 12px 0 25px;

  color: #292929;

  line-height: 1.2;

  font-weight: 700;
}

/* ==========================================
   TRAVEL ITEM
========================================== */

.haridwar-reach-item {
  display: flex;
  align-items: flex-start;

  gap: 15px;

  padding: 0 0 16px;
  margin-bottom: 16px;

  border-bottom: 1px solid #e5e5e5;
}

/* ==========================================
   ICON
========================================== */

.haridwar-reach-icon {
  flex: 0 0 40px;

  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 29px;

  line-height: 1;
}

/* ==========================================
   TEXT
========================================== */

.haridwar-reach-text {
  flex: 1;
}

.haridwar-reach-text h3 {
  margin: 0 0 4px;

  color: #252525;

  font-size: 15px;
  line-height: 1.3;

  font-weight: 700;
}

.haridwar-reach-text p {
  max-width: 390px;

  margin: 0;

  color: #5e5e5e;

  font-size: 15px;
  line-height: 1.5;
}

/* ==========================================
   BOTTOM TEXT
========================================== */

.haridwar-reach-bottom-text {
  max-width: 400px;

  margin: 5px 0 0;

  color: #555;

  font-size: 15px;
  line-height: 1.5;
}

/* ==========================================
   IMAGE
========================================== */

.haridwar-reach-image {
  width: 100%;

  border-radius: 18px;

  overflow: hidden;

  border: 2px solid #fff;

  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.12);
}

.haridwar-reach-image img {
  display: block;

  width: 100%;
  height: 500px;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.haridwar-reach-image:hover img {
  transform: scale(1.03);
}

/* ==========================================
   TABLET
========================================== */

@media (max-width: 900px) {
  .haridwar-reach-container {
    grid-template-columns: 1fr 1fr;

    gap: 30px;
  }

  .haridwar-reach-content h2 {
    font-size: 26px;
  }

  .haridwar-reach-image img {
    height: 270px;
  }
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 767px) {
  .haridwar-reach-section {
    padding: 40px 15px;
  }

  .haridwar-reach-container {
    display: flex;
    flex-direction: column;

    gap: 30px;

    align-items: stretch;
  }

  /* Content first */

  .haridwar-reach-content {
    width: 100%;
  }

  .haridwar-reach-content h2 {
    margin: 12px 0 22px;

    font-size: 25px;
  }

  .haridwar-reach-item {
    gap: 12px;

    padding-bottom: 14px;
    margin-bottom: 14px;
  }

  .haridwar-reach-icon {
    flex: 0 0 38px;

    width: 38px;
    height: 38px;

    font-size: 26px;
  }

  .haridwar-reach-text h3 {
    font-size: 16px;
  }

  .haridwar-reach-text p {
    max-width: none;

    font-size: 14px;
    line-height: 1.5;
  }

  .haridwar-reach-bottom-text {
    max-width: none;

    font-size: 14px;
  }

  /* Image */

  .haridwar-reach-image {
    width: 100%;

    border-radius: 16px;
  }

  .haridwar-reach-image img {
    width: 100%;
    height: 250px;

    object-fit: cover;
  }
}

/* how to reach css end  */

/* anchor link css */
.uttrakhand-anchor-section {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 9999;
}

.uttrakhand-anchor-section.fixed {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
}

.uttrakhand-anchor-container {
  max-width: 1300px;
  min-height: 58px;
  margin: auto;
  padding: 12px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.uttrakhand-anchor-container a {
  position: relative;
  height: 35px;
  padding: 0 12px;

  display: flex;
  align-items: center;

  color: #333;
  text-decoration: none;

  font-size: 17px;
  white-space: nowrap;
}

.uttrakhand-anchor-container a:hover,
.uttrakhand-anchor-container a.active {
  color: #ff3d5a;
}

.uttrakhand-anchor-container a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 16px;
  height: 2px;
  background: #ff3d5a;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .uttrakhand-anchor-container {
    overflow-x: auto;
    justify-content: flex-start;
    gap: 5px;
    scrollbar-width: none;
  }

  .uttrakhand-anchor-container::-webkit-scrollbar {
    display: none;
  }

  .uttrakhand-anchor-container a {
    height: 52px;
    padding: 0 12px;
    font-size: 14px;
    flex-shrink: 0;
  }
}

/* anchor link end */

#tripe-tips {
  background-color: #fff;
  margin: 0;
}

.tips li {
  list-style: none;
}

.yellow-arow-u {
  padding-right: 8px;
}

#good-to-img img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 35px;
  border: 5px solid #fff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}
.about-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: #fff;
  padding: 190px 20px 90px 20px;
  background: linear-gradient(120deg, #fc2166 0%, #fc5a46 55%, #fc7f3f 100%);
  border-bottom-left-radius: 45px;
  border-bottom-right-radius: 45px;
}

.about-hero__mountains {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  opacity: 0.35;
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.about-hero__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 18px 0;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.25);
}

.about-hero__subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto;
  max-width: 560px;
}

/* --------------------------------------------------------------------------
   2. OUR STORY
   -------------------------------------------------------------------------- */
.our-story-section {
  background: #fff;
  padding: 80px 0 60px 0;
}

.our-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.our-story-content h2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--text-dark, #111827);
  letter-spacing: -0.5px;
  margin-bottom: 22px;
}

.our-story-content p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.our-story-content p:last-child {
  margin-bottom: 0;
}

.our-story-image {
  border-radius: 26px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}

.our-story-image img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

/* --------------------------------------------------------------------------
   3. FAQ  (extends .faq-section from style-new.css)
   -------------------------------------------------------------------------- */
.faq-section--about {
  background: #f6f6f7;
  text-align: center;
}

.faq-badge img {
  width: 18px;
  height: 18px;
  margin-right: 4px;
}

.faq-view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 12px 14px 12px 26px;
  background: var(--primary-yellow, #fcb50a);
  color: #111;
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 50px;
  border: none;
  transition: all 0.3s ease;
}

.faq-view-more:hover {
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(252, 181, 10, 0.45);
}

.faq-view-more .faq-view-more__arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   4. GET IN TOUCH  (extends .contact-section from style-new.css)
   -------------------------------------------------------------------------- */
.contact-section--about {
  background: #f6f6f7;
  padding-top: 0;
  padding-bottom: 70px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: stretch;
}

.contact-img-wrapper img {
  width: 100%;
  height: 100%;
}

.contact-form .form-group {
  margin-bottom: 18px;
}

.contact-form .form-label {
  display: block;
}

.contact-form .contact-input {
  width: 100%;
}

.message-container .message-submit-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #111827;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.message-container .message-submit-btn:hover {
  background: #000;
  transform: translateY(-1px);
}

.contact-form .error p {
  color: #e11d48;
  font-size: 0.82rem;
  margin: 6px 2px 0;
}

#contactmsg {
  color: #16a34a;
  font-size: 0.9rem;
  margin-top: 12px;
}

/* --------------------------------------------------------------------------
   5. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .about-hero {
    padding: 150px 18px 70px 18px;
  }
  .about-hero__title {
    font-size: 2.2rem;
  }
  .our-story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .our-story-section {
    padding: 55px 0 40px 0;
  }
  .our-story-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .about-hero__title {
    font-size: 1.85rem;
  }
  .about-hero__subtitle {
    font-size: 0.98rem;
  }
}

/* ==========================================================================
   FAQ PAGE  (dedicated /faq page – matches approved mockup)
   ========================================================================== */
.faq-page-section {
  background: #f6f6f7;
  text-align: center;
  padding: 70px 0 40px 0;
}

.faq-page-section .faq-title {
  margin-top: 0;
  margin-bottom: 30px;
}

.faq-page-group {
  max-width: 1050px;
  margin: 0 auto;
  padding: 0 15px;
}

.faq-category-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #1f2937;
  text-transform: uppercase;
  margin: 34px 0 18px 0;
}

.faq-page-group .faq-category-title:first-child {
  margin-top: 0;
}

.faq-page-group .faq-accordion {
  padding: 0;
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  .faq-page-section {
    padding: 40px 0 24px 0;
  }
  .faq-category-title {
    font-size: 16px;
    margin: 26px 0 14px 0;
  }
}

/* ==========================================================================
   NEWS PAGE  (dedicated /news page – matches approved mockup)
   ========================================================================== */
.news-page-section {
  background: #f6f6f7;
  padding: 70px 0 50px 0;
  text-align: center;
}

.news-page-heading {
  font-size: 40px;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.5px;
  margin-bottom: 45px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  text-align: left;
}

.news-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 14px 14px 22px 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.news-card__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
}

.news-card__date {
  color: var(--primary-orange, #fc7144);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.news-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.4;
  margin-bottom: 10px;
}

.news-card__desc {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.news-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.news-card__link:hover .news-card__title {
  color: var(--primary-orange, #fc7144);
}

@media (max-width: 991px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-page-heading {
    font-size: 30px;
    margin-bottom: 32px;
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  .news-page-section {
    padding: 45px 0 35px 0;
  }
}

/* --------------------------------------------------------------------------
   NEWS DETAIL / ARTICLE PAGE
   -------------------------------------------------------------------------- */
.news-detail-section {
  background: #f6f6f7;
  padding: 60px 0 55px 0;
}

.news-detail-wrap {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  padding: 34px;
}

.news-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-orange, #fc7144);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.news-detail-date {
  color: var(--primary-orange, #fc7144);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.news-detail-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 700;
  color: #111827;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.news-detail-subtitle {
  font-size: 1.05rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 22px;
}

.news-detail-hero-img {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 26px;
}

.news-detail-body {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
}

.news-detail-body h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 14px;
}

.news-detail-body p {
  margin-bottom: 16px;
}

.news-detail-body img {
  max-width: 100%;
  height: auto;
  border-radius: 14px;
  margin: 10px 0;
}

@media (max-width: 600px) {
  .news-detail-wrap {
    padding: 22px;
    border-radius: 18px;
  }
  .news-detail-section {
    padding: 40px 0 35px 0;
  }
}

/* =====================================================
   uttrakhand page css end
===================================================== */

/* --------------------------------------------------------------------------
   BOOK WIZARD – dynamic ticket / time-slot states
   -------------------------------------------------------------------------- */
/* Step 3 – live per-ticket-type stock, straight from BrainPower */
.book-line-stock {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
  margin-top: 4px;
}

.book-line-stock--loading {
  color: #9ca3af;
  font-style: italic;
  font-weight: 500;
}

.book-line-stock--out {
  color: #e5484d;
}

.book-line-item.is-soldout {
  opacity: 0.72;
}

.book-add-btn:disabled,
.book-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.book-add-btn:disabled:hover {
  background: var(--text-dark, #111827);
}

/* Shown above the ticket list when live availability could not be checked */
.book-stock-retry {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-left: 4px solid #dc2626;
  border-radius: 12px;
  color: #b91c1c;
  font-size: 0.88rem;
  font-weight: 600;
}

.book-stock-retry small {
  display: block;
  margin-top: 4px;
  font-size: 0.76rem;
  font-weight: 500;
  opacity: 0.85;
  word-break: break-word;
}

.book-stock-retry button {
  flex-shrink: 0;
  background: #dc2626;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 7px 18px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
}

/* Quantity-limit message (max 10 per ticket type / add-on, or live stock):
   red modal popup, closed only via the X button (or a click outside it) */
.book-qty-modal {
  z-index: 2300;
}

.book-qty-modal__card {
  border-top: 5px solid #dc2626;
}

.book-qty-modal__icon {
  font-size: 2.2rem;
  color: #dc2626;
  margin-bottom: 12px;
  line-height: 1;
}

.book-qty-modal .simple-modal__body p {
  color: #b91c1c;
}

.book-time-note {
  grid-column: 1 / -1;
  padding: 18px 4px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: #6b7280;
}

/* Closure / maintenance banner at the top of the calendar drawer */
.book-drawer-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 16px;
  padding: 14px 16px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-left: 4px solid #f97316;
  border-radius: 12px;
  color: #9a3412;
}

.book-drawer-notice i {
  margin-top: 2px;
  font-size: 1rem;
  color: #f97316;
  flex-shrink: 0;
}

.book-drawer-notice p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.55;
}

.book-time-slot.is-maintenance {
  position: relative;
}

/* Step 4 "Need other services" header row + Skip pill */
.book-section-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.book-skip-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-yellow, #fcb50a);
  color: #111827;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.book-skip-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(252, 181, 10, 0.4);
}

.book-skip-btn i {
  font-size: 0.8rem;
}

/* Step track – a step already visited becomes clickable so the user can jump
   straight back to it instead of clicking "back" repeatedly. */
.book-step.is-clickable {
  cursor: pointer;
}

.book-step.is-clickable:hover {
  color: var(--primary-orange, #fc7144);
}

.book-step.is-clickable:hover .book-step-sub {
  color: var(--primary-orange, #fc7144);
}

/* Billing form – State <select> using the same floating-label field style */
.book-field-select {
  position: relative;
}

.book-field-select select.book-form-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 44px;
}

.book-field-select select.book-form-input:valid ~ .book-field-label {
  opacity: 0;
}

.book-field-select::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-right: 2px solid #9ca3af;
  border-bottom: 2px solid #9ca3af;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

/* Offer popup shown on reaching the Billing Details step */
.book-offer-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(17, 24, 39, 0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.book-offer-modal {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.book-offer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(17, 24, 39, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  line-height: 1;
  text-decoration: none;
}

.book-offer-close:hover {
  background: rgba(17, 24, 39, 0.8);
  color: #ffffff;
}

.book-offer-image img {
  display: block;
  width: 100%;
  height: auto;
}

.book-offer-desc {
  padding: 18px 22px 22px;
  color: var(--text-dark, #111827);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Billing step – ropeway policy notes above the agreement checkboxes */
.book-policy-notes {
  margin: 4px 0 2px;
}

.book-policy-notes ul {
  list-style: circle;
  margin: 0;
  padding-left: 20px;
}

.book-policy-notes li {
  color: var(--text-muted, #6b7280);
  font-size: 0.86rem;
  line-height: 1.6;
}

/* OTP verification + payment-gateway drawer */
.book-otp-copy {
  color: var(--text-muted, #6b7280);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.book-otp-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.book-otp-verify {
  flex: 1 1 auto;
  width: 100%;
  gap: 10px;
}

.book-otp-resend {
  flex-shrink: 0;
  background: none;
  border: none;
  color: var(--primary-orange, #fc7144);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.book-otp-resend:disabled {
  color: #c7cbd1;
  cursor: not-allowed;
}

.book-gateway-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid #ececec;
  border-radius: 16px;
  margin-bottom: 14px;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease;
}

.book-gateway-option:has(input:checked) {
  border-color: var(--primary-orange, #fc7144);
  background: #fff7f4;
}

.book-gateway-option input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-orange, #fc7144);
  flex-shrink: 0;
}

.book-gateway-option span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.book-gateway-option strong {
  font-size: 0.98rem;
  color: var(--text-dark, #111827);
}

.book-gateway-option small {
  color: var(--text-muted, #6b7280);
  font-size: 0.82rem;
}

.book-gateway-pay {
  width: 100%;
  gap: 10px;
  margin-top: 8px;
}

.book-ticket-empty {
  padding: 26px 20px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: #6b7280;
  background: #f8fafc;
  border: 1px dashed #d1d5db;
  border-radius: 16px;
}

/* ==========================================================================
   TICKET BOOKING SUCCESS PAGE  (/ticket-booking-success)
   Same hero/card visual language as the About page; content is the actual
   order + ticket details, not About copy.
   ========================================================================== */
.tbs-section {
  background: #f6f6f7;
  padding: 60px 0 70px 0;
}

.tbs-thankyou {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 40px;
}

.tbs-thankyou img {
  width: 96px;
  height: auto;
  margin-bottom: 14px;
}

.tbs-thankyou h2 {
  font-size: 1.7rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
}

.tbs-thankyou p {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
}

.tbs-card {
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  padding: 34px;
  max-width: 1100px;
  margin: 0 auto 28px;
}

.tbs-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tbs-table-scroll + .tbs-table-heading,
.tbs-table-heading {
  font-size: 1.05rem;
  font-weight: 800;
  color: #111827;
  margin: 30px 0 14px;
}

/* Booking summary – label/value table */
.tbs-summary-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.tbs-summary-table th,
.tbs-summary-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}

.tbs-summary-table tr:last-child th,
.tbs-summary-table tr:last-child td {
  border-bottom: none;
}

.tbs-summary-table th {
  width: 1%;
  white-space: nowrap;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  background: #fafafa;
}

.tbs-summary-table td {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
}

.tbs-sub {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 2px;
}

.tbs-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 12px;
  border-radius: 50px;
  background: #fff7ed;
  color: #c2410c;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Ticket line-items – gradient-header table */
.tbs-ticket-table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
}

.tbs-ticket-table thead th {
  background: var(--button-gradient);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 15px 20px;
  text-align: left;
  white-space: nowrap;
}

.tbs-ticket-table thead th:first-child {
  border-radius: 14px 0 0 14px;
}

.tbs-ticket-table thead th:last-child {
  border-radius: 0 14px 14px 0;
}

.tbs-ticket-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  vertical-align: middle;
}

.tbs-ticket-table tbody tr:nth-child(even) {
  background: #fbfbfc;
}

.tbs-ticket-table tbody tr:hover {
  background: #fff7f4;
}

.tbs-ticket-name {
  font-weight: 700;
}

.tbs-ticket-subtitle {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6b7280;
  margin-top: 3px;
}

.tbs-qr-cell img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  background: #ffffff;
  border: 1px solid #eef0f2;
  border-radius: 10px;
  padding: 4px;
}

.tbs-ticket-table tfoot td {
  padding: 18px 20px;
  border-top: 2px solid #111827;
  background: #fafafa;
}

.tbs-foot-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.tbs-amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: #111827;
}

.tbs-amount small {
  font-size: 0.72rem;
  font-weight: 500;
  color: #6b7280;
  margin-left: 4px;
}

.tbs-footer-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.tbs-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tbs-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(252, 33, 102, 0.3);
  color: #ffffff;
}

.tbs-btn-outline {
  background: #ffffff;
  color: #111827;
  border: 1.5px solid #e5e7eb;
}

.tbs-btn-outline:hover {
  box-shadow: none;
  border-color: #111827;
  color: #111827;
}

@media (max-width: 767px) {
  .tbs-card {
    padding: 22px;
    border-radius: 20px;
  }

  .tbs-summary-table th,
  .tbs-summary-table td,
  .tbs-ticket-table thead th,
  .tbs-ticket-table tbody td,
  .tbs-ticket-table tfoot td {
    padding: 12px 14px;
  }
}

/* ==========================================================================
   REGION LANDING PAGE  (e.g. /haridwar – a city/region hub covering more
   than one ropeway). All classes below are generic (not "haridwar-*") so
   the same page skeleton can be reused for the next region page as-is.
   ========================================================================== */

/* --------------------------------------------------------------------------
   SHARED SECTION PRIMITIVES – reused by every section on the page instead
   of each one inventing its own badge/heading style.
   -------------------------------------------------------------------------- */
.region-section {
  padding: 64px 0;
  background: #ffffff;
}

.region-section--alt {
  background: #f6f6f7;
}

.region-section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.region-section-head--wide {
  max-width: 100%;
}

.region-title {
  font-size: 40px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 14px 0 0;
}

.region-title mark {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(
    --primary-orange
  ); /* fallback for browsers without background-clip:text */
}

.region-subtitle {
  color: #4b5563;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 12px 0 0;
}

.region-body-text p {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 16px;
}

.region-body-text p:last-child {
  margin-bottom: 0;
}

/* Round icon-button carousel nav, reused by every horizontal-scroll row. */
.region-carousel-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #e5e7eb;
  background: #ffffff;
  color: var(--text-dark);
  flex: 0 0 auto;
  cursor: pointer;
  transition: all 0.25s ease;
}

.region-carousel-nav:hover {
  background: var(--button-gradient);
  border-color: transparent;
  color: #ffffff;
}

.region-carousel-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.region-carousel-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding-bottom: 6px;
  margin-top: 28px;
  scrollbar-width: none;
}

.region-carousel-track::-webkit-scrollbar {
  display: none;
}

.region-carousel-track > * {
  scroll-snap-align: start;
  flex: 0 0 auto;
}

/* --------------------------------------------------------------------------
   INFO CARD – reused by Ropeways, Things To Do, Local Food & Local Stays.
   -------------------------------------------------------------------------- */
.info-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eef0f2;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.info-card__img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #f1f2f4;
}

.info-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fc7144;
  font-size: 1.8rem;
  background: linear-gradient(135deg, #fff1eb 0%, #ffe4e9 100%);
}

.info-card__body {
  padding: 20px 22px 22px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.info-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 8px;
}

.info-card__text {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 14px;
  flex: 1 1 auto;
}

.info-card__meta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-pink);
  font-size: 0.85rem;
  font-weight: 600;
}

.info-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.info-card__link i {
  color: var(--primary-orange);
  font-size: 0.8rem;
}

/* Ropeway cards (Ropeways section) – bigger image, CTA button */
.info-card--ropeway .info-card__img {
  height: 220px;
}

/* Carousel cards (Things To Do / Local Stays) – fixed width flex items */
.info-card--carousel {
  width: 260px;
}

.info-card--carousel .info-card__img,
.info-card--carousel .info-card__img--placeholder {
  height: 170px;
}

/* Local Food cards – horizontal layout inside a 2-col grid */
.info-card--horizontal {
  flex-direction: row;
  align-items: stretch;
}

.info-card--horizontal .info-card__img,
.info-card--horizontal .info-card__img--placeholder {
  width: 130px;
  height: auto;
  flex: 0 0 130px;
}

.info-card--horizontal .info-card__body {
  padding: 18px 20px;
}

/* --------------------------------------------------------------------------
   OVERVIEW SECTION
   -------------------------------------------------------------------------- */
.region-overview-grid {
  display: grid;
  grid-template-columns: 0.95fr 1fr 1.05fr;
  gap: 32px;
  align-items: start;
}

.region-overview-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.region-cta-box {
  margin-top: 26px;
  padding: 26px;
  border-radius: 20px;
  background: var(--button-gradient);
  color: #ffffff;
}

.region-cta-box h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.region-cta-box p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.region-feature-row {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.region-feature-row:first-of-type {
  margin-top: 30px;
}

.region-feature-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff1eb 0%, #ffe4e9 100%);
  color: var(--primary-orange);
  font-size: 1.1rem;
}

.region-feature-copy h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 4px;
}

.region-feature-copy p {
  color: #6b7280;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   ROPEWAYS-IN-REGION SECTION
   -------------------------------------------------------------------------- */
.region-ropeway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 28px;
}

.info-card--ropeway .info-card__body {
  padding: 24px 26px 26px;
}

/* --------------------------------------------------------------------------
   LOCAL FOOD SECTION
   -------------------------------------------------------------------------- */
.region-food-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 28px;
}

/* --------------------------------------------------------------------------
   HOW TO REACH / TRAVEL TIPS – icon-row + image, two-up layout reused for
   both sections (image swaps sides between them).
   -------------------------------------------------------------------------- */
.region-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.region-split-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.region-split-grid--reverse .region-split-img {
  order: -1;
}

.region-split-img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.region-reach-row {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.region-reach-row:last-child {
  margin-bottom: 0;
}

.region-tips-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.region-tips-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #374151;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.region-tips-list li:last-child {
  margin-bottom: 0;
}

.region-tips-list i {
  flex: 0 0 auto;
  color: var(--primary-orange);
  margin-top: 3px;
}

/* --------------------------------------------------------------------------
   EXPLORE OTHER DESTINATIONS – full-bleed gradient strip with state filter
   -------------------------------------------------------------------------- */
.region-explore {
  background: var(--button-gradient);
  padding: 60px 0;
  color: #ffffff;
}

.region-explore-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 22px;
}

.region-state-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.region-state-pill {
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.region-state-pill.is-active,
.region-state-pill:hover {
  background: #ffffff;
  color: var(--primary-pink);
  border-color: #ffffff;
}

.region-explore-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.region-explore-track::-webkit-scrollbar {
  display: none;
}

.region-explore-card {
  flex: 0 0 auto;
  width: 170px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  height: 210px;
  display: block;
}

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

.region-explore-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  color: #ffffff;
}

.region-explore-card__overlay strong {
  display: block;
  font-size: 0.95rem;
}

.region-explore-card__overlay span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
}

.region-explore-card.is-hidden {
  display: none;
}

/* --------------------------------------------------------------------------
   HERO
   -------------------------------------------------------------------------- */
.region-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 60px 0;
}

.region-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11, 15, 25, 0.15) 0%,
    rgba(11, 15, 25, 0.85) 100%
  );
}

.region-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.region-hero__title {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.region-hero__title mark {
  background: none;
  color: #fff;
}

.region-hero__subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   IN-PAGE SECTION NAV
   -------------------------------------------------------------------------- */
.region-nav-wrap {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffff;
  border-bottom: 1px solid #eef0f2;
}

.region-nav {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 16px 0;
  scrollbar-width: none;
}

.region-nav::-webkit-scrollbar {
  display: none;
}

.region-nav a {
  flex: 0 0 auto;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.region-nav a.is-active,
.region-nav a:hover {
  color: var(--primary-pink);
  background: #fff1f4;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .region-overview-grid {
    grid-template-columns: 1fr;
  }

  .region-overview-img {
    min-height: 260px;
    order: -1;
  }

  .region-ropeway-grid,
  .region-food-grid {
    grid-template-columns: 1fr;
  }

  .region-split-grid,
  .region-split-grid--reverse {
    grid-template-columns: 1fr;
  }

  .region-split-grid--reverse .region-split-img {
    order: 0;
  }

  .region-title {
    font-size: 32px;
  }

  .region-hero {
    min-height: 380px;
  }

  .region-hero__title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .region-section {
    padding: 46px 0;
  }

  .region-hero__title {
    font-size: 1.7rem;
  }

  .info-card--carousel {
    width: 220px;
  }

  .info-card--horizontal {
    flex-direction: column;
  }

  .info-card--horizontal .info-card__img,
  .info-card--horizontal .info-card__img--placeholder {
    width: 100%;
    height: 140px;
    flex-basis: auto;
  }

  .region-explore-title {
    font-size: 1.5rem;
  }
}

/* ==========================================================================
   AUTH PAGES  (Sign in / Sign up – matches the About page's design system,
   reuses .about-hero, .contact-form, .form-group, .contact-input as-is)
   ========================================================================== */
.auth-section {
  background: #f6f6f7;
  padding: 60px 0 80px;
}

.auth-card {
  max-width: 460px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 32px;
  padding: 44px 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.auth-title {
  font-weight: 800;
  color: #0f172a;
  font-size: 1.7rem;
  margin-bottom: 6px;
  text-align: center;
}

.auth-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 28px;
  text-align: center;
}

.auth-card .form-group {
  margin-bottom: 18px;
}

.auth-card .form-label {
  display: block;
}

.auth-card .contact-input {
  width: 100%;
}

.auth-card .book-cta-full {
  width: 100%;
  border: none;
  text-align: center;
}

.auth-link {
  display: block;
  text-align: center;
  margin-top: 16px;
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 0.92rem;
}

.auth-link:hover {
  color: var(--primary-pink);
}

.auth-switch {
  text-align: center;
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid #eef0f2;
  color: #6b7280;
  font-size: 0.92rem;
}

.auth-switch a {
  color: var(--primary-pink);
  font-weight: 700;
}

@media (max-width: 576px) {
  .auth-card {
    padding: 30px 24px;
    border-radius: 24px;
  }
}

/* ==========================================================================
   CONTACT PAGE  (dedicated /contact page – reuses .about-hero, .faq-badge,
   .contact-section/.contact-card/.contact-grid/.contact-form from the About
   page's "Get in touch" block as-is)
   ========================================================================== */
.contact-info-section {
  background: #ffffff;
  padding: 60px 0 20px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 22px;
}

.contact-info-card {
  border: 1px solid #eef0f2;
  border-radius: 22px;
  padding: 26px;
  text-align: center;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.04);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  margin: 0 auto 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff1eb 0%, #ffe4e9 100%);
  color: var(--primary-orange);
  font-size: 1.3rem;
}

.contact-info-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9ca3af;
  margin: 0 0 8px;
}

.contact-info-value {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-dark, #111827);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 576px) {
  .contact-info-section {
    padding: 40px 0 10px;
  }
}

/* ==========================================================================
   SIMPLE MODAL  (plain show/hide via JS `style.display`, not Bootstrap's
   modal API — used by pages like track-booking.php whose existing JS
   toggles visibility directly)
   ========================================================================== */
.simple-modal {
  position: fixed;
  inset: 0;
  z-index: 2100;
  background: rgba(17, 24, 39, 0.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.simple-modal__card {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 24px;
  padding: 36px 30px 30px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.simple-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  color: #9ca3af;
  font-size: 1.6rem;
  line-height: 1;
}

.simple-modal__close:hover {
  color: var(--text-dark, #111827);
}

.simple-modal__body p {
  margin: 0;
  color: var(--text-dark, #111827);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.6;
}

/* ==========================================================================
   TESTIMONIALS PAGE  (dedicated /testimonial page)
   ========================================================================== */
.testimonials-page-section {
  background: #f6f6f7;
  padding: 60px 0 70px;
}

.testimonials-page-head {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.testimonials-page-count {
  color: #6b7280;
  font-size: 0.95rem;
  margin: 12px 0 0;
}

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

.testimonial-item-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #eef0f2;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.05);
  padding: 26px;
}

.testimonial-item-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.testimonial-item-avatar {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial-item-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-item-name {
  font-weight: 700;
  color: var(--text-dark, #111827);
  font-size: 1rem;
  margin: 0;
}

.testimonial-item-place {
  color: var(--primary-orange);
  font-size: 0.82rem;
  font-weight: 600;
  margin: 2px 0 0;
}

.testimonial-item-quote {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.testimonials-empty {
  text-align: center;
  color: #6b7280;
  padding: 40px 20px;
}

@media (max-width: 576px) {
  .testimonials-page-section {
    padding: 44px 0 50px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
.social-link a i {
  font-size: 28px;
  text-decoration: none !important;
}
/* ==========================================================================
   LEGAL / LONG-FORM CONTENT PAGE  (Terms & Conditions and similar
   admin-authored rich-text pages – reusable, not terms-specific)
   ========================================================================== */
.legal-section {
  background: #f6f6f7;
  padding: 60px 0 70px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  padding: 44px;
}

.legal-content {
  color: #374151;
  font-size: 1rem;
  line-height: 1.8;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4,
.legal-content h5,
.legal-content h6 {
  color: #111827;
  font-weight: 700;
  line-height: 1.35;
  margin: 28px 0 14px;
}

.legal-content h1:first-child,
.legal-content h2:first-child,
.legal-content h3:first-child {
  margin-top: 0;
}

.legal-content h1 {
  font-size: 1.6rem;
}
.legal-content h2 {
  font-size: 1.4rem;
}
.legal-content h3 {
  font-size: 1.2rem;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary-orange);
  font-weight: 600;
  text-decoration: underline;
}

.legal-content strong {
  color: #111827;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.legal-content table td,
.legal-content table th {
  border: 1px solid #e5e7eb;
  padding: 10px 12px;
}

@media (max-width: 576px) {
  .legal-section {
    padding: 40px 0 50px;
  }
  .legal-card {
    padding: 26px 20px;
    border-radius: 20px;
  }
}

/* ==========================================================================
   HEADER — ACTIVE / SUB-MENU-ACTIVE HIGHLIGHT
   (a top-level item lights up when it IS the current page, or when one of
   its dropdown/submenu links is)
   ========================================================================== */
.mega-dropdown-item.active {
  background: #fff1f4;
}

.mega-dropdown-item.active .mega-dest-title {
  color: var(--primary-pink, #fc2166);
}

.mobile-menu-link.active {
  background-color: #fff1f4;
  border-radius: 12px;
}

.mobile-menu-link.active .mobile-item-title {
  color: var(--primary-pink, #fc2166);
}

.mobile-menu-link.active .mobile-icon-box {
  color: var(--primary-pink, #fc2166);
}

.mobile-submenu-collapse a.active {
  color: var(--primary-orange, #fc7144);
  font-weight: 700;
}

/* Billing step – message under a required checkbox that wasn't ticked */
.book-terms-error {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 2px 0 10px 34px;
  color: #dc2626;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
}

.book-terms-error[hidden] {
  display: none;
}

.book-terms-error i {
  margin-top: 3px;
  flex-shrink: 0;
}

/* Ticket line item – small subtitle under the ticket name (price.subtitle) */
.book-line-subtitle {
  margin: 2px 0 4px;
}

.book-line-subtitle p {
  margin: 0;
  color: var(--text-muted, #6b7280);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Ticket/add-on price shows the line total once qty > 0; this shows the
   per-unit price it was multiplied from. */
.book-line-price-each {
  color: var(--text-muted, #6b7280);
  font-size: 0.78rem;
  font-weight: 500;
}

/* ==========================================================================
   FOOTER — Destinations / Ropeways dropdowns (click to open/close, same
   source as the header's mega-dropdowns)
   ========================================================================== */
.footer-dropdown-item {
  border-bottom: none !important;
}

.footer-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
}

.footer-dropdown-caret {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.footer-dropdown-toggle[aria-expanded="true"] .footer-dropdown-caret {
  transform: rotate(180deg);
  color: #fc7144;
}

.footer-dropdown-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0 0 0 14px;
}

.footer-dropdown-list li {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 10px;
}

.footer-dropdown-list li:first-child {
  margin-top: 10px;
}

.footer-dropdown-list a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}

.footer-dropdown-list a:hover {
  color: #fc7144;
  padding-left: 4px;
}
