
/* ── TOP BAR ─────────────────────────────────────── */
.top-bar { background: #111827; border-bottom: 1px solid #1e2a3a; }
.top-bar-inner { display:flex; align-items:center; justify-content:space-between; height:34px; }
.top-bar-left, .top-bar-right { display:flex; align-items:center; gap:12px; }
.top-bar-link { font-size:0.76rem; color:var(--white); text-decoration:none; font-weight:500; transition:color 0.2s; }
.top-bar-link:hover { color:var(--orange); }
.top-bar-sep { color:#333; font-size:0.7rem; }
.top-bar-partner { font-size:0.76rem; font-weight:700; color:var(--orange); text-decoration:none; padding:3px 10px; border:1px solid rgba(244,121,32,0.3); border-radius:50px; transition:var(--trans); }
.top-bar-partner:hover { background:var(--orange); color:var(--white); }
@media(max-width:768px) { .top-bar-left { display:none; } .top-bar-inner { justify-content:flex-end; } }

/* ============================================
   SAMYATI.IN — SHARED STYLESHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── VARIABLES ─────────────────────────────── */
:root {
  --orange:   #F47920;
  --orange-l: #FEF0E6;
  --orange-d: #D4651A;
  --red:      #E31E24;
  --dark:     #1C2340;
  --dark-2:   #252D4A;
  --mid:      #555555;
  --light:    #F7F7F7;
  --divider:  #E0E0E0;
  --white:    #FFFFFF;
  --wa-green: #25D366;
  --ff-head:  'Cormorant Garamond', Georgia, serif;
  --ff-body:  'Outfit', sans-serif;
  --radius:   6px;
  --shadow:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.14);
  --trans:    all 0.25s ease;
}

/* ── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body { font-family: var(--ff-body); color: var(--dark); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* ── TYPOGRAPHY ────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--ff-head); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--mid); line-height: 1.75; font-size: 1rem; }

.section-label { /* eyebrow */
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  display: block;
}
.section-title {
  font-family: var(--ff-head);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--mid);
  max-width: 620px;
  line-height: 1.7;
}

/* ── LAYOUT ────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 56px 0; }
.section-sm { padding: 28px 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--light); }

/* ── NAV ───────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--dark);
  border-bottom: 2px solid var(--orange);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 58px;
}
.nav-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo {
  height: 46px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  color: #ccc;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: var(--trans);
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--orange); }
.nav-wa {
  display: flex; align-items: center; gap: 7px;
  background: var(--wa-green);
  color: var(--white) !important;
  padding: 8px 14px !important;
  border-radius: 24px !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  margin-left: 8px;
}
.nav-wa:hover { background: #1ebe5c !important; color: var(--white) !important; }
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; cursor: pointer;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans);
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  padding: 16px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: #ccc; font-size: 0.9rem; padding: 10px 0;
  border-bottom: 1px solid #333;
  transition: var(--trans);
}
.nav-mobile a:hover { color: var(--red); }
.nav-mobile .nav-wa {
  margin: 8px 0 0; border-radius: var(--radius) !important;
  justify-content: center; padding: 12px !important;
}

/* ── FLOATING WHATSAPP ─────────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: var(--wa-green);
  color: var(--white);
  padding: 13px 20px 13px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  font-weight: 600; font-size: 0.9rem;
  transition: var(--trans);
  animation: wa-pulse 2.5s ease-in-out infinite;
}
.wa-float:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(37,211,102,0.5);
  animation: none;
}
.wa-float svg { width: 20px; height: 20px; flex-shrink: 0; }
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
}

/* ── BUTTONS ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.92rem;
  transition: var(--trans);
  font-family: var(--ff-body);
}
.btn-orange {
  background: var(--orange); color: var(--white);
}
.btn-orange:hover { background: var(--red); transform: translateY(-1px); }
.btn-outline {
  border: 2px solid var(--orange); color: var(--orange); background: transparent;
}
.btn-outline:hover { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-wa {
  background: var(--wa-green); color: var(--white);
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-1px); }
.btn-dark {
  background: var(--dark); color: var(--white);
}
.btn-dark:hover { background: #333; transform: translateY(-1px); }

/* ── HERO ──────────────────────────────────── */
.hero {
  background: var(--dark);
  padding: 64px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--red), var(--orange));
}
.hero-eyebrow {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 16px;
}
.hero h1 { color: var(--white); }
.hero h1 em { font-style: italic; color: var(--orange); }
.hero-sub {
  font-size: 1.1rem; color: #aaa;
  max-width: 580px; line-height: 1.75;
  margin: 20px 0 36px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(244,121,32,0.12);
  border: 1px solid rgba(244,121,32,0.3);
  color: var(--orange);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 600;
  margin-top: 28px;
}

/* ── STATS BAR ─────────────────────────────── */
.stats-bar {
  background: var(--orange);
  padding: 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 20px 20px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-head);
  font-size: 2.4rem; font-weight: 700;
  color: var(--white); line-height: 1;
}
.stat-label {
  font-size: 0.88rem; color: rgba(255,255,255,0.85);
  margin-top: 4px; font-weight: 500;
}

/* ── CARDS ─────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--trans);
}
.card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.card:hover .card-icon {
  background: rgba(227,30,36,0.14);
  border: 1.5px solid rgba(227,30,36,0.3);
}
.card-icon {
  width: 38px; height: 38px;
  background: var(--orange-l);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--orange); font-size: 1.1rem;
}
.card h4 { color: var(--dark); margin-bottom: 8px; }
.card p  { font-size: 0.95rem; }

/* ── GRID UTILITIES ────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* ── ORANGE BAND ───────────────────────────── */
.orange-band {
  background: var(--orange);
  padding: 20px 0;
  text-align: center;
}
.orange-band p {
  color: var(--white); font-weight: 600; font-size: 1.05rem;
}
.orange-band em { font-style: italic; }

