/* ==========================================================================
   Nest Leisure — Travel & Holidays | Master Stylesheet
   Design system: warm "Indian sunrise" palette, editorial serif display,
   teal+saffron accents, fully responsive, motion-rich.
   ========================================================================== */

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

/* ---------- Design tokens ---------- */
:root {
  --teal-900: #073b31;
  --teal-700: #0e7c66;
  --teal-500: #14a085;
  --teal-300: #5fc8b0;
  --teal-50: #e6f5f1;

  --saffron-600: #e07a1f;
  --saffron-500: #f0902e;
  --saffron-400: #f7a94b;
  --saffron-100: #fcebd6;

  --gold: #c9a24e;
  --ink: #19212e;
  --ink-soft: #3a4456;
  --slate: #6b7280;
  --cloud: #f6f4ef;
  --paper: #fffdf9;
  --line: #e7e2d8;

  --rose: #d64564;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;

  --shadow-sm: 0 2px 8px rgba(25, 33, 46, 0.06);
  --shadow-md: 0 10px 30px rgba(25, 33, 46, 0.1);
  --shadow-lg: 0 24px 60px rgba(25, 33, 46, 0.16);
  --shadow-teal: 0 14px 34px rgba(14, 124, 102, 0.28);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
}

.container {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
}

/* utility */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-700);
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--saffron-500);
  border-radius: 2px;
}
.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.center {
  text-align: center;
}
.lede {
  color: var(--ink-soft);
  font-size: 1.08rem;
  max-width: 60ch;
}
.center .lede {
  margin-inline: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.3s;
  will-change: transform;
}
.btn svg {
  width: 18px;
  height: 18px;
}
.btn-primary {
  background: var(--teal-700);
  color: #fff;
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--teal-900);
  box-shadow: 0 20px 40px rgba(7, 59, 49, 0.32);
}
.btn-saffron {
  background: linear-gradient(120deg, var(--saffron-500), var(--saffron-600));
  color: #fff;
  box-shadow: 0 14px 30px rgba(224, 122, 31, 0.32);
}
.btn-saffron:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(224, 122, 31, 0.4);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-3px);
}
.btn-outline {
  border: 1.6px solid var(--teal-700);
  color: var(--teal-700);
}
.btn-outline:hover {
  background: var(--teal-700);
  color: #fff;
  transform: translateY(-3px);
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.topbar {
  background: var(--teal-900);
  color: #d9efe8;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  flex-wrap: wrap;
}
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.9;
  transition: opacity 0.25s;
}
.topbar a:hover {
  opacity: 1;
  color: #fff;
}
.topbar .tb-right {
  display: flex;
  gap: 1.3rem;
  align-items: center;
  flex-wrap: wrap;
}
.topbar svg {
  width: 15px;
  height: 15px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 249, 0.86);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition:
    box-shadow 0.35s,
    padding 0.35s;
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.brand img {
  height: 46px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.nav-links > li > a {
  position: relative;
  padding: 0.55rem 0.85rem;
  border-radius: 10px;
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-soft);
  transition:
    color 0.25s,
    background 0.25s;
}
.nav-links > li > a:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}
.nav-links > li > a.active {
  color: var(--teal-700);
}

/* dropdown */
.has-drop {
  position: relative;
}
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  padding: 0.6rem;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.28s var(--ease);
}
.has-drop:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: 0.2s;
}
.dropdown a:hover {
  background: var(--teal-50);
  color: var(--teal-700);
  padding-left: 1.05rem;
}
.dropdown a span {
  display: block;
  font-size: 0.76rem;
  color: var(--slate);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--ink);
  border-radius: 3px;
  transition: 0.3s;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    105deg,
    rgba(7, 59, 49, 0.78) 0%,
    rgba(14, 52, 74, 0.5) 40%,
    rgba(14, 52, 74, 0.08) 75%
  );
}
.hero .hero-content {
  color: #fff !important;
}
.hero-inner {
  padding: 5rem 0;
  max-width: 760px;
  color: #fff;
}
.hero h1 {
  color: #fff;
}
.hero h1 .em {
  color: var(--saffron-400);
  font-style: italic;
}

