/* ============================================================
   TRI MURTI TOURS — Design System
   Palette: Ember #D9481C · Marigold #F4A93B · Maroon #431C10
            Sand #FBF2E4 · Ash #2B211C · White #FFFDF9
   Type: "Fraunces" (display) + "Manrope" (body/utility)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ember: #D9481C;
  --ember-dark: #B3380F;
  --marigold: #F4A93B;
  --maroon: #431C10;
  --maroon-deep: #2C1109;
  --sand: #FBF2E4;
  --sand-2: #F3E4CE;
  --ash: #2B211C;
  --ash-soft: #6B5C51;
  --white: #FFFDF9;
  --line: rgba(67, 28, 16, 0.14);
  --flame-grad: linear-gradient(135deg, var(--ember) 0%, var(--marigold) 100%);
  --shadow-soft: 0 20px 50px -25px rgba(44, 17, 9, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(44, 17, 9, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  background: var(--sand);
  color: var(--ash);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4 {
  font-family: 'Fraunces', serif;
  color: var(--maroon-deep);
  margin: 0 0 .5em;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 1em;
  color: var(--ash-soft);
}

button {
  font-family: inherit;
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 3px;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-tight {
  padding: 64px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember-dark);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--flame-grad);
  border-radius: 2px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--flame-grad);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(217, 72, 28, .65);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(217, 72, 28, .75);
}

.btn-outline {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon);
}

.btn-outline:hover {
  background: var(--maroon);
  color: var(--white);
}

.btn-ghost-light {
  background: rgba(255, 253, 249, .12);
  border-color: rgba(255, 253, 249, .4);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: rgba(255, 253, 249, .22);
}

.btn-sm {
  padding: 10px 20px;
  font-size: .82rem;
}

.btn-block {
  width: 100%;
}

/* ---------- Header / Nav ---------- */
.topbar {
  background: var(--maroon-deep);
  color: var(--sand-2);
  font-size: .8rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  opacity: .9;
}

.topbar-links {
  display: flex;
  gap: 22px;
}

.topbar-links span {
  opacity: .65;
  margin-right: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 242, 228, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

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

.brand img {
  height: 52px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 600;
  font-size: .94rem;
  color: var(--maroon);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--flame-grad);
  transition: width .25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--ember-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--maroon);
  border-radius: 2px;
  transition: .25s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Flame divider (signature motif) ---------- */
.flame-divider {
  width: 100%;
  height: 34px;
  display: block;
}

.flame-divider.flip {
  transform: rotate(180deg);
}

/* ---------- Hero ---------- */
.hero-art {
  width: 100%;
  height: auto;
  border-radius: 25px;
  overflow: hidden;
}

.heroSwiper {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 600px;
  object-fit: fill;
  display: block;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #fff;
}

.swiper-pagination-bullet-active {
  background: #f4a93b;
}

/* Navigation Button */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember) 0%, var(--marigold) 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .25);
  transition: .3s;
}

/* Arrow Size */
.heroSwiper .swiper-button-next::after,
.heroSwiper .swiper-button-prev::after {
  font-size: 16px;
  /* Default 44px hota hai */
  font-weight: 700;
}

/* Hover Effect */
.heroSwiper .swiper-button-next:hover,
.heroSwiper .swiper-button-prev:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 25px rgba(0, 0, 0, .35);
}

/* Mobile */
@media (max-width:768px) {

  .heroSwiper .swiper-button-next,
  .heroSwiper .swiper-button-prev {
    width: 42px;
    height: 42px;
  }

  .heroSwiper .swiper-button-next::after,
  .heroSwiper .swiper-button-prev::after {
    font-size: 13px;
  }

  .container-testi {
    padding: 0 0px !important;
  }

}

/* Search / quote strip */
.quote-strip {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr auto;
  gap: 14px;
  align-items: end;
}

.quote-strip label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ash-soft);
  display: block;
  margin-bottom: 6px;
}

.quote-strip select,
.quote-strip input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: .92rem;
  background: var(--sand);
  color: var(--ash);
}

/* ---------- Destination rail ---------- */
.rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 4px 20px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.rail::-webkit-scrollbar {
  display: none;
}

.dest-card {
  flex: 0 0 220px;
  height: 290px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
}

.rail-controls {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 2.5rem;
}

.rail-arrows {
  display: flex;
  gap: 12px;
}

/* Premium Button */
.arrow-btn {
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ember), var(--marigold));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .35s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
}

.arrow-btn svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  stroke-width: 2.4;
}

.arrow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

/* Slider */

.rail {
  display: grid;
  grid-auto-flow: column;

  /* 3 Card + Half Card */
  grid-auto-columns: calc((100% - 44px)/3.4);

  gap: 22px;

  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
}