/* ── TAG / BADGE ───────────────────────────── */
.tag {
  display: inline-block;
  background: var(--orange-l);
  color: var(--orange);
  font-size: 0.75rem; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
}
.tag-dark {
  background: var(--dark);
  color: var(--white);
}

/* ── TABLE ─────────────────────────────────── */
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th {
  background: var(--dark); color: var(--white);
  padding: 11px 14px; text-align: left;
  font-weight: 600; font-size: 0.88rem;
}
.data-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--divider);
  color: var(--mid);
  font-size: 0.95rem;
}
.data-table tr:nth-child(even) td { background: var(--light); }
.data-table td:first-child { color: var(--dark); font-weight: 500; }
.data-table .count {
  font-weight: 700; color: var(--orange);
  font-family: var(--ff-head); font-size: 1.1rem;
}

/* ── DIVIDER ───────────────────────────────── */
.divider {
  height: 1px; background: var(--divider);
  margin: 0;
}
.divider-orange {
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin-bottom: 24px;
}

/* ── SECTION HEADER ────────────────────────── */
.section-hd { margin-bottom: 28px; }
.section-hd.centered { text-align: center; }
.section-hd.centered .section-sub { margin: 0 auto; }

/* ── FOOTER ────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #aaa;
  padding: 40px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 20px;
  padding-bottom: 28px;
}
.footer-brand h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-brand h3 span { color: var(--orange); }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.6; color: #888; }
.footer h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.footer ul li { margin-bottom: 8px; }
.footer ul a {
  font-size: 0.92rem; color: #888;
  transition: var(--trans);
}
.footer ul a:hover { color: var(--red); }
.footer-contact p {
  font-size: 0.92rem; margin-bottom: 6px; color: #888;
}
.footer-contact a { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding: 16px 0;
  display: flex; align-items: center;
  justify-content: space-between;
  font-size: 0.78rem; color: #555;
}
.footer-bottom a { color: #555; transition: var(--trans); }
.footer-bottom a:hover { color: var(--red); }

/* ── PAGE HERO (inner pages) ───────────────── */
.page-hero {
  background: var(--dark);
  padding: 36px 0 28px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
}
.page-hero-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase; font-weight: 700;
  color: var(--orange); margin-bottom: 12px;
}
.page-hero-title {
  color: var(--white);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  line-height: 1.2;
  max-width: 580px;
  margin-bottom: 10px;
}
.page-hero-sub {
  color: #aaa;
  font-size: 0.92rem;
  max-width: 500px;
  line-height: 1.65;
  margin: 0;
}

.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p  { color: #999; font-size: 1rem; max-width: 560px; margin-top: 12px; }

/* ── HIGHLIGHT BOX ─────────────────────────── */
.highlight-box {
  background: var(--orange-l);
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  padding: 18px 24px;
  font-size: 0.95rem;
  color: var(--dark);
}
.highlight-box strong { color: var(--orange); }

/* ── COMPARISON TABLE ──────────────────────── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table th {
  padding: 11px 16px; font-weight: 700; font-size: 0.88rem;
  text-align: center;
}
.compare-table th:first-child { background: #fdecea; color: #c62828; }
.compare-table th:last-child  { background: #e8f5e9; color: #2e7d32; }
.compare-table td {
  padding: 8px 14px;
  vertical-align: middle;
  border-bottom: 1px solid var(--divider);
  line-height: 1.5;
}
.compare-table tr:nth-child(even) td:first-child { background: #fffafa; }
.compare-table tr:nth-child(even) td:last-child  { background: #f1faf3; }
.compare-table tr:nth-child(odd) td:first-child  { background: #fff5f5; }
.compare-table tr:nth-child(odd) td:last-child   { background: #e8f5e9; }
.compare-table .bad  { color: var(--mid); }
.compare-table .good { color: var(--dark); font-weight: 500; }

/* ── BRAND PILL ────────────────────────────── */
.brand-pill {
  padding: 8px 15px;
  background: var(--light);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--dark);
  transition: var(--trans);
  display: flex; align-items: center; gap: 6px;
}
.brand-pill:hover {
  border-color: var(--red);
  background: rgba(227,30,36,0.07);
  color: var(--red);
}
.brand-pill::before {
  content: '›';
  color: var(--orange);
  font-size: 1rem;
  font-weight: 700;
}

/* ── CONTACT CARD ──────────────────────────── */
.contact-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
}
.contact-card h3 { color: var(--white); margin-bottom: 8px; }
.contact-card p  { color: #888; font-size: 0.9rem; margin-bottom: 20px; }

/* ── RESPONSIVE ────────────────────────────── */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 700px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-grid { grid-template-columns: 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .wa-float { bottom: 20px; right: 16px; padding: 11px 16px 11px 13px; font-size: 0.82rem; }
}

/* ── ANIMATIONS ────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.55s ease both; }
.fade-up-2 { animation: fadeUp 0.55s 0.1s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.2s ease both; }

/* ── DROPDOWN NAV ──────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ''; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid #333;
  border-top: 2px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  padding: 6px 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  color: #ccc;
  transition: var(--trans);
  white-space: nowrap;
}
.dropdown-menu a:hover { color: var(--red); background: rgba(227,30,36,0.07); }
.dropdown-divider {
  height: 1px;
  background: #333;
  margin: 6px 0;
}

/* ── CONTACT FORM ──────────────────────────── */
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--trans);
  outline: none;
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,121,32,0.12);
}
.form-input::placeholder { color: #bbb; }
textarea.form-input { resize: vertical; min-height: 110px; }
select.form-input { cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}
.form-submit:hover { background: var(--red); transform: translateY(-1px); }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #4caf50;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-weight: 500;
  margin-top: 12px;
  text-align: center;
}

