/* Hotels page — modern travel feel, mobile-first, app-like behavior.
   Loads on top of css/style.css. */

:root {
  --htl-blue:   #0B3AD6;
  --htl-blue-d: #06248a;
  --htl-orange: #ff6b35;
  --htl-yellow: #fbbf24;
}

.hotels-body { padding-bottom: 0; }

/* On mobile, leave room for the sticky bottom nav so footer isn't covered */
@media (max-width: 880px) {
  .hotels-body { padding-bottom: calc(86px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Navbar compact-on-scroll ────────────────────────────────── */
.navbar { transition: box-shadow 0.2s, background 0.2s, padding 0.2s; }
.navbar.scrolled {
  box-shadow: 0 6px 24px -10px rgba(15, 23, 42, 0.25);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hotel-hero {
  background: linear-gradient(135deg, #0B3AD6 0%, #1d4ed8 35%, #4338ca 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 70px 20px 110px;
}
.htl-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.htl-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: blobFloat 22s ease-in-out infinite;
}
.htl-blob-1 { top: -80px; right: -60px; width: 380px; height: 380px; background: #fbbf24; animation-delay: 0s; }
.htl-blob-2 { bottom: -100px; left: -100px; width: 460px; height: 460px; background: #06248a; opacity: 0.6; animation-delay: -8s; }
.htl-blob-3 { top: 30%; left: 40%; width: 280px; height: 280px; background: #ff6b35; opacity: 0.3; animation-delay: -14s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.htl-hero-inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}

.htl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.htl-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--htl-yellow);
  box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}

.htl-h1 {
  font-size: clamp(28px, 5.2vw, 52px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.5px;
  margin: 0 0 14px;
}
.htl-h1 .accent-y { color: var(--htl-yellow); }
.htl-h1-line2 { display: inline-block; }
/* Rotating word — fixed so spans never overflow the headline */
.htl-rotate {
  display: inline-block;
  position: relative;
  vertical-align: top;
  min-width: 6.5ch;
  height: 1.12em;
  line-height: 1.12;
  text-align: left;
  color: var(--htl-yellow);
}
.htl-rotate > span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s, transform 0.45s;
  white-space: nowrap;
}
.htl-rotate > span.on { opacity: 1; transform: translateY(0); }

.htl-hero-sub {
  font-size: clamp(13px, 1.8vw, 16px);
  color: rgba(255,255,255,0.85);
  max-width: 620px;
  margin: 0 auto 22px;
  line-height: 1.55;
}

.htl-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ── Search widget wrapper ──────────────────────────────────── */
.hotel-search-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 14px;
  margin: 22px auto 18px;
  box-shadow: 0 20px 60px -16px rgba(6, 36, 138, 0.5);
  min-height: 80px;
  max-width: 920px;
  position: relative;
  z-index: 3;
}
.hotel-search-wrap .tv-search-form { min-height: 80px; }
.hotel-search-wrap .tv-search-form:empty::before {
  content: 'Mehmonxona qidiruv yuklanmoqda...';
  display: block;
  padding: 28px 14px;
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

/* Trust pills under search */
.hotel-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}
.hotel-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 13px;
  border-radius: 999px;
  white-space: nowrap;
}
.hotel-trust-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Animated counters ──────────────────────────────────────── */
.htl-counters {
  background: #fff;
  margin: -50px auto 0;
  max-width: 1180px;
  border-radius: 20px;
  padding: 22px 24px;
  position: relative;
  z-index: 3;
  box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.25);
}
.htl-counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.htl-counter { text-align: center; }
.htl-counter-num {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 900;
  color: var(--htl-blue);
  letter-spacing: -0.5px;
  line-height: 1;
}
.htl-counter-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-top: 6px;
}

/* ── Popular city tiles (bento) ──────────────────────────────── */
.htl-cities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.htl-city {
  position: relative;
  display: block;
  padding: 22px 18px;
  border-radius: 16px;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  min-height: 170px;
  isolation: isolate;
  transition: transform 0.3s, box-shadow 0.3s;
}
.htl-city::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform 0.5s;
}
.htl-city::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
}
.htl-city:hover { transform: translateY(-4px); box-shadow: 0 18px 30px -14px rgba(15,23,42,0.5); }
.htl-city:hover::before { transform: scale(1.08); }