.rail::-webkit-scrollbar {
  display: none;
}

.dest-card {
  flex: 0 0 220px;
  height: 290px;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: transform .3s ease, box-shadow .3s ease;
  scroll-snap-align: start;
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.dest-card .art {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
}

.dest-card .art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

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

.dest-card .dest-info {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--white);
  flex-direction: column;
}

.dest-card .dest-info h4 {
  margin: 0;
  font-family: 'Fraunces', serif;
  color: var(--maroon-deep);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
}

@media(max-width:992px) {

  .rail {
    grid-auto-columns: calc((100% - 22px)/2.3);
  }

}

@media(max-width:768px) {

  .rail {
    grid-auto-columns: 78%;
    margin-left: -28px;
    margin-right: -28px;
    padding-left: 28px;
    padding-right: 28px;
    margin: 0 0 0 -7px;
  }

  .dest-grid {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  .testi-wrap {
    padding: 64px 22px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100%;
  }

  .footer-col {
    width: 100%;
  }

  .arrow-btn {
    width: 45px;
    height: 45px;
  }

}

.dest-card .info p {
  /* margin-top:.6rem; */
  color: var(--maroon);
  font-size: 1.8rem;
  font-weight: 700;
  /* font-family:'Fraunces', serif; */
}

.dest-card .tag {
  display: inline-block;
  padding: .4rem 1rem;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--ember), var(--marigold));
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  /* margin-bottom:.8rem; */
}

/* ---------- Triad / Why choose ---------- */
.triad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.triad-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  border-top: 4px solid transparent;
  border-image: var(--flame-grad) 1;
  text-align: left;
}

.triad-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.triad-card .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--marigold);
  font-size: 1rem;
  font-weight: 600;
}

.triad-card h3 {
  font-size: 1.3rem;
  margin-top: 4px;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: center;
}

.stat-strip div strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2.1rem;
  color: var(--ember-dark);
}

.stat-strip div span {
  font-size: .8rem;
  color: var(--ash-soft);
}

/* ---------- Package cards ---------- */
.tabs-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tabs-filter button {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: .85rem;
  color: var(--maroon);
  transition: .2s;
}

.tabs-filter button.active,
.tabs-filter button:hover {
  background: var(--flame-grad);
  color: var(--white);
  border-color: transparent;
}

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

.pkg-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pkg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 46px -22px rgba(44, 17, 9, .4);
}

.pkg-card .art {
  height: auto;
  aspect-ratio: 1 / 1;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pkg-card .art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pkg-card .art .duration {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(44, 17, 9, .75);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.pkg-card .body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-card .kicker {
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ember-dark);
  font-weight: 800;
  margin-bottom: 6px;
}

.pkg-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.pkg-card .meta {
  display: flex;
  gap: 14px;
  margin: 10px 0 16px;
  flex-wrap: wrap;
}

.pkg-card .meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--ash-soft);
  font-weight: 600;
}

.pkg-card .meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--ember);
}

.pkg-card .foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px dashed var(--line);
}

.pkg-card .price {
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  color: var(--maroon-deep);
  font-weight: 700;
}

.pkg-card .price span {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  color: var(--ash-soft);
}

/* ---------- Testimonials ---------- */
.testi-wrap {
  background: var(--maroon-deep);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  position: relative;
  overflow: hidden;
}

.testi-wrap .glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 169, 59, .28), transparent 70%);
  top: -160px;
  right: -140px;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  position: relative;
  z-index: 1;
}

.testi-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 0.6;
}

.testi-pagination .swiper-pagination-bullet-active {
  background: var(--marigold);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.testi-card {
  background: rgba(255, 253, 249, .06);
  border: 1px solid rgba(255, 253, 249, .14);
  border-radius: var(--radius-md);
  padding: 26px;
  backdrop-filter: blur(6px);
}

.testi-card .quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 2.6rem;
  color: var(--marigold);
  line-height: .5;
  margin-bottom: 14px;
  display: block;
}

.testi-card p {
  color: rgba(255, 253, 249, .85);
  font-size: .95rem;
}

.btn-read-more {
  background: none;
  border: none;
  color: var(--marigold);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  display: inline-block;
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.btn-read-more:hover {
  opacity: 0.85;
}

.testi-card .who {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--flame-grad);
  flex: none;
}

.testi-card .who strong {
  display: block;
  font-size: .9rem;
  color: var(--white);
}

.testi-card .who span {
  font-size: .76rem;
  color: rgba(255, 253, 249, .55);
}

/* ---------- CTA / Quote form ---------- */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.cta-left {
  background: var(--flame-grad);
  color: var(--white);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.cta-left h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cta-left p {
  color: rgba(255, 253, 249, .9);
}

.cta-left .contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  font-weight: 700;
}