/* ── POLICY PAGES ──────────────────────────── */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 36px 24px;
}
.policy-content h1 { font-size: clamp(1.6rem,3vw,2.2rem); margin-bottom: 8px; }
.policy-content .policy-date { font-size:0.88rem; color:var(--mid); margin-bottom:32px; }
.policy-content h2 { font-size:1.2rem; color:var(--dark); margin:22px 0 8px; font-family:var(--ff-head); }
.policy-content p, .policy-content li { font-size:0.97rem; color:var(--mid); line-height:1.75; margin-bottom:10px; }
.policy-content ul { padding-left:20px; list-style:disc; }
.policy-content strong { color:var(--dark); }

/* ── PDF DOWNLOAD BTNS ─────────────────────── */
.pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--trans);
  background: transparent;
}
.pdf-btn:hover { background: var(--red); color: var(--white); border-color: var(--red); }

/* ══════════════════════════════════════════
   HOTEL ENQUIRY MODAL
   ══════════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.55);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.22s ease;
}
.modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.modal-box {
  background: var(--white);
  border-radius: 10px;
  width: 100%; max-width: 480px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  overflow: hidden;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.22s ease;
}
.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}
.modal-header {
  background: var(--orange);
  padding: 16px 20px;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
}
.modal-hotel-name {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.modal-hotel-city {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 2px;
}
.modal-close {
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer;
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1rem; font-weight: 700;
  flex-shrink: 0; transition: var(--trans);
  font-family: var(--ff-body);
}
.modal-close:hover { background: rgba(255,255,255,0.35); }
.modal-body { padding: 20px; }
.modal-body .form-group { margin-bottom: 14px; }
.modal-body .form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--dark); margin-bottom: 5px;
}
.modal-body .form-input {
  width: 100%; padding: 9px 12px;
  border: 1.5px solid var(--divider); border-radius: var(--radius);
  font-family: var(--ff-body); font-size: 0.9rem; color: var(--dark);
  outline: none; transition: var(--trans); background: var(--white);
}
.modal-body .form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,121,32,0.1);
}
.modal-body textarea.form-input { resize: vertical; min-height: 72px; }
.modal-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.modal-footer {
  padding: 14px 20px;
  background: var(--light);
  border-top: 1px solid var(--divider);
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.modal-submit {
  flex: 1; padding: 11px 16px;
  background: var(--wa-green); color: var(--white);
  border: none; border-radius: var(--radius);
  font-family: var(--ff-body); font-size: 0.95rem; font-weight: 700;
  cursor: pointer; transition: var(--trans);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.modal-submit:hover { background: #1ebe5c; transform: translateY(-1px); }
.modal-cancel {
  padding: 11px 16px; border: 1.5px solid var(--divider);
  border-radius: var(--radius); background: var(--white);
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600;
  color: var(--mid); cursor: pointer; transition: var(--trans);
}
.modal-cancel:hover { border-color: var(--mid); color: var(--dark); }
@media (max-width: 480px) {
  .modal-grid-2 { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════
   ENHANCED ANIMATIONS
   ══════════════════════════════════════════ */

/* Reveal base — elements start hidden */
.reveal, .reveal-l, .reveal-r, .reveal-up {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal    { transform: translateY(28px); }
.reveal-l  { transform: translateX(-32px); }
.reveal-r  { transform: translateX(32px); }
.reveal-up { transform: translateY(20px) scale(0.97); }

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* Count-up numbers */
.count-up { display: inline-block; }

/* Shimmer on orange band */
.orange-band {
  position: relative; overflow: hidden;
}
.orange-band::after {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: shimmer 3.5s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -60%; }
  100% { left: 160%; }
}

/* Pulse on WA float */
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,0.7); }
}