.htl-city-1::before { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #3d2473 100%); }
.htl-city-2::before { background: linear-gradient(135deg, #f6d365 0%, #fda085 100%); }
.htl-city-3::before { background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #14b8a6 100%); }
.htl-city-4::before { background: linear-gradient(135deg, #f43f5e 0%, #ec4899 50%, #d946ef 100%); }
.htl-city-5::before { background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 50%, #6366f1 100%); }
.htl-city-6::before { background: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%); }

.htl-city-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.22);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 3px 9px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.5px;
}
.htl-city-name {
  font-size: 22px;
  font-weight: 800;
  margin-top: 60px;
}
.htl-city-sub {
  font-size: 12px;
  opacity: 0.88;
  margin-top: 4px;
}
.htl-city-price {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 10px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 14px;
}
.htl-city-price em { font-style: normal; font-size: 10px; opacity: 0.85; font-weight: 700; }

/* ── Section tint variant ───────────────────────────────────── */
.htl-section-tint { background: #f8fafc; }

/* Widget wrappers — placeholders while Tourvisor init loads */
.hotel-widget-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px;
  min-height: 120px;
  margin-top: 18px;
  box-shadow: 0 4px 14px -8px rgba(15, 23, 42, 0.08);
}
.hotel-widget-wrap > div[class^="tv-"]:empty::before {
  content: 'Yuklanmoqda...';
  display: block;
  padding: 40px;
  text-align: center;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 600;
}

/* ── "Why our prices are cheaper" — matches user's screenshot ── */
.htl-why {
  background: #fff;
  padding: 70px 20px;
}
.htl-why-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: center;
}

.htl-why-left { min-width: 0; }
.htl-why-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--htl-orange);
  color: #fff;
  padding: 6px 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.htl-why-left h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin: 0 0 16px;
  letter-spacing: -0.4px;
}
.htl-why-blue { color: var(--htl-blue); }
.htl-why-left p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 22px;
}
.htl-why-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--htl-blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 24px -8px rgba(11, 58, 214, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.htl-why-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(11, 58, 214, 0.5); }

.htl-why-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.htl-why-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  transition: transform 0.2s, border-color 0.2s, background 0.2s;
}
.htl-why-card:hover {
  transform: translateX(4px);
  border-color: #cbd5e1;
  background: #fff;
}
.htl-why-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.htl-why-icon svg { width: 20px; height: 20px; }
.htl-icon-blue   { background: var(--htl-blue); }
.htl-icon-orange { background: var(--htl-orange); }

.htl-why-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}
.htl-why-desc {
  font-size: 13px;
  color: #64748b;
  margin-top: 3px;
  line-height: 1.5;
}