.cta-right {
  background: var(--white);
  padding: 48px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ash-soft);
  margin-bottom: 7px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .94rem;
  background: var(--sand);
  color: var(--ash);
}

.field textarea {
  resize: vertical;
  min-height: 90px;
}

.form-msg {
  margin-top: 12px;
  font-size: .85rem;
  font-weight: 700;
}

.form-msg.success {
  color: #2E7D32;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--maroon-deep);
  color: rgba(255, 253, 249, .7);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 253, 249, .12);
}

.f-brand img {
  width: 70%;
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
}

.footer-col h5 {
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 7px;
  margin-top: 8px;
}

.footer-col ul li {
  margin-bottom: 11px;
}

.footer-col ul a {
  font-size: .9rem;
  color: rgba(255, 253, 249, .68);
  transition: .2s;
}

.footer-col ul a:hover {
  color: var(--marigold);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 253, 249, .25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-row a:hover {
  background: var(--flame-grad);
  border-color: transparent;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: .8rem;
  color: rgba(255, 253, 249, .5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--maroon-deep);
  color: var(--white);
  padding: 64px 0 46px;
  position: relative;
  overflow: hidden;
}

.page-hero .glow {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(244, 169, 59, .3), transparent 70%);
  top: -180px;
  left: -100px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: .82rem;
  color: rgba(255, 253, 249, .6);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: rgba(255, 253, 249, .85);
  font-weight: 700;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

/* ---------- Filters + grid (packages page) ---------- */
.layout-2col {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}

.filter-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 100px;
}

.filter-box h4 {
  font-size: 1rem;
  margin-bottom: 16px;
}

.filter-group {
  margin-bottom: 24px;
}

.filter-group+.filter-group {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.checkline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: .9rem;
  color: var(--ash);
}

.checkline input {
  accent-color: var(--ember);
  width: 16px;
  height: 16px;
}

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

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.gallery-item {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-card);
  aspect-ratio: 1 / 1;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 38px -10px rgba(44, 17, 9, 0.3);
}

.gallery-item svg,
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 17, 9, 0) 50%, rgba(44, 17, 9, .85) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: .25s;
}

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

.gallery-item .overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: .88rem;
}

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

/* ---------- Gallery Modal (Lightbox) ---------- */
.gallery-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 7, 5, 0.95);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 40px;
}

.gallery-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-modal-content {
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: modalZoom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes modalZoom {
  from {
    transform: scale(0.92);
    opacity: 0;
  }

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

.gallery-modal-content img,
.gallery-modal-content svg {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  background: var(--sand);
}

.gallery-modal-caption {
  margin-top: 24px;
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gallery-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-size: 2.25rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2010;
  line-height: 1;
  padding-bottom: 4px;
}

.gallery-modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.08);
}

body.modal-open {
  overflow: hidden;
}

/* ---------- FAQ / accordion ---------- */
.accordion-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  margin-bottom: 14px;
  overflow: hidden;
}

.accordion-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-weight: 700;
  color: var(--maroon-deep);
  gap: 20px;
}

.accordion-q .plus {
  width: 22px;
  height: 22px;
  flex: none;
  position: relative;
}

.accordion-q .plus::before,
.accordion-q .plus::after {
  content: '';
  position: absolute;
  background: var(--ember);
  border-radius: 2px;
}

.accordion-q .plus::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.accordion-q .plus::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  transition: transform .25s;
}

.accordion-item.open .accordion-q .plus::after {
  transform: translateX(-50%) rotate(90deg) scale(0);
}

.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 24px;
}

.accordion-item.open .accordion-a {
  padding-bottom: 20px;
}

/* ---------- Package details page ---------- */
.pd-hero {
  background: var(--maroon-deep);
  position: relative;
  overflow: hidden;
  color: var(--white);
  padding: 60px 0;
}

.pd-hero .container {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: end;
}

.pd-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
}

.pd-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pd-badges span {
  background: rgba(255, 253, 249, .12);
  border: 1px solid rgba(255, 253, 249, .25);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .78rem;
  display: flex;
  gap: 10px;
  font-weight: 700;
  align-items: center;
}

.pd-price-card {
  background: var(--white);
  color: var(--ash);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-soft);
}

.pd-price-card .price {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  color: var(--maroon-deep);
  font-weight: 700;
}

.pd-price-card .price span {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--ash-soft);
  display: block;
}

.pd-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 2px solid var(--line);
  margin-bottom: 36px;
  overflow-x: auto;
}

.pd-tabs button {
  padding: 14px 22px;
  font-weight: 800;
  font-size: .86rem;
  color: var(--ash-soft);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
}