.hero .hero-content .lede {
  color: #fff;
}
.hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
}
.hero .badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--saffron-400);
  box-shadow: 0 0 0 4px rgba(247, 169, 75, 0.3);
}
.hero p.sub {
  font-size: 1.16rem;
  color: #eef6f3;
  max-width: 56ch;
  margin: 1.3rem 0 2rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2.4rem;
  margin: 2rem 0px;
  flex-wrap: wrap;
}
.hero-stats .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--saffron-400);
}
.hero-stats .lab {
  font-size: 0.85rem;
  color: #dfeee9;
  letter-spacing: 0.03em;
}

.hero-cta {
  display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Search / enquiry widget */
.search-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  margin-top: 2.6rem;
  max-width: 880px;
}
.search-card .sc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.search-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr auto;
  gap: 0.8rem;
  align-items: end;
}
.field label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}
.field input,
.field select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  transition: border 0.25s;
}
.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-50);
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust {
  background: var(--teal-900);
  color: #cfe9e1;
  padding: 1.1rem 0;
}
.trust .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.4rem;
  align-items: center;
}
.trust .item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.trust .item svg {
  width: 22px;
  height: 22px;
  color: var(--saffron-400);
  flex: none;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.sec-head {
  margin-bottom: 2.8rem;
}
.sec-head.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.sec-head h2 {
  margin-top: 0.3rem;
}

/* ==========================================================================
   DESTINATION CARDS
   ========================================================================== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(291px, 1fr));
  gap: 1.6rem;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
  isolation: isolate;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}
.dest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.dest-media {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.dest-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.dest-card:hover .dest-media img {
  transform: scale(1.08);
}
.dest-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 40, 33, 0.55), transparent 55%);
}
.dest-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: var(--teal-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 100px;
}
.dest-price {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
}
.dest-price b {
  font-family: var(--font-display);
  font-size: 1.25rem;
}
.dest-body {
  padding: 1.2rem 1.3rem 1.4rem;
}
.dest-body h3 {
  margin-bottom: 0.3rem;
}
.dest-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--slate);
  font-size: 0.85rem;
  margin: 0.55rem 0 0.9rem;
  flex-wrap: wrap;
}
.dest-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.dest-meta svg {
  width: 15px;
  height: 15px;
}
.stars {
  color: var(--saffron-500);
  letter-spacing: 1px;
}
.dest-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 0.9rem;
}
.dest-foot a {
  font-weight: 600;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.25s;
}
.dest-foot a:hover {
  gap: 0.65rem;
}

/* ==========================================================================
   SERVICES (MICE)
   ========================================================================== */
.serv-band {
  background: linear-gradient(180deg, var(--cloud), var(--paper));
}
.serv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.4rem;
}
.serv-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.serv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--saffron-500));
  transition: width 0.4s var(--ease);
}
.serv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.serv-card:hover::before {
  width: 100%;
}
.serv-ico {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--teal-50);
  color: var(--teal-700);
  margin-bottom: 1.1rem;
}
.serv-ico svg {
  width: 28px;
  height: 28px;
}
.serv-card h3 {
  margin-bottom: 0.5rem;
}
.serv-card p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}
.serv-card .more {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--teal-700);
  display: inline-flex;
  gap: 0.35rem;
  align-items: center;
}

/* feature split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split.reverse .split-media {
  order: 2;
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  position: relative;
}
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split ul.ticks {
  margin: 1.4rem 0;
  display: grid;
  gap: 0.8rem;
}
.split ul.ticks li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--ink-soft);
}
.split ul.ticks svg {
  width: 22px;
  height: 22px;
  color: var(--teal-500);
  flex: none;
  margin-top: 2px;
}

/* ==========================================================================
   WHY / STATS BAND
   ========================================================================== */