/* ── FAQ ─────────────────────────────────────────────────────── */
.hotel-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.hotel-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.hotel-faq-item:hover { border-color: #cbd5e1; box-shadow: 0 4px 12px -6px rgba(15,23,42,0.08); }
.hotel-faq-q {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hotel-faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: #94a3b8;
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 12px;
}
.hotel-faq-item.open .hotel-faq-q::after { content: '−'; }
.hotel-faq-a {
  font-size: 13px;
  color: #64748b;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.hotel-faq-item.open .hotel-faq-a { max-height: 500px; margin-top: 10px; }

/* ── Reveal-on-scroll ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .htl-blob, .htl-eyebrow-dot { animation: none; }
}

/* ── Sticky mobile bottom nav (app-like, floating pill) ──────── */
.htl-mobile-nav {
  display: none;
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 22px;
  box-shadow: 0 18px 40px -16px rgba(15, 23, 42, 0.35),
              0 4px 10px -4px rgba(15, 23, 42, 0.12);
  z-index: 100;
  padding: 6px 6px;
  justify-content: space-around;
  align-items: stretch;
}
@media (max-width: 880px) {
  .htl-mobile-nav { display: flex; }
}
.htl-mnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px;
  text-decoration: none;
  color: #64748b;
  font-size: 10px;
  font-weight: 700;
  border-radius: 16px;
  position: relative;
  transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  min-height: 50px;
  background: transparent;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}
.htl-mnav-item svg {
  width: 22px;
  height: 22px;
  transition: transform 0.25s cubic-bezier(.34,1.56,.64,1);
}
.htl-mnav-item.active {
  color: #fff;
  background: linear-gradient(135deg, #0B3AD6 0%, #2563eb 100%);
  box-shadow: 0 8px 18px -6px rgba(11, 58, 214, 0.5);
}
.htl-mnav-item.active svg { transform: scale(1.12) translateY(-1px); }
.htl-mnav-item:not(.active):active {
  transform: scale(0.94);
  background: rgba(11, 58, 214, 0.06);
}
.htl-mnav-item:focus-visible {
  outline: 2px solid var(--htl-blue);
  outline-offset: 2px;
}

/* ── Perks grid + step strip (shared by tours / visa) ────────── */
.tour-perks {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 60px 20px;
}
.tour-perks-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.tour-perks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.tour-perk {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 18px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.tour-perk:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 14px 28px -14px rgba(15, 23, 42, 0.18);
}
.tour-perk-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.tour-perk-icon svg { width: 22px; height: 22px; flex-shrink: 0; }
.tour-perk-icon.warm    { background: linear-gradient(135deg, #f97316, #ea580c); }
.tour-perk-icon.cool    { background: linear-gradient(135deg, #0B3AD6, #2563eb); }
.tour-perk-icon.green   { background: linear-gradient(135deg, #10b981, #059669); }
.tour-perk-icon.violet  { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.tour-perk-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.2px;
  margin-bottom: 4px;
}
.tour-perk-desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

.tour-steps {
  padding: 60px 20px;
}
.tour-steps-inner { max-width: 1180px; margin: 0 auto; }
.tour-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.tour-step {
  position: relative;
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 18px 18px;
  overflow: hidden;
}
.tour-step-num {
  position: absolute;
  top: 8px;
  right: 14px;
  font-size: 60px;
  font-weight: 900;
  color: #f1f5f9;
  line-height: 1;
  letter-spacing: -2px;
}
.tour-step-title {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 6px;
  position: relative;
}
.tour-step-desc {
  font-size: 12.5px;
  color: #64748b;
  line-height: 1.55;
  position: relative;
}
@media (max-width: 880px) {
  .tour-steps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .tour-steps-grid { grid-template-columns: 1fr; }
}

/* ── Modern mobile sidebar drawer (shared across all pages) ──── */
.sm-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 998;
}
.sm-backdrop.open { opacity: 1; pointer-events: auto; }

.sm-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 88vw);
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.34, 1.18, .64, 1);
  z-index: 999;
  box-shadow: -20px 0 60px -20px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.sm-drawer.open { transform: translateX(0); }

.sm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px 14px;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.sm-header .logo {
  font-weight: 900;
  font-size: 22px;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.sm-header .logo-ob    { color: #0f172a; }
.sm-header .logo-bilet { color: #0B3AD6; }
.sm-header .logo-tag   { color: #f97316; font-size: 12px; vertical-align: top; margin-left: 1px; }
.sm-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #f1f5f9;
  color: #475569;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.sm-close:active { background: #e2e8f0; }

.sm-nav {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.sm-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 700;
  font-size: 15px;
  transition: background 0.15s, color 0.15s, transform 0.1s;
}
.sm-item-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.sm-item-icon svg { width: 18px; height: 18px; flex-shrink: 0; }
.sm-item-label { flex: 1; min-width: 0; }
.sm-item-arrow { color: #cbd5e1; flex-shrink: 0; }
.sm-item-arrow svg { width: 16px; height: 16px; }
.sm-item:hover,
.sm-item:active {
  background: #f8fafc;
  transform: translateX(2px);
}
.sm-item.active {
  background: linear-gradient(135deg, rgba(11, 58, 214, 0.08), rgba(11, 58, 214, 0.04));
  color: #0B3AD6;
}
.sm-item.active .sm-item-icon {
  background: linear-gradient(135deg, #0B3AD6, #2563eb);
  color: #fff;
}
.sm-item.hot .sm-item-icon { background: linear-gradient(135deg, #ef4444, #b91c1c); color: #fff; }

.sm-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 10px 14px;
}

.sm-quick {
  padding: 16px 18px calc(20px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #f8faff, #ffffff);
  border-top: 1px solid #f1f5f9;
}
.sm-quick-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.sm-quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sm-quick-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sm-quick-btn.telegram {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  color: #fff;
  box-shadow: 0 8px 16px -8px rgba(2, 132, 199, 0.5);
}
.sm-quick-btn.call {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  box-shadow: 0 8px 16px -8px rgba(16, 185, 129, 0.5);
}
.sm-quick-btn:hover { transform: translateY(-2px); }
.sm-quick-btn svg { width: 16px; height: 16px; }

/* Hide drawer on desktop, show on mobile */
@media (min-width: 881px) {
  .sm-drawer, .sm-backdrop { display: none !important; }
}

/* ── Slide-up contact sheet (Aloqa) ──────────────────────────── */
.htl-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
}
.htl-sheet-backdrop.open { opacity: 1; pointer-events: auto; }

.htl-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -20px 50px -10px rgba(15, 23, 42, 0.35);
  z-index: 201;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(.34,1.2,.64,1);
  padding: 0 0 calc(20px + env(safe-area-inset-bottom, 0px));
  max-height: 88vh;
  overflow-y: auto;
}
.htl-sheet.open { transform: translateY(0); }
.htl-sheet-grip {
  width: 42px;
  height: 4px;
  background: #cbd5e1;
  border-radius: 999px;
  margin: 10px auto 8px;
}
.htl-sheet-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 22px 12px;
}
.htl-sheet-title {
  font-size: 19px;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.3px;
}
.htl-sheet-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #f1f5f9;
  color: #475569;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.htl-sheet-close:active { background: #e2e8f0; }
.htl-sheet-body { padding: 4px 22px 6px; }
.htl-sheet-intro {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 16px;
  line-height: 1.55;
}
.htl-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  text-decoration: none;
  color: #0f172a;
  margin-bottom: 10px;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.htl-contact-row:active { transform: scale(0.98); background: #f8fafc; }
.htl-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.htl-contact-icon svg { width: 22px; height: 22px; }
.htl-contact-icon.blue { background: linear-gradient(135deg, #0B3AD6, #2563eb); }
.htl-contact-icon.green { background: linear-gradient(135deg, #10b981, #059669); }
.htl-contact-icon.orange { background: linear-gradient(135deg, #f97316, #ea580c); }
.htl-contact-icon.pink { background: linear-gradient(135deg, #ec4899, #be185d); }
.htl-contact-icon.violet { background: linear-gradient(135deg, #7c3aed, #5b21b6); }
.htl-contact-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.htl-contact-label {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.htl-contact-value {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}
.htl-sheet-foot {
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #f8faff, #eef2ff);
  border-radius: 14px;
  text-align: center;
}
.htl-sheet-foot-title { font-weight: 800; color: #0f172a; font-size: 13px; }
.htl-sheet-foot-sub { font-size: 12px; color: #64748b; margin-top: 3px; }

/* ── Mobile refinements ──────────────────────────────────────── */
@media (max-width: 880px) {
  .hotel-hero { padding: 50px 16px 100px; }
  .htl-h1 { letter-spacing: -0.3px; }
  .htl-counters {
    margin: -40px 16px 0;
    padding: 18px 14px;
    border-radius: 18px;
  }
  .htl-counters-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; }
  .htl-why { padding: 50px 16px; }
  .htl-why-inner { grid-template-columns: 1fr; gap: 32px; }
  .htl-cities { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .htl-city { min-height: 140px; padding: 16px 14px; }
  .htl-city-name { font-size: 18px; margin-top: 44px; }
  .htl-city-tag { font-size: 10px; padding: 2px 7px; }
  .hp-section { padding: 40px 16px; }
  .hotel-trust-pills { gap: 6px; }
  .hotel-trust-pill { font-size: 11px; padding: 6px 10px; }
}
@media (max-width: 480px) {
  .htl-counters { margin: -30px 12px 0; padding: 14px 10px; }
  .htl-cities { grid-template-columns: 1fr; }
  .htl-city { min-height: 130px; }
  .hotel-search-wrap { padding: 10px; border-radius: 14px; }
  .htl-h1 { font-size: 28px; }
  .htl-pills { gap: 6px; }
  .hp-pill { padding: 8px 12px; font-size: 12px; }
}

/* Larger touch targets on touch devices */
@media (hover: none) and (pointer: coarse) {
  .hp-pill, .htl-mnav-item, .hotel-faq-item, .htl-why-cta {
    min-height: 44px;
  }
}