/* Gradient text utility */
.grad-text {
  background: linear-gradient(135deg, var(--orange), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Ticker / horizontal scroll strip */
.ticker-wrap {
  overflow: hidden;
  background: var(--dark);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 10px 0;
}
.ticker-inner {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  padding: 0 32px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
  white-space: nowrap;
  display: flex; align-items: center; gap: 10px;
}
.ticker-item .dot { width: 4px; height: 4px; background: var(--orange); border-radius: 50%; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Feature strip — icon + label inline */
.feat-strip {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.feat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 50px;
  font-size: 0.88rem; font-weight: 500; color: var(--dark);
  transition: var(--trans);
}
.feat-pill:hover {
  border-color: var(--red);
  background: rgba(227,30,36,0.07);
  color: var(--red);
  transform: translateY(-2px);
}
.feat-pill .pip { color: var(--orange); font-size: 1rem; }

/* Big number hero stat */
.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 40px;
}
.hero-stat-item {
  padding: 20px 16px; text-align: center;
  background: rgba(255,255,255,0.04);
}
.hero-stat-num {
  font-family: var(--ff-head);
  font-size: 2rem; font-weight: 700;
  color: var(--orange); line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.78rem; color: #888; margin-top: 4px;
}

/* Trust bar */
.trust-bar {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
  padding: 18px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; color: var(--mid); font-weight: 500;
}
.trust-item .check {
  width: 20px; height: 20px; background: var(--orange);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; color: var(--white);
  font-size: 0.65rem; flex-shrink: 0;
}

/* Diagonal section break */
.section-diagonal {
  position: relative;
  padding-bottom: 60px;
}
.section-diagonal::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 50px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.section-diagonal-inv::after {
  background: var(--light);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

/* Highlight card variant */
.hcard {
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
}
.hcard::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
}
.hcard:hover { transform: translateX(4px); box-shadow: var(--shadow); }



/* ══════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE — 768px & 480px
   ══════════════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Base ── */
  .container { padding: 0 16px; }
  .section    { padding: 36px 0; }
  .section-sm { padding: 22px 0; }
  .section-hd { margin-bottom: 22px; }
  .section-title { font-size: 1.4rem; }

  /* ── NAV ── */
  .nav-links, .nav-cta { display: none !important; }
  .hamburger { display: flex !important; }
  .nav-inner { padding: 0 16px; height: 56px; }
  .nav-logo img { height: 38px; }

  /* ── Page hero ── */
  .page-hero { padding: 28px 0 20px; }
  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p  { font-size: 0.9rem; }

  /* ── Grid layouts → single column ── */
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* ── Hero ── */
  .hero-inner { padding: 40px 0 0; }
  .hero h1    { font-size: 1.9rem; }
  .hero-sub   { font-size: 0.92rem; }
  .hero-ctas  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  /* Hero stat grid */
  .hero-inner > .container > div[style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr 1fr 1fr !important;
    max-width: 100% !important;
  }

  /* ── Trust bar ── */
  .trust-bar {
    gap: 10px;
    padding: 10px 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .trust-item { white-space: nowrap; font-size: 0.8rem; }
  .trust-bar .trust-item:last-child { margin-left: 0 !important; }

  /* ── Search section ── */
  .hs-input {
  flex: 1;
  font-size: 0.9rem;
  padding: 13px 16px;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 50px 0 0 50px;
  min-width: 0;
}
  .not-sure-link-inner { flex-direction: column; text-align: center; gap: 6px; padding: 12px 16px; }
  .not-sure-panel { margin: 10px 0 0; }
  .ns-form-grid { grid-template-columns: 1fr !important; }

  /* ── Category tiles ── */
  .cat-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .cat-tile:nth-child(2n)  { border-right: none !important; }
  .cat-tile:nth-child(2n+1):nth-last-child(-n+2),
  .cat-tile:nth-child(2n+1):nth-last-child(-n+2) ~ .cat-tile { border-bottom: none !important; }

  /* ── International grid ── */
  .intl-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Diff grid (2×3) → 1 col ── */
  .diff-grid { grid-template-columns: 1fr !important; }
  .diff-cell { border-right: none !important; }
  .diff-cell:nth-child(5), .diff-cell:nth-child(6) { border-bottom: 1px solid var(--divider) !important; }
  .diff-cell:last-child { border-bottom: none !important; }

  /* ── 3 steps horizontal → vertical ── */
  .steps-h {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .step-arrow { display: none !important; }

  /* ── Day use section ── */
  .section > .container > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* ── Founder section in about ── */
  div[style*="grid-template-columns:260px 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  div[style*="grid-template-columns:260px"] { grid-template-columns: 1fr !important; }

  /* ── Feature rows (what makes us diff numbered) ── */
  .feat-row { grid-template-columns: 1fr !important; }
  .feat-num { padding: 12px 18px !important; min-width: unset !important; }

  /* ── Testimonial grid ── */
  section[style*="background:#1a1a1a"] .grid-3,
  section[style*="background:#1a1a1a"] > .container > div > div {
    grid-template-columns: 1fr !important;
  }

  /* ── Inline 2-col grids ── */
  div[style*="grid-template-columns:1fr 1fr;gap:40px"],
  div[style*="grid-template-columns:1fr 1fr;gap:48px"],
  div[style*="grid-template-columns:1fr 1fr;gap:36px"],
  div[style*="grid-template-columns:1fr 1fr;gap:16px"],
  div[style*="grid-template-columns:1fr 1fr;gap:14px"],
  div[style*="grid-template-columns:1fr 1fr;gap:10px"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* ── Pricing table ── */
  div[style*="grid-template-columns:200px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Corporate stat row ── */
  .stat-row { grid-template-columns: 1fr 1fr 1fr !important; }
  .stat-big { font-size: 1.5rem; }

  /* ── Who we serve cards - height:120px photo strip ── */
  div[style*="height:120px"] { height: 80px; }

  /* ── Brand boxes scroll ── */
  .brand-boxes-wrap { margin: 0 -16px; }

  /* ── FAQ ── */
  .faq-q { font-size: 0.9rem; padding: 12px 16px; }
  .faq-a { padding: 14px 16px; }

  /* ── Forms ── */
  div[style*="grid-template-columns:1fr 1fr;gap:14px"],
  div[style*="grid-template-columns:1fr 1fr;gap:12px"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Footer ── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 0.78rem;
  }
  .footer-bottom span:last-child { flex-wrap: wrap; justify-content: center; }

  /* ── Destination table ── */
  .data-table { font-size: 0.82rem; }
  .data-table th, .data-table td { padding: 10px 10px; }
  .data-table .col-count, .data-table .col-cities { display: none; }

  /* ── Hero stat mini ── */
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-lbl { font-size: 0.68rem; }

  /* ── Orange band ── */
  .orange-band p { font-size: 0.88rem; }

  /* ── Category page controls ── */
  .controls-bar { flex-wrap: wrap; gap: 8px; }
  .search-input { min-width: unset !important; width: 100% !important; }
  .expand-btns  { display: none; }

  /* ── Modal ── */
  .modal-box { margin: 16px; width: calc(100% - 32px); padding: 0; }
  .modal-header { padding: 16px 18px 14px; }
  .modal-body   { padding: 16px 18px; }
  .modal-footer { padding: 14px 18px; }
  .modal-grid-2 { grid-template-columns: 1fr !important; }

  /* ── Buttons full width where appropriate ── */
  .form-submit { font-size: 0.9rem; }

  /* ── Category sibling tabs ── */
  .sib-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap !important; }
  .sib-tab  { white-space: nowrap; padding: 8px 12px !important; font-size: 0.78rem !important; }

  /* ── Partner page OTA comparison table ── */
  div[style*="grid-template-columns:1fr 1fr"][style*="border-bottom"] {
    grid-template-columns: 1fr !important;
  }

  /* ── PDF buttons ── */
  .pdf-btn { font-size: 0.8rem; padding: 8px 14px; }

  /* ── Feat pills wrap ── */
  .feat-pill { font-size: 0.8rem; padding: 6px 12px; }

  /* ── Bank details ── */
  div[style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
  }
}

/* ── Extra small (≤480px) ─────────────────────────────── */
@media (max-width: 480px) {

  .hero h1    { font-size: 1.6rem; }
  .hero-sub   { font-size: 0.88rem; }
  .cat-grid   { grid-template-columns: 1fr 1fr !important; }
  .intl-grid  { grid-template-columns: repeat(2, 1fr) !important; }
  .section-title { font-size: 1.25rem; }

  /* Hero stats — keep 3 cols but smaller */
  .hero-stat-num { font-size: 1.35rem; }

  /* Steps full width */
  .step-card { padding: 18px 14px; }
  .step-num  { width: 40px; height: 40px; font-size: 1.1rem; }

  /* Not sure link full width */
  .not-sure-link-inner { width: 100%; }

  /* Brand boxes */
  .brand-box { width: 100px; height: 52px; }

  /* Diff cells */
  .diff-cell { padding: 12px 14px !important; }
  .diff-num  { font-size: 1.4rem; }

  /* About founder layout */
  .founder-photo { width: 140px !important; height: 140px !important; }

  /* Testimonial cards */
  .reveal-l, .reveal-r { transform: none; }

  /* Page hero */
  .page-hero h1 { font-size: 1.4rem; }

  /* Forms */
  .form-input { font-size: 0.9rem; }
  .ns-input   { font-size: 0.88rem; }
}

/* ── Targeted mobile helpers ─────────────────────────── */
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr !important; }
  .intl-2col         { grid-template-columns: 1fr !important; }
  .day-use-grid      { grid-template-columns: 1fr !important; }
  .card-photo-strip  { height: 80px !important; }

  /* Who We Serve cards: stacked with photo on top */
  .card[style*="overflow:hidden;padding:0"] { margin-bottom: 0; }

  /* Hero CTA buttons */
  .hero-ctas a { min-width: unset; }

  /* Sections with inline 2-col grids: About, Corporate, Partner, Pricing */
  .container div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }
  .container div[style*="grid-template-columns:1fr 1.1fr"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  /* Pricing breakdown table */
  .container div[style*="grid-template-columns:200px"] {
    grid-template-columns: 1fr !important;
  }

  /* Highlight box */
  .highlight-box { padding: 18px 16px; font-size: 0.9rem; }

  /* OTA comparison table on partner page */
  div[style*="grid-template-columns:1fr 1fr"][style*="border-bottom"] {
    grid-template-columns: 1fr !important;
  }

  /* Careers grid */
  div[style*="grid-template-columns:1fr 1fr;gap:40px;align-items:start"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  /* Font size adjustments */
  h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  h2 { font-size: clamp(1.2rem, 4vw, 1.6rem); }
  h3 { font-size: clamp(1rem, 3vw, 1.3rem); }

  /* Nav mobile menu */
  .nav-mobile { padding: 12px 16px; }
  .nav-mobile a { padding: 12px 0; font-size: 1rem; border-bottom: 1px solid var(--divider); }
  .nav-mobile a:last-child { border-bottom: none; }

  /* Floating WA button */
  .wa-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wa-float svg { width: 22px; height: 22px; }

  /* Contact page grid */
  .contact-grid { grid-template-columns: 1fr !important; }

  /* Hide non-essential on mobile */
  .expand-btns { display: none !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .btn { padding: 10px 18px; font-size: 0.88rem; }
  .btn-wa { padding: 11px 18px; }
  .intl-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .brand-boxes-scroll { gap: 6px; }
  .brand-box { width: 90px; height: 48px; }
  .brand-text-fallback { font-size: 0.6rem; padding: 4px; }
}

/* ── HOW WE WORK STRIP ───────────────────────────── */
.hww-strip {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.hww-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
}
.hww-num {
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--ff-head);
  font-size: 1rem; font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hww-step strong {
  display: block;
  font-size: 0.85rem; color: var(--dark);
  font-weight: 700; margin-bottom: 1px;
}
.hww-step p {
  font-size: 0.75rem; color: #666;
  margin: 0; line-height: 1.4;
}
.hww-arrow {
  color: var(--orange); font-size: 1.1rem;
  font-weight: 700; flex-shrink: 0;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .hww-strip {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
  }
  .hww-step { padding: 0; gap: 10px; width: calc(50% - 6px); }
  .hww-arrow { display: none; }
}

/* ══════════════════════════════════════════════════════
   READABILITY & FONT SIZE GLOBAL FIXES
   ══════════════════════════════════════════════════════ */

/* Base text — all body copy should be readable */
body { font-size: 17px; }
p    { font-size: 0.94rem; line-height: 1.75; }

/* Nav links — bigger, easier to read */
.nav-links a { font-size: 0.88rem !important; }

/* Section labels — slightly bigger */
.section-label { font-size: 0.75rem !important; }

/* Section subtitles */
.section-sub { font-size: 0.96rem; }

/* Trust bar items */
.trust-item { font-size: 0.88rem; }

/* Diff grid titles/desc */
.diff-title { font-size: 1rem !important; }
.diff-desc  { font-size: 0.91rem !important; }
.diff-num   { font-size: 2.2rem !important; }

/* Category tile text */
.cat-tile-name  { font-size: 0.84rem !important; }
.cat-tile-count { font-size: 0.75rem !important; }

/* FAQ */
.faq-q { font-size: 0.96rem !important; }
.faq-a { font-size: 0.93rem !important; line-height: 1.75 !important; }

/* Page hero */
.page-hero p { font-size: 1rem !important; }

/* Card text */
.card p { font-size: 0.93rem !important; }

/* Feat pills */
.feat-pill { font-size: 0.88rem !important; }

/* International tiles */
.intl-city { font-size: 1rem !important; font-weight: 700; }
.intl-type { font-size: 0.78rem !important; }

/* How We Work strip */
.hww-step strong { font-size: 0.9rem !important; }
.hww-step p      { font-size: 0.8rem !important; }

/* Footer text */
.footer ul a { font-size: 0.86rem !important; }
.footer h4   { font-size: 0.96rem !important; }
.footer-bottom { font-size: 0.82rem !important; }

/* Form labels */
.form-label { font-size: 0.85rem !important; }
.form-input { font-size: 0.95rem !important; }

/* Benefit/diff rows */
.benefit-title { font-size: 1rem !important; }
.benefit-desc  { font-size: 0.92rem !important; }

/* Step cards */
.step-card h4 { font-size: 1.02rem !important; }
.step-card p  { font-size: 0.92rem !important; }

/* Orange band */
.orange-band p { font-size: 1.05rem !important; }

/* Brand text fallback in logo boxes */
.brand-text-fallback { font-size: 0.72rem !important; }

/* Testimonials */
section[style*="background:#2d2d2d"] p { font-size: 0.97rem !important; line-height: 1.8 !important; }

/* Modal */
.modal-hotel-name { font-size: 1.05rem !important; }

/* Partner page benefit rows */
.benefit-row strong { font-size: 0.97rem !important; }

/* ══════════════════════════════════════════════════════
   FOOTER ALIGNMENT FIXES
   ══════════════════════════════════════════════════════ */

.footer-grid {
  align-items: start !important;
}

.footer-grid > div {
  align-self: start;
}

.footer-brand {
  padding-right: 16px;
}

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

.footer ul li {
  margin-bottom: 5px;
  line-height: 1.4;
}

.footer h4 {
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2a2a2a;
}

.footer-contact p {
  margin-bottom: 4px;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Stats row mobile */
@media (max-width: 768px) {
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] > div {
    border-bottom: 1px solid var(--divider) !important;
  }
  div[style*="grid-template-columns:repeat(4,1fr)"] > div:nth-child(even) {
    border-right: none !important;
  }
}

/* ══════════════════════════════════════════════════════
   HOMEPAGE SEARCH — in global CSS to avoid specificity issues
   ══════════════════════════════════════════════════════ */
.hs-section { padding: 28px 0 0; background: var(--light); }
.hs-wrap {
  position: relative;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--divider);
  border-radius: 50px;
  overflow: visible;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hs-input   { width: 100%; padding: 15px 52px 15px 22px; font-size: 1rem;
              border: 2px solid var(--divider); border-radius: 50px; outline: none;
              font-family: var(--ff-body); color: var(--dark); background: var(--white);
              transition: all 0.25s; box-shadow: 0 4px 24px rgba(0,0,0,0.07); }
.hs-input:focus        { border-color: var(--orange); box-shadow: 0 4px 32px rgba(244,121,32,0.15); }
.hs-input::placeholder { color: #bbb; }
.hs-btn {
  flex-shrink: 0;
  background: var(--orange);
  border: none;
  border-radius: 0 50px 50px 0;
  padding: 11px 22px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: var(--trans);
}
.hs-btn:hover { background: var(--red); }
.hs-btn:hover { background: var(--red); }
.hs-dropdown { position: absolute; top: calc(100% + 8px); left: 0; right: 0;
               background: var(--white); border: 1.5px solid var(--divider);
               border-radius: 12px; box-shadow: 0 12px 40px rgba(0,0,0,0.14);
               z-index: 600; max-height: 380px; overflow-y: auto; display: none; }
.hs-dropdown.open    { display: block !important; }
.hs-result           { padding: 11px 18px; cursor: pointer; transition: background 0.15s;
                       border-bottom: 1px solid var(--divider); display: flex;
                       align-items: center; gap: 12px; }
.hs-result:last-child { border-bottom: none; }
.hs-result:hover     { background: rgba(227,30,36,0.07); }
.hs-result-icon      { width: 34px; height: 34px; background: var(--orange-l);
                       border-radius: 8px; display: flex; align-items: center;
                       justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.hs-result:hover .hs-result-icon { background: var(--red); }
.hs-name  { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.hs-meta  { font-size: 0.76rem; color: var(--mid); margin-top: 2px; }
.hs-cat   { display: inline-block; font-size: 0.65rem; font-weight: 700;
            color: var(--white); background: var(--orange); padding: 1px 7px;
            border-radius: 50px; margin-left: 6px; }
.hs-empty { padding: 18px; text-align: center; color: var(--mid); font-size: 0.88rem; }

/* Not Sure panel */
.not-sure-link       { display: flex; align-items: center; justify-content: center;
                       gap: 8px; margin-top: 14px; cursor: pointer; }
.not-sure-link-inner { display: flex; align-items: center; gap: 10px;
                       background: var(--dark); border: 1.5px solid var(--orange);
                       border-radius: 50px; padding: 9px 20px; transition: var(--trans); }
.not-sure-link-inner:hover { background: #252D4A; transform: translateY(-1px); }
.not-sure-link-badge { background: var(--orange); color: var(--white);
                       font-size: 0.7rem; font-weight: 700; padding: 2px 9px;
                       border-radius: 50px; }
.not-sure-link-text  { font-size: 0.88rem; color: var(--white); font-weight: 600; }
.not-sure-panel      { max-width: 680px; margin: 12px auto 0; background: var(--white);
                       border-radius: 10px; padding: 0;
                       border: 1.5px solid var(--divider);
                       border-top: 3px solid var(--orange); position: relative;
                       max-height: 0; overflow: hidden;
                       transition: max-height 0.45s cubic-bezier(0.4,0,0.2,1),
                                   padding 0.3s ease;
                       box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.not-sure-panel.open { max-height: 600px !important; padding: 24px 28px !important; }
.ns-label { font-size: 0.82rem; color: var(--mid); font-weight: 600;
            display: block; margin-bottom: 5px; }
.ns-input { width: 100%; padding: 10px 14px;
            border: 1.5px solid var(--divider); border-radius: var(--radius);
            font-family: var(--ff-body); font-size: 0.92rem; color: var(--dark);
            background: var(--light); outline: none; transition: var(--trans); }
.ns-input:focus          { border-color: var(--orange); background: var(--white);
                           box-shadow: 0 0 0 3px rgba(244,121,32,0.1); }
.ns-input::placeholder   { color: #bbb; }
select.ns-input option   { background: var(--white); }
.ns-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 16px; }
.ns-full      { grid-column: 1 / -1; }
@media (max-width: 768px) {
  .ns-form-grid { grid-template-columns: 1fr; }
  .not-sure-link-inner { flex-direction: column; text-align: center; padding: 12px 16px; }
}

/* ── BACK TO TOP BUTTON ──────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 40px; height: 40px;
  background: var(--dark);
  color: var(--white);
  border: 1px solid #333;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 900;
  text-decoration: none;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-3px);
}

/* ── CITIES DROPDOWN ─────────────────────────────── */
.dropdown-cities a {
  display: flex !important;
  align-items: center;
  gap: 10px;
}
.city-icon {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

/* ── TESTIMONIAL SLIDER — tighter ───────────────── */
.tslide { padding: 0 8px; }
section[style*="background:#2d2d2d"] .container { max-width: 860px; }
.tarrow {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans);
  flex-shrink: 0;
}
.tarrow:hover { background: var(--orange); border-color: var(--orange); }
.tdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer; padding: 0;
  transition: var(--trans);
}
.tdot.active { background: var(--orange); transform: scale(1.3); }

/* ── TRUST BAR CENTER ───────────────────────────── */
.trust-bar { justify-content: center; }

/* ── DAY USE full-width responsive ─────────────── */
@media (max-width: 768px) {
  div[style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  div[style*="grid-template-columns:1fr auto"] > div:last-child {
    text-align: left;
  }
}

/* ════════════════════════════════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVENESS — 768px & below
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* ── All inline 2-col grids → single column ── */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Fixed-width left-column layouts → single column ── */
  div[style*="grid-template-columns:360px"],
  div[style*="grid-template-columns:340px"],
  div[style*="grid-template-columns:260px"],
  div[style*="grid-template-columns:240px"],
  div[style*="grid-template-columns:220px"],
  div[style*="grid-template-columns:1.2fr 1fr"],
  div[style*="grid-template-columns:1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── 3-col grids → 1-col or 2-col ── */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  div[style*="grid-template-columns: repeat(3, 1fr)"],
  div[style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* ── 6-col city grid → 2-col ── */
  div[style*="grid-template-columns:repeat(6,1fr)"],
  .city-grid-6 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* ── auto/1fr sidebars → stack ── */
  div[style*="grid-template-columns:1fr auto"],
  div[style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* ── max-width overrides for content containers ── */
  div[style*="max-width:680px"],
  div[style*="max-width:700px"],
  div[style*="max-width:740px"],
  div[style*="max-width:800px"],
  div[style*="max-width:560px"],
  div[style*="max-width:540px"],
  div[style*="max-width:520px"],
  div[style*="max-width:500px"],
  div[style*="max-width:480px"],
  div[style*="max-width:440px"],
  div[style*="max-width:400px"] {
    max-width: 100% !important;
  }

  /* ── Gaps reduce on mobile ── */
  div[style*="gap:48px"],
  div[style*="gap:52px"],
  div[style*="gap:60px"],
  div[style*="gap:64px"] {
    gap: 24px !important;
  }

  /* ── Hero text ── */
  .page-hero-title { font-size: 1.3rem !important; }
  .page-hero-sub   { font-size: 0.88rem !important; }

  /* ── Staycation hero ── */
  .stay-hero { padding: 36px 0 28px !important; }

  /* ── Urgency bar wraps cleanly ── */
  .urgency-bar {
    border-radius: 12px !important;
    padding: 10px 14px !important;
    font-size: 0.76rem !important;
    text-align: center;
  }

  /* ── WA nudge on small screens ── */
  .wa-nudge { width: calc(100vw - 24px); right: 12px; bottom: 80px; }

  /* ── Corp form grid ── */
  div[style*="grid-template-columns:1fr 1fr"][style*="gap:10px"] {
    grid-template-columns: 1fr !important;
  }

  /* ── Coverage stats ── */
  .coverage-stats-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Founder grid ── */
  .founder-grid-wrap { grid-template-columns: 1fr !important; text-align: center; }
  .founder-photo-col { display: flex; flex-direction: column; align-items: center; }

  /* ── Story/identity splits → stack ── */
  .story-split, .pune-split, .staycation-split { grid-template-columns: 1fr !important; }
  .story-img, .pune-img, .staycation-img { min-height: 220px !important; }

  /* ── Serve panels → stack ── */
  .serve-panel, .serve-panel.reverse {
    grid-template-columns: 1fr !important;
    direction: ltr !important;
  }
  .serve-panel-img { min-height: 200px !important; }
  .serve-panel-text { padding: 24px 20px !important; }

  /* ── Process steps → 2 col ── */
  .corp-steps-grid   { grid-template-columns: 1fr 1fr !important; }
  .process-photo-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── Partner benefits → 2 col ── */
  .partner-benefit-grid { grid-template-columns: 1fr 1fr !important; }
  .corp-feat-grid       { grid-template-columns: 1fr 1fr !important; }

  /* ── Pricing step grid ── */
  .pricing-steps-grid { grid-template-columns: 1fr !important; }

  /* ── Diff feat grid ── */
  .diff-feat-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── Values photo row ── */
  .values-photo-row { grid-template-columns: 1fr !important; }

  /* ── Identity mosaic ── */
  .identity-mosaic { grid-template-rows: 140px 140px !important; }

  /* ── Contact methods ── */
  .contact-methods-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── OTA table scroll ── */
  .ota-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ota-table { min-width: 540px; }
  .ota-table th, .ota-table td { padding: 10px 12px !important; font-size: 0.8rem !important; }

  /* ── Intl dest grid ── */
  .intl-dest-grid { grid-template-columns: repeat(3, 1fr) !important; }

  /* ── FAQ layout → single col ── */
  div[style*="grid-template-columns:340px 1fr"] { grid-template-columns: 1fr !important; }

  /* ── Corp enquiry form → single col ── */
  .corp-form-card { padding: 20px 16px !important; }

  /* ── Buttons full width on very small ── */
  .hero .btn, .page-hero .btn { padding: 11px 18px !important; font-size: 0.88rem !important; }
  .svc-uniform-grid { grid-template-columns: 1fr 1fr !important; }

  /* ── State grid ── */
  .state-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* ── Image mosaics → stack ── */
  .company-visual { grid-template-columns: 1fr !important; height: 160px !important; }
}

/* ════════════════════════════════════════════════════════════════
   EXTRA SMALL — 420px & below
   ════════════════════════════════════════════════════════════════ */
@media (max-width: 420px) {

  /* Everything 2-col → 1-col at tiny screens */
  .corp-steps-grid, .process-photo-grid, .partner-benefit-grid,
  .corp-feat-grid, .diff-feat-grid, .contact-methods-grid,
  .svc-uniform-grid, .fh-grid {
    grid-template-columns: 1fr !important;
  }

  .city-grid-6 { grid-template-columns: repeat(2, 1fr) !important; }
  .cat-photo-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Tighten padding */
  .container { padding: 0 12px; }
  .section { padding: 28px 0; }
  .corp-form-card { padding: 16px 14px !important; }

  /* Urgency bar single line */
  .urgency-bar { font-size: 0.72rem !important; }

  /* OTA table horizontal scroll */
  .ota-table { min-width: 500px; font-size: 0.76rem !important; }

  /* Intl grid 2 col */
  .intl-dest-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* State grid 1 col */
  .state-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ── Mobile stack utility ── */
@media (max-width: 768px) {
  .mobile-stack-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  /* Reverse-direction panels fix */
  .serve-panel.reverse { direction: ltr !important; }
  .serve-panel.reverse > * { direction: ltr !important; }

  /* Category page filter bar — horizontal scroll */
  .sib-tabs { overflow-x: auto; -webkit-overflow-scrolling: touch; flex-wrap: nowrap !important; padding-bottom: 4px; }
  .sib-tab { white-space: nowrap; flex-shrink: 0; }

  /* Hotel listing on category pages — full width */
  .city-group { margin-bottom: 12px; }
  .hotel-cards-grid { grid-template-columns: 1fr !important; }

  /* Category page stats row → 2 col */
  .cat-stats-row { grid-template-columns: 1fr 1fr !important; flex-wrap: wrap; }

  /* Search bar full width */
  .hs-wrap { flex-direction: column; }
  .hs-input { width: 100% !important; border-radius: var(--radius) !important; }
  .hs-btn   { width: 100% !important; border-radius: var(--radius) !important; margin-top: 6px; }

  /* Trust bar pills wrap */
  .trust-pills { flex-wrap: wrap; gap: 8px; justify-content: center; }

  /* Testimonial slider — full width */
  #tslider .tcard { min-width: 280px !important; }

  /* Brand marquee — speed up on mobile */
  .marquee-inner { animation-duration: 30s !important; }

  /* Popular searches → 2 col */
  div[style*="grid-template-columns:repeat(3,1fr)"][style*="gap:8px"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Intl section Beyond Bharat — remove fixed 360px col */
  div[style*="grid-template-columns:360px 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Staycation split → stack */
  .stay-cards-grid { grid-template-columns: 1fr !important; }
  .occ-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .dest-photo-grid { grid-template-columns: 1fr 1fr !important; }

  /* City hotel pages filter */
  .filter-bar { flex-direction: column !important; gap: 8px !important; }
  .filter-bar input, .filter-bar select { width: 100% !important; }
}

@media (max-width: 600px) {
  /* ── Homepage search — stack input + button ── */
  .hs-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
  }
  .hs-input {
    padding: 13px 16px !important;
    border-radius: var(--radius) !important;
    width: 100%;
    box-sizing: border-box;
    font-size: 1rem;
  }
  .hs-btn {
    position: static !important;
    transform: none !important;
    width: 100%;
    padding: 13px 20px !important;
    border-radius: var(--radius) !important;
    font-size: 1rem !important;
    text-align: center;
  }
  .hs-dropdown {
    position: absolute;
    top: auto;
    left: 0;
    right: 0;
  }

  /* ── Category page sticky controls — stack on mobile ── */
  .sticky-controls-inner {
    flex-wrap: wrap !important;
    gap: 8px !important;
  }
  .search-box {
    flex: 1 1 100% !important;
    width: 100% !important;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1.5px solid var(--divider);
    border-radius: var(--radius);
    padding: 0 10px;
  }
  .search-box input {
    flex: 1;
    width: 100% !important;
    border: none !important;
    outline: none !important;
    background: transparent;
    padding: 10px 6px;
    font-size: 0.92rem;
  }
  .cat-chip { flex-shrink: 0; }
  .bulk-btns { display: none !important; }
  #resultCount { font-size: 0.76rem; }
}

@media (max-width: 380px) {
  .hs-input  { font-size: 0.92rem; padding: 11px 14px !important; }
  .hs-btn    { padding: 11px 14px !important; font-size: 0.92rem !important; }
}