.why-band {
  background: var(--teal-900);
  color: #eaf6f1;
  position: relative;
  overflow: hidden;
}
.why-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.svg");
  background-size: 90px;
  opacity: 0.06;
}
.why-band .container {
  position: relative;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(291px, 1fr));
  gap: 1.6rem;
}
.why-item {
  padding: 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  transition: 0.35s;
}
.why-item:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}
.why-item .wic {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(95, 200, 176, 0.16);
  color: var(--teal-300);
  margin-bottom: 1rem;
}
.why-item .wic svg {
  width: 26px;
  height: 26px;
}
.why-item h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}
.why-item p {
  color: #bcdcd3;
  font-size: 0.92rem;
}

.statbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 3rem;
  text-align: center;
}
.statbar .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--saffron-400);
}
.statbar .lab {
  font-size: 0.88rem;
  color: #c4e0d8;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testi .quote {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--saffron-400);
  opacity: 0.5;
}
.testi p {
  color: var(--ink-soft);
  margin: 0.6rem 0 1.2rem;
  font-size: 1.02rem;
}
.testi .who {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testi .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--saffron-500));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
}
.testi .who b {
  display: block;
  font-size: 0.96rem;
}
.testi .who small {
  color: var(--slate);
}
.testi .rate {
  color: var(--saffron-500);
  margin-bottom: 0.4rem;
  letter-spacing: 1px;
}


.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.detail-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.8rem;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: .35s var(--ease);
}

.detail-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.detail-block .quote {
    font-size: 3.5rem;
    line-height: .7;
    color: var(--saffron-400);
    opacity: .4;
    margin-bottom: .5rem;
}

.detail-block .rate {
    color: var(--saffron-500);
    font-size: .95rem;
    letter-spacing: 1px;
    margin-bottom: .8rem;
}

.detail-block p {
    color: var(--ink-soft);
    font-size: .98rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-block .who {
    display: flex;
    align-items: center;
    gap: .8rem;
    border-top: 1px solid var(--line);
    padding-top: 1rem;
}

.detail-block .av {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        var(--teal-500),
        var(--saffron-500)
    );
    color: #fff;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .95rem;
}

.detail-block .who b {
    display: block;
    font-size: .95rem;
    color: var(--ink);
}

.detail-block .who small {
    color: var(--slate);
    font-size: .82rem;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
}
.cta-inner {
  background: linear-gradient(115deg, var(--teal-700), var(--teal-900));
  border-radius: var(--radius-lg);
  padding: clamp(2.4rem, 5vw, 4rem);
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-inner::before {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(247, 169, 75, 0.35),
    transparent 70%
  );
}
.cta-inner h2 {
  color: #fff;
}
.cta-inner p {
  color: #d6ece5;
  margin-top: 0.6rem;
  max-width: 52ch;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  position: relative;
}

/* ==========================================================================
   BLOG / POSTS
   ========================================================================== */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
}
.post {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: 0.4s var(--ease);
}
.post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.post-media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.post-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.post:hover .post-media img {
  transform: scale(1.07);
}
.post-body {
  padding: 1.3rem 1.4rem 1.5rem;
}
.post-body .cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-600);
}
.post-body h3 {
  margin: 0.5rem 0 0.6rem;
  font-size: 1.25rem;
}
.post-body p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}
.post-body .pmeta {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--slate);
  display: flex;
  gap: 1rem;
}

/* ==========================================================================
   PARTNERS marquee
   ========================================================================== */