.pd-tabs button.active {
  color: var(--ember-dark);
  border-color: var(--ember);
}

.pd-panel {
  display: none;
}

.pd-panel.active {
  display: block;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}

.inc-exc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.highlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0 30px;
}

.highlight-grid li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--ash);
}

.highlight-grid svg {
  flex: none;
  margin-top: 2px;
  stroke: var(--ember);
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--sand-2);
}

.tl-item {
  position: relative;
  padding-bottom: 34px;
}

.tl-item:last-child {
  padding-bottom: 0;
}

.tl-dot {
  position: absolute;
  left: -36px;
  top: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--flame-grad);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: .78rem;
  font-weight: 700;
}

.tl-item h4 {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.tl-meta {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.tl-meta span {
  font-size: .76rem;
  font-weight: 700;
  background: var(--sand-2);
  color: var(--maroon);
  padding: 5px 11px;
  border-radius: 999px;
}

/* .incl-cols{ display:grid; grid-template-columns:1fr 1fr; gap:30px; } */
.incl-cols h4 {
  font-size: 1rem;
  margin-bottom: 14px;
}

.incl-cols ul li {
  display: flex;
  gap: 10px;
  font-size: .92rem;
  margin-bottom: 11px;
  color: var(--ash);
}

.incl-cols svg {
  flex: none;
  margin-top: 2px;
}

.incl-cols.yes svg {
  stroke: #2E7D32;
}

.incl-cols.no svg {
  stroke: var(--ember);
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: var(--shadow-card);
  margin-bottom: 22px;
}

.sidebar-card h4 {
  font-size: .98rem;
  margin-bottom: 16px;
}

.sidebar-list li {
  display: flex;
  justify-content: space-between;
  font-size: .88rem;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ash);
  gap: 40px;
}

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

.sidebar-list li strong {
  color: var(--maroon-deep);
  text-align: right;
  font-weight: 700;
}

/* ---------- Utilities ---------- */
.mt-lg {
  margin-top: 60px;
}

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

.chip {
  display: inline-block;
  background: var(--sand-2);
  color: var(--maroon);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero-art {
    order: -1;
    height: auto;
  }

  .heroSwiper .swiper-slide img {
    height: auto;
    object-fit: contain;
  }

  .triad {
    grid-template-columns: 1fr;
  }

  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 28px;
  }

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

  .testi-grid {
    grid-template-columns: 1fr;
  }

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

  .layout-2col {
    grid-template-columns: 1fr;
  }

  .filter-box {
    display: none !important;
  }

  .pd-hero .container {
    grid-template-columns: 1fr;
  }

  .pd-layout {
    grid-template-columns: 1fr;
  }

  .incl-cols,
  .inc-exc-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .quote-strip {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .topbar {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--sand);
    flex-direction: column;
    padding: 30px 28px;
    gap: 8px;
    transform: translateX(-100%);
    transition: transform .3s ease;
    z-index: 90;
    align-items: flex-start;
    overflow-y: auto;
    height: 100vh;
  }

  .nav {
    padding: 14px 15px;
  }

  .sidebar-list li {
    display: flow;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .nav-toggle {
    display: flex;
  }

  .brand img {
    height: 44px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .quote-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 24px;
    width: 100%;
  }

  .footer-brand {
    grid-column: 1 / -1;
    width: 100%;
  }

  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
    gap: 16px;
  }

  .pkg-grid,
  .pkg-grid.two {
    grid-template-columns: 1fr;
  }

  .dest-grid .dest-card {
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .cta-left,
  .cta-right {
    padding: 36px 26px;
  }
}

.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--flame-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px -12px rgba(217, 72, 28, .6);
  z-index: 120;
  transition: transform .2s ease;
}

.whatsapp-fab:hover {
  transform: scale(1.08);
}

.dest-card,
.pkg-card,
.triad-card,
.testi-card,
.gallery-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.dest-card.in-view,
.pkg-card.in-view,
.triad-card.in-view,
.testi-card.in-view,
.gallery-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.p-text {
  color: white;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

}

/* ////////////////// */
.container-testi {
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 28px;
}

/* Mobile responsive footer adjustments */
@media (max-width: 768px) {
  .site-footer {
    padding-top: 48px;
  }

  .footer-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    width: 100% !important;
    padding-bottom: 36px !important;
  }

  .footer-col {
    width: 100% !important;
  }

  .footer-brand .p-text {
    max-width: 100% !important;
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .f-brand img {
    max-width: 180px !important;
    width: auto !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    text-align: center !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 0 28px !important;
  }

  .footer-bottom span {
    text-align: center !important;
    line-height: 1.5;
  }
}