.partners {
  padding: 2.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cloud);
}
.marquee {
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--slate);
  opacity: 0.7;
  white-space: nowrap;
}
@keyframes scroll {
  to {
    transform: translateX(-50%);
  }
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-info .ci-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .ci-item:last-child {
  border-bottom: none;
}
.contact-info .ci-ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-info .ci-ico svg {
  width: 22px;
  height: 22px;
}
.contact-info h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.contact-info p,
.contact-info a {
  color: var(--ink-soft);
  font-size: 0.95rem;
}
.contact-info a:hover {
  color: var(--teal-700);
}

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.96rem;
  background: var(--paper);
  transition:
    border 0.25s,
    box-shadow 0.25s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-50);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-note {
  font-size: 0.82rem;
  color: var(--slate);
  margin-top: 0.4rem;
}
.form-success {
  background: var(--teal-50);
  border: 1px solid var(--teal-300);
  color: var(--teal-900);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  margin-top: 1rem;
  display: none;
}
.form-success.show {
  display: block;
  animation: pop 0.4s var(--ease);
}

.captcha-wrapper {
    margin-bottom: 1rem;
}

.captcha-label {
    display: block;
    margin-bottom: .75rem;
}

.captcha-title {
    display: block;
    font-size: .9rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: .25rem;
}

.captcha-subtitle {
    display: block;
    font-size: .8rem;
    color: var(--slate);
}

.captcha-question-box {
    display: flex;
    align-items: center;
    gap: .75rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: var(--paper);
    border: 1.5px solid var(--line);
    border-radius: 12px;
}

.refresh {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 10px;
    background: var(--teal-500);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .7s ease;
}

.refresh svg {
    width: 20px;
    height: 20px;
}

.refresh:hover {
    background: var(--teal-700);
    transform: rotate(180deg);
}

.captcha-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teal-800);
    min-width: 80px;
}

.captcha-equals {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--ink);
}

.captcha-input {
    width: 150px;
    padding: .75rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-size: .95rem;
    background: #fff;
    transition: .3s ease;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, .15);
}

#captcha-error {
    display: block;
    margin-top: .5rem;
    font-size: .82rem;
    color: #dc2626;
}

#captcha-error.hidden {
    display: none;
}

@media (max-width: 576px) {
    .captcha-question-box {
        gap: .5rem;
    }

    .captcha-input {
        width: 100%;
    }
}

@keyframes pop {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  color: #c3c9d4;
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.4rem;
}
.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 1.1rem;
}
.footer .f-logo {
  background: #fff;
  padding: 0.6rem 0.8rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 1rem;
}
.footer .f-logo img {
  height: 40px;
}
.footer p {
  font-size: 0.92rem;
  color: #9aa3b2;
  margin-bottom: 1rem;
}
.footer ul li {
  margin-bottom: 0.6rem;
}
.footer ul a {
  font-size: 0.92rem;
  color: #aeb6c2;
  transition: 0.25s;
}
.footer ul a:hover {
  color: #fff;
  padding-left: 5px;
}
.footer .socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.4rem;
}
.footer .socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  transition: 0.3s;
}
.footer .socials a:hover {
  background: var(--teal-700);
  transform: translateY(-3px);
}
.footer .socials svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.f-contact li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: #aeb6c2;
  align-items: flex-start;
}
.f-contact svg {
  width: 17px;
  height: 17px;
  color: var(--teal-300);
  flex: none;
  margin-top: 3px;
}
.f-contact-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2.2rem;
  font-size: 0.88rem;
  color: #bcdcd3;
}
.f-contact-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.f-contact-bar svg {
  width: 18px;
  height: 18px;
  color: var(--saffron-400);
  flex: none;
}
.f-contact-bar a {
  color: #bcdcd3;
}
.f-contact-bar a:hover {
  color: #fff;
}
.f-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #8b94a3;
}
.f-bottom a:hover {
  color: #fff;
}

/* ==========================================================================
   FLOATING ACTIONS
   ========================================================================== */
.fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.fab a {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s;
}
.fab a:hover {
  transform: scale(1.1);
}
.fab .wa {
  background: #25d366;
}
.fab .call {
  background: var(--teal-700);
}
.fab svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

/* breadcrumb / page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 4.5rem);
  color: #fff;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    rgba(7, 59, 49, 0.85),
    rgba(14, 52, 74, 0.6)
  );
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero h1 {
  color: #fff;
  max-width: 18ch;
}
.page-hero p {
  color: #dcefe9;
  max-width: 56ch;
  margin-top: 1rem;
  font-size: 1.08rem;
}
.crumbs {
  font-size: 0.85rem;
  color: #bfe0d7;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.crumbs a:hover {
  color: #fff;
}

/* faq (AEO) */
.faq-list {
  display: grid;
  gap: 0.9rem;
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item[open] {
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  padding: 1.1rem 1.3rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--ink);
  font-size: 1.02rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary .pm {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.3s;
  font-weight: 700;
}
.faq-item[open] summary .pm {
  transform: rotate(45deg);
}
.faq-item .faq-a {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
.reveal.d1 {
  transition-delay: 0.08s;
}
.reveal.d2 {
  transition-delay: 0.16s;
}
.reveal.d3 {
  transition-delay: 0.24s;
}
.reveal.d4 {
  transition-delay: 0.32s;
}

/* ---------- Mobile menu drawer ---------- */
.mobile-menu {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(82vw, 340px);
  z-index: 200;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  padding: 1.4rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column; /* ← removed display:none */
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  transition:
    transform 0.4s var(--ease),
    visibility 0s 0s;
}
.mm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.4rem;
}
.mm-head img {
  height: 40px;
}
.mm-close {
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1;
}
.mobile-menu nav a {
  display: block;
  padding: 0.85rem 0.4rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-menu nav a:hover {
  color: var(--teal-700);
}
.mm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 30, 0.45);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
}
.mm-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu .mm-cta {
  margin-top: 1.4rem;
  display: grid;
  gap: 0.7rem;
}

/* ==========================================================================
   DESTINATION / PACKAGE DETAIL COMPONENTS
   ========================================================================== */
/* quick info pills under page hero */
.info-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.info-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}
.info-pills .pill svg {
  width: 16px;
  height: 16px;
  flex: none;
}

/* highlights chips */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.highlights .hl {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
}
.highlights .hl svg {
  width: 24px;
  height: 24px;
  color: var(--teal-700);
  flex: none;
  margin-top: 2px;
}
.highlights .hl b {
  display: block;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.96rem;
}
.highlights .hl span {
  font-size: 0.86rem;
  color: var(--slate);
}

/* itinerary timeline */
.timeline {
  position: relative;
  margin-left: 8px;
  padding-left: 1.8rem;
  border-left: 2px solid var(--line);
  display: grid;
  gap: 1.4rem;
}
.timeline .day {
  position: relative;
}
.timeline .day::before {
  content: "";
  position: absolute;
  left: calc(-1.8rem - 6px);
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--saffron-500);
  box-shadow: 0 0 0 4px var(--saffron-100);
}
.timeline .day .dno {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--saffron-600);
}
.timeline .day h3 {
  font-size: 1.12rem;
  margin: 0.15rem 0 0.4rem;
}
.timeline .day p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* inclusions / exclusions */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}
.incl-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.incl-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.incl-card h3 svg {
  width: 20px;
  height: 20px;
}
.incl-card.inc h3 svg {
  color: var(--teal-600, #0e7c66);
}
.incl-card ul {
  display: grid;
  gap: 0.55rem;
}
.incl-card li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.incl-card li svg {
  width: 18px;
  height: 18px;
  flex: none;
  margin-top: 2px;
}
.incl-card.inc li svg {
  color: var(--teal-500);
}
.incl-card.exc li svg {
  color: var(--rose);
}

/* sticky price/booking aside */
.book-card {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  box-shadow: var(--shadow-md);
}
.book-card .bc-from {
  font-size: 0.82rem;
  color: var(--slate);
}
.book-card .bc-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--teal-900);
  line-height: 1.1;
}
.book-card .bc-price small {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--slate);
  font-weight: 400;
}
.book-card .bc-rows {
  margin: 1.1rem 0;
  display: grid;
  gap: 0.6rem;
}
.book-card .bc-rows .r {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
}
.book-card .bc-rows .r:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.book-card .bc-rows .r b {
  color: var(--ink);
  font-family: var(--font-body);
}
.book-card .btn {
  width: 100%;
  justify-content: center;
}
.book-card .bc-call {
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.88rem;
  color: var(--slate);
}
.book-card .bc-call a {
  color: var(--teal-700);
  font-weight: 600;
}

/* gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery figure:hover img {
  transform: scale(1.06);
}

/* mini package cards list on detail pages */
.pkg-list {
  display: grid;
  gap: 1rem;
}
.pkg-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 1.2rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
}
.pkg-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pkg-row .pr-media {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
}
.pkg-row .pr-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pkg-row h3 {
  font-size: 1.06rem;
  margin-bottom: 0.2rem;
}
.pkg-row .pr-meta {
  font-size: 0.84rem;
  color: var(--slate);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
}
.pkg-row .pr-cta {
  text-align: right;
}
.pkg-row .pr-cta .pr-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal-900);
  font-weight: 600;
}
.pkg-row .pr-cta .pr-price small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--slate);
  font-weight: 400;
}

@media (max-width: 980px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
  .book-card {
    position: static;
  }
}
@media (max-width: 680px) {
  .incl-grid {
    grid-template-columns: 1fr;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .pkg-row {
    grid-template-columns: 84px 1fr;
  }
  .pkg-row .pr-cta {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   KESARI-STYLE MEGA MENU + EXTRAS
   ========================================================================== */
.tb-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.84rem;
  color: var(--cloud);
  opacity: 0.85;
}
.tb-phone {
  font-weight: 600;
}

.has-mega {
  position: static;
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 3px solid var(--saffron-500);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s var(--ease);
  z-index: 60;
  padding: 1.8rem 0 1.4rem;
}
.has-mega:hover > .mega,
.has-mega:focus-within > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega .mega-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.mega.mega-sm .mega-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}
.mega-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--saffron-600);
  margin-bottom: 0.7rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.mega-col a {
  display: block;
  padding: 0.42rem 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
  transition: 0.2s;
  border-radius: 4px;
}
.mega-col a:hover {
  color: var(--teal-700);
  padding-left: 6px;
}
.mega-foot {
  max-width: var(--maxw);
  margin: 1rem auto 0;
  padding: 1rem 24px 0;
  border-top: 1px solid var(--line);
}
.mega-foot a {
  font-size: 0.92rem;
  color: var(--teal-700);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.mega-foot svg {
  width: 16px;
  height: 16px;
}
.has-mega.pilgrim > a {
  color: var(--saffron-600);
}

/* mobile accordion menu */
.mm-acc {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.mm-acc > a,
.mm-acc > details > summary {
  display: block;
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}
.mm-acc details > summary::-webkit-details-marker {
  display: none;
}
.mm-acc details > summary::after {
  content: "+";
  float: right;
  color: var(--saffron-600);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.25s;
}
.mm-acc details[open] > summary::after {
  transform: rotate(45deg);
}
.mm-acc details > div {
  padding: 0.4rem 0 0.8rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  border-bottom: 1px solid var(--line);
}
.mm-acc details > div a {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 400;
}

@media (max-width: 1024px) {
  .mega {
    display: none;
  }
}

/* Kesari-style stat band */
.legacy-band {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-700) 100%);
  color: #fff;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.legacy-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../images/pattern.svg");
  background-size: 120px;
  opacity: 0.05;
  pointer-events: none;
}
.legacy-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  align-items: center;
  text-align: center;
  position: relative;
}
.legacy-grid .item .ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.6rem;
  color: var(--saffron-400);
}
.legacy-grid .item .num {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.5vw, 2.4rem);
  line-height: 1;
  font-weight: 500;
  color: #fff;
}
.legacy-grid .item .lab {
  font-size: 0.84rem;
  color: #bcdcd3;
  margin-top: 0.3rem;
}
@media (max-width: 860px) {
  .legacy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}

/* destination region tabs */
.region-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.region-tab {
  padding: 0.6rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: 0.2s;
}
.region-tab.active,
.region-tab:hover {
  background: var(--teal-700);
  color: #fff;
  border-color: var(--teal-700);
}

/* deal cards */
.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
}
.deal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.3s;
  position: relative;
}
.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.deal-card .deal-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.deal-card .deal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.deal-card:hover .deal-media img {
  transform: scale(1.06);
}
.deal-card .deal-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--rose);
  color: #fff;
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.deal-card .deal-body {
  padding: 1.2rem 1.3rem 1.4rem;
}
.deal-card .deal-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}
.deal-card .deal-meta {
  font-size: 0.82rem;
  color: var(--slate);
  margin-bottom: 0.7rem;
}
.deal-card .deal-price {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.deal-card .deal-price .now {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--teal-900);
  font-weight: 600;
}
.deal-card .deal-price .was {
  font-size: 0.9rem;
  color: var(--slate);
  text-decoration: line-through;
}
.deal-card .deal-price .save {
  font-size: 0.78rem;
  background: var(--saffron-100);
  color: var(--saffron-600);
  padding: 3px 8px;
  border-radius: 6px;
  font-weight: 600;
}

/* blog grid (extended) */
.blog-hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  margin-bottom: 2.5rem;
}
/* .blog-hero .feat { aspect-ratio: 16/10; } */
.blog-hero .side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 1.4rem;
}
@media (max-width: 760px) {
  .blog-hero {
    grid-template-columns: 1fr;
  }
  .legacy-grid .item .ico {
    width: 40px;
    height: 40px;
  }
}

/* category pill */
.cat-pill {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  background: var(--teal-50);
  color: var(--teal-700);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 0.6rem;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
}

.spec-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.4s var(--ease);
  box-shadow: var(--shadow-sm);
}

.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.spec-card .spec-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.spec-card .spec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.spec-card:hover .spec-img img {
  transform: scale(1.07);
}

.spec-card .spec-body {
  padding: 1.3rem 1.4rem 1.5rem;
}

.spec-card h3 {
  margin: 0.5rem 0 0.6rem;
  font-size: 1.25rem;
}

.spec-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.spec-card .spec-link {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 16px;
  color: var(--teal-700);
  font-weight: 600;
}
.spec-link svg {
  width: 25px;
  height: 25px;
}

/* awards / trust strip */
.awards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.4rem;
  align-items: center;
  padding: 2rem 0;
}
.awards .award {
  text-align: center;
  padding: 1rem;
}
.awards .award .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal-700);
  font-weight: 600;
}
.awards .award .lab {
  font-size: 0.8rem;
  color: var(--slate);
  margin-top: 0.2rem;
}

.detail-main{
      display: flex;
    flex-direction: column;
    gap: 25px;
}
.detail-block h2{
  margin-bottom: 15px;
}
/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
   @media(min-width:1025px) and (max-width:1254px){
    .nav{
          gap: 10px;
    }
    .nav-links > li > a{
      font-size: 14px;
      padding: 0.55rem 0.313rem;
    }
    .btn-saffron {    
    padding: 10px;
    font-size: 14px;
}
   }
@media (max-width: 1024px) {
    .nav-links,
  .nav-cta .btn-text {
    display: none;
  }
  .burger {
    display: flex;
  }
  .mobile-menu {
    display: block;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .search-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .contact-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }
  .split.reverse .split-media {
    order: 0;
  }
  .cta-inner {
    text-align: center;
  }
  .cta-actions {
    align-items: center;
  }
}
@media (max-width: 860px) {

  .statbar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
  }
  h1 {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .search-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 1.4rem;
  }
  .topbar .tb-left {
    display: none;
  }
  .topbar .container {
    justify-content: center;
  }
  .dest-grid,.spec-grid,.why-grid,.testi-grid,.post-grid,.serv-grid,.deals-grid{
    grid-template-columns: 1fr;
  }
}


@media(max-width:480px){
  .cta-actions a{
    padding: 10px 14px;
  }
}