:root {
  --primary: #1f6eab;
  --primary-soft: #2ea67e;
  --secondary: #2ea67e;
  --primary-pale: #fdf0f1;
  --mint: #6ea53f;

  --mint-pale: #edfaf4;
  --mint-ink: #0d4a33;
  --white: #ffffff;
  --cream: #fafaf8;
  --ink: #141210;
  --black: #313131;
  --ink-mid: #3d3530;
  --ink-soft: #5a5a5a;
  --ink-faint: #b5aea8;
  --line: #e8e3de;
  --line-soft: #f0ece8;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
input,
select {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  width: 100%;
}

/* ======= URGENCY BAR ======= */
.urgency {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}
.urgency::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: ushimmer 3.5s infinite linear;
}
@keyframes ushimmer {
  to {
    left: 150%;
  }
}
.urgency-code {
  display: inline-block;
  background: rgba(125, 217, 184, 0.25);
  border: 1px dashed var(--mint);
  padding: 1px 10px;
  border-radius: 4px;
  margin: 0 5px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  color: var(--mint);
  font-weight: 600;
}
.urgency strong {
  color: var(--mint);
}
#ctimer {
  font-weight: 700;
  color: #ffd6a5;
}

/* ======= NAV ======= */
.nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
}
.nav {
  max-width: 1340px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 32px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.logo img {
  height: 50px;
}
.brand-v {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--primary), var(--primary));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  box-shadow: 0 6px 18px -6px rgba(200, 48, 58, 0.5);
}
.brand span {
  color: var(--primary);
}
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-mid);
  transition: color 0.2s;
}
.nav-link:hover {
  color: var(--primary);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff;
  padding: 11px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px -4px rgba(200, 48, 58, 0.45);
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}
.nav-cta .pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 1.8s ease-in-out infinite;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--primary-pale);
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.nav-toggle:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.nav-toggle:hover span {
  background: #fff;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.25s ease;
  transform-origin: center;
}
.nav-toggle.open {
  background: var(--primary);
  border-color: var(--primary);
}
.nav-toggle.open span {
  background: #fff;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
body.menu-open {
  overflow: hidden;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

/* ======= HERO ======= */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 92%), rgba(0, 0, 0, 40%)),
    url("../images/hero-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
/* Layeprimary bg */

/* primary glow orb */
.hero-orb-r {
  position: absolute;
  width: 550px;
  height: 550px;
  top: -150px;
  left: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 48, 58, 0.4), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-g {
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 38%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 217, 184, 0.28),
    transparent 65%
  );
  filter: blur(24px);
  pointer-events: none;
  animation: orb-float 12s ease-in-out infinite reverse;
}
@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(20px, -20px);
  }
}

.hero-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 64px 32px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy {
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 217, 184, 0.15);
  border: 1px solid rgba(125, 217, 184, 0.35);
  color: var(--mint);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 1.8s infinite;
}
h1.hero-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 60px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 18px;
}
h1.hero-title strong {
  font-weight: 600;
}
h1.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: transparent;
  background: linear-gradient(90deg, var(--primary-soft), #ff9b6e);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-call-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 15px 22px;
  border-radius: 10px;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
  /* margin-bottom: 36px; */
}
.hero-call-cta:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--mint);
  transform: translateY(-2px);
}
.lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.877);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.hero-call-cta .num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-call-cta .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  /* background: linear-gradient(135deg, var(--secondary), var(--mint)); */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mint-ink);
  flex-shrink: 0;
}

.hero-call-cta img {
  height: 25px;
  filter: brightness(0) invert(1);
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.hero-trust-item svg {
  color: var(--mint);
}

/* ======= SEARCH CARD ======= */
.search-card {
  background: var(--white);
  border-radius: 18px;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.sc-head {
  background: linear-gradient(135deg, var(--primary), var(--primary));
  color: #fff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 0px;
  margin-bottom: 0px;
  color: #fff;
}
.sc-head span {
  font-size: 12px;
  opacity: 0.75;
}
.sc-body {
  padding: 20px;
}
.sc-tabs {
  display: flex;
  gap: 0;
  background: var(--cream);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 18px;
}
.sc-tab {
  flex: 1;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  text-align: center;
  transition: all 0.2s;
  border: none;
  background: none;
  cursor: pointer;
}
.sc-tab.active {
  background: var(--ink);
  color: #fff;
}
.sc-field {
  margin-bottom: 12px;
}
.sc-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
  margin-bottom: 5px;
}
.sc-field .val {
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.2s;
  cursor: pointer;
}
.sc-field .val:hover,
.sc-field .val:focus-within {
  border-color: var(--primary);
}
.sc-field .val .main {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.sc-field .val .sub {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 1px;
}
.sc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.swap-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mint-pale);
  border: 1.5px solid var(--mint);
  color: var(--secondary);
  align-self: flex-end;
  margin-bottom: 12px;
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}
.swap-btn:hover {
  background: var(--mint);
  color: var(--mint-ink);
  transform: rotate(180deg);
}
.from-to-row {
  display: grid;
  grid-template-columns: 1fr 32px 1fr;
  gap: 6px;
  align-items: flex-end;
  margin-bottom: 12px;
}
.sc-book {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary));
  color: #fff;
  border-radius: 10px;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 6px 24px -8px rgba(200, 48, 58, 0.6);
  margin-top: 4px;
}
.sc-book:hover {
  background: linear-gradient(135deg, var(--primary), #620e18);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px -8px rgba(200, 48, 58, 0.7);
}
.sc-coupon {
  margin-top: 12px;
  background: var(--mint-pale);
  border: 1px dashed var(--secondary);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sc-coupon .ctag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--secondary);
}
.sc-coupon .cval {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.06em;
}

/* ======= PROMO STRIP ======= */
.promo-strip {
  background: linear-gradient(
    135deg,
    rgba(125, 217, 184, 0.08) 0%,
    rgba(31, 110, 171, 0.05) 100%
  );
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 10px 0;
  position: relative;
}
.promo-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(125, 217, 184, 0.3),
    transparent
  );
}
.marquee-label {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 6px 0;
  animation: fade-in 0.8s ease-out;
}
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    black 5%,
    black 95%,
    transparent 100%
  );
  padding: 12px 0;
  position: relative;
}
.marquee-t {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  animation: slide-left 40s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-t {
  animation-play-state: paused;
}
.mq-item {
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-mid);
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(232, 227, 222, 0.6);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  flex-shrink: 0;
}
.mq-item:hover {
  transform: translateY(-4px) scale(1.05);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(31, 110, 171, 0.12);
  border-color: rgba(125, 217, 184, 0.4);
}
.mq-item .tag {
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(31, 110, 171, 0.2);
}
.mq-item .tag.hot-tag {
  background: linear-gradient(135deg, #c8303a 0%, #a82030 100%);
  box-shadow: 0 2px 12px rgba(200, 48, 58, 0.25);
}
.mq-item .tag.deal-tag {
  background: linear-gradient(135deg, #7dd9b8 0%, #5ac99d 100%);
  box-shadow: 0 2px 12px rgba(125, 217, 184, 0.25);
}
.mq-item .tag.sale-tag {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 2px 12px rgba(245, 158, 11, 0.25);
}
.mq-route {
  font-weight: 700;
  color: var(--ink);
}
.mq-divider {
  color: var(--ink-faint);
  margin: 0 8px;
}
.mq-item .price {
  color: var(--primary);
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}
@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ======= BODY CONTENT ======= */
.content-wrap {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ======= OFFER CARDS ======= */
.offers-section {
  padding: 64px 0 48px;
}
.offers-head {
  margin-bottom: 32px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--secondary);
  margin-bottom: 12px;
}
.section-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--primary);
}
.offers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.offer-card {
  border-radius: 16px;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s;
}
.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px -16px rgba(0, 0, 0, 0.18);
}
.offer-card.primary {
  background: linear-gradient(140deg, var(--primary), var(--primary));
  color: #fff;
}
.offer-card.mint {
  background: linear-gradient(140deg, var(--mint), var(--secondary));
  color: var(--mint-ink);
}
.offer-card.cream {
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--ink);
}
.offer-card.ink {
  background: var(--ink);
  color: #fff;
}
.oc-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(30px);
  opacity: 0.5;
}
.offer-card.primary .oc-orb {
  background: radial-gradient(circle, #ff9b6e, transparent 60%);
  top: -60px;
  right: -60px;
}
.offer-card.mint .oc-orb {
  background: radial-gradient(
    circle,
    rgba(255, 255, 200, 0.6),
    transparent 60%
  );
  bottom: -60px;
  left: -40px;
}
.offer-card.ink .oc-orb {
  background: radial-gradient(circle, rgba(200, 48, 58, 0.6), transparent 60%);
  top: -40px;
  right: -40px;
}
.oc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 5px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  width: fit-content;
}
.offer-card.primary .oc-tag,
.offer-card.ink .oc-tag {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
}
.offer-card.mint .oc-tag {
  background: rgba(255, 255, 255, 0.35);
  color: var(--mint-ink);
}
.offer-card.cream .oc-tag {
  background: var(--primary-pale);
  color: var(--primary);
}
.oc-amt {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 46px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.oc-amt em {
  font-style: italic;
  font-weight: 300;
  opacity: 0.85;
}
.oc-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}
.oc-desc {
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.5;
  margin-bottom: 16px;
}
.oc-code-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 255, 255, 0.22);
}
.offer-card.cream .oc-code-row {
  border-color: var(--line);
}
.offer-card.mint .oc-code-row {
  border-color: rgba(13, 74, 51, 0.2);
}
.oc-code-lbl {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.65;
}
.oc-code {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.18);
}
.offer-card.cream .oc-code {
  background: var(--primary-pale);
  color: var(--primary);
  border: 1px dashed var(--primary);
}
.offer-card.mint .oc-code {
  background: rgba(255, 255, 255, 0.35);
  color: var(--mint-ink);
}

/* ======= SEO SECTION ======= */
.seo-section {
  padding: 50px 0;
  border-top: 1px solid var(--line-soft);
}
.seo-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: flex-start;
}
.seo-block h1,
h2,
h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.seo-block h2,
h3 strong {
  font-weight: 600;
}
.seo-block p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 16px;
}
.seo-block ul {
  list-style: none;
  margin: 14px 0 24px;
}
.seo-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-mid);
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  line-height: 1.5;
}
.seo-block ul li:last-child {
  border-bottom: none;
}
.seo-block ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
  margin-top: 6px;
}
.seo-block .tip {
  display: flex;
  gap: 12px;
  padding: 16px;
  background: var(--cream);
  border-left: 3px solid var(--secondary);
  border-radius: 0 8px 8px 0;
  margin: 12px 0;
}
.seo-block .tip .tp {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary);
  margin-bottom: 4px;
}
.seo-block .tip p {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 0;
  line-height: 1.55;
}
.seo-block .tip p a {
  font-weight: 500;
}
.seo-block .tip p a:hover {
  color: var(--primary);
}
.steps-list {
  counter-reset: step;
  list-style: none;
  margin: 16px 0 0;
}
.steps-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  counter-increment: step;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.6;
  list-style-type: disc;
}
.steps-list li::before {
  content: counter(step, "0" counter(step));
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  min-width: 28px;
  padding-top: 2px;
  flex-shrink: 0;
}
.steps-list li strong {
  color: var(--ink);
  font-weight: 600;
}

/* ======= WHY CHOOSE US ======= */
.why-section {
  background: var(--ink);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: "";
  position: absolute;
  top: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 48, 58, 0.25), transparent 65%);
  pointer-events: none;
}
.why-section::after {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 217, 184, 0.2),
    transparent 65%
  );
  pointer-events: none;
}
.why-inner {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  position: relative;
}
/* Photo-ish placeholder */
.why-img {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #1a2e22, #0d1a14);
  position: relative;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.6);
}
.why-img-inner {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 70% at 60% 40%,
      rgba(125, 217, 184, 0.35),
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 60% at 20% 70%,
      rgba(200, 48, 58, 0.25),
      transparent 60%
    );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.why-img-plane {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.why-img-stat {
  text-align: center;
  color: #fff;
}
.why-img-stat .n {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.04em;
}
.why-img-stat .n em {
  color: var(--mint);
  font-style: italic;
}
.why-img-stat .l {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.why-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--mint);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.why-eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--mint);
}
.why-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 14px;
}
.why-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--mint);
}
.why-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 520px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.why-item {
  background: var(--ink);
  padding: 24px 22px;
  transition: background 0.25s;
}
.why-item:hover {
  background: #1e1713;
}
.wi-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 18px;
}
.wi-icon.primary {
  background: rgba(200, 48, 58, 0.18);
  color: var(--primary-soft);
}
.wi-icon.mint {
  background: rgba(125, 217, 184, 0.15);
  color: var(--mint);
}
.wi-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.wi-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.55;
}

/* ======= POPULAR ROUTES ======= */
.routes-section {
  padding: 72px 0;
  background: var(--cream);
}
.routes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 36px;
}
.route-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.route-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}
.route-card:hover {
  border-color: transparent;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.15);
}
.route-card:hover::after {
  transform: scaleX(1);
}
.rt-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.rt-badge.hot {
  color: var(--primary);
}
.rt-badge.trending {
  color: var(--secondary);
}
.rt-badge.hot::before {
  content: "🔥";
}
.rt-badge.trending::before {
  content: "⬆";
}
.rt-path {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.rt-city {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.rt-arrow {
  flex: 1;
  height: 1px;
  background: var(--line);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.rt-arrow::after {
  content: "→";
  font-size: 12px;
  color: var(--ink-faint);
  background: var(--white);
  padding: 0 4px;
}
.rt-route {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.rt-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.rt-from {
  font-size: 11px;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.rt-price {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.rt-was {
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.rt-meta {
  font-size: 11px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* ======= FAQ ======= */
.faq-section {
  padding: 50px 0;
}
.faq-wrap {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 72px;
  align-items: flex-start;
}
.faq-side h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.faq-side h2 em {
  font-style: italic;
  color: var(--primary);
}
.faq-side p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}
.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  padding: 14px 22px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px -6px rgba(200, 48, 58, 0.5);
  transition: all 0.25s;
}
.faq-cta:hover {
  background: var(--primary);
  transform: translateY(-1px);
}
.faq-items {
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 12px 0;
  cursor: pointer;
}
.faq-q-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.25;
}
.faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: var(--ink-soft);
  transition: all 0.3s;
  line-height: 1;
}
.faq-item.open .faq-toggle {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  transition:
    max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 0.3s;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 20px;
}

/* ======= FINAL CTA BANNER ======= */
.final-banner {
  background: linear-gradient(
    120deg,
    var(--primary) 0%,
    var(--primary) 50%,
    #2ea67e 100%
  );
  color: #fff;
  padding: 72px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 220, 180, 0.3),
    transparent 60%
  );
  pointer-events: none;
  animation: orb-float 10s ease-in-out infinite;
}
.final-banner::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 217, 184, 0.2),
    transparent 60%
  );
  pointer-events: none;
}
.fb-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 217, 184, 0.2);
  border: 1px solid rgba(125, 217, 184, 0.4);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.fb-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 8px var(--mint);
  animation: pulse 1.8s infinite;
}
.fb-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  color: #000;
}
.fb-title em {
  font-style: italic;
  color: rgba(255, 235, 212, 0.9);
}
.fb-sub {
  font-size: 17px;
  opacity: 0.8;
  margin-bottom: 36px;
  line-height: 1.5;
}
.fb-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s;
}
.fb-btn.primary {
  background: #fff;
  color: var(--primary);
}
.fb-btn.primary:hover {
  background: var(--mint);
  color: var(--mint-ink);
  transform: translateY(-2px);
}
.fb-btn.ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}
.fb-btn.ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}

/* ======= FOOTER ======= */
footer {
  background: #0e0a08;
  color: #fff;
  padding: 50px 32px 28px;
}
.footer-inner {
  max-width: 1340px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}
.footer-brand .brand {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.fsoc {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.2s;
  color: rgba(255, 255, 255, 0.6);
}
.fsoc:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--mint);
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: #fff;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom .badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.fbadge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0px auto;
  padding: 0px 20px;
}

.content-section {
  width: 100%;
  padding: 40px 0px;
  background-color: #fff;
}

.content-section h1,
h2,
h3 {
  font-size: 21px;
  font-weight: 600;
  color: #222;
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-section h1:first-child,
.content-section h2:first-child,
.content-section h3:first-child {
  margin-top: 0px !important;
}
.content-section h1{
  margin-top: 0px !important;
}
.content-section p {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  line-height: 23px;
  margin-bottom: 15px;
}

.content-section ul {
  margin: 0px;
  padding: 0px;
  padding-left: 21px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.content-section ul li {
  font-size: 14px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 10px;
}

.faqscontent {
  grid-template-columns: 1fr;
}

.inner-banner {
  width: 100%;
  height: 260px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgb(0 0 0 / 70%), rgb(0 0 0 / 60%)),
    url(../images/inner-baner.webp);
  background-size: cover;
  background-position: center center;
  padding: 80px 0px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 0;
  list-style: none;

  li {
    font-size: 14px;
    color: #cbd5e1;

    a {
      color: #fff;
      text-decoration: none;
      transition: 0.3s ease;

      &:hover {
        color: #38bdf8;
      }
    }
  }
}

.banner-title {
  margin-top: 0px;
  font-size: 30px;
  margin-bottom: 20px;
  color: #fff;
  text-align: center;
}

/* ─── MODAL POPUP ─── */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease-out;
  max-width: 500px;
  width: 90%;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  padding: 3px 15px;
  text-align: right;
  justify-content: flex-end;
  border-bottom: none;
  /* border-bottom: 1px solid var(--border); */
}

.modal-close {
  font-size: 28px;
  font-weight: bold;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s;
  position: relative;
  top: -5px;
}

.modal-close img {
  height: 15px;
  transition: all 0.2s;
  opacity: 0.5;
}

.modal-close:hover img {
  opacity: 0.8;
}

.modal-body {
  padding: 0px 30px 20px;
  text-align: center;
}

.modal-icon {
  font-size: 40px;
  margin-bottom: 0px;
}

.modal-icon img {
  height: 60px;
}

.modal-body h2 {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--dark);
  margin-top: 20px;
  margin-bottom: 26px;
  font-weight: 800;
}

.modal-body p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

.modal-subtext {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px !important;
}

.modal-btn {
  background: var(--teal);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  display: none;
}

.modal-btn:hover {
  background: var(--teal2);
}

.mt0{
  margin-top: 0px;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .search-card {
    max-width: 480px;
  }
  .offers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .seo-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .routes-grid {
    /* grid-template-columns: 1fr 1fr; */
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .route-card{
    min-width: 280px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .faq-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 991px) {
  .nav {
    padding: 12px 20px;
    position: relative;
  }
  .nav-toggle {
    display: flex;
    order: 3;
  }
  .nav-cta {
    margin-left: auto;
    padding: 9px 14px;
    font-size: 13px;
  }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    padding: 12px 20px 20px;
    gap: 0;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 30px -16px rgba(0, 0, 0, 0.12);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.3s ease, visibility 0.3s;
  }
  .nav-links.open {
    max-height: 70vh;
    opacity: 1;
    visibility: visible;
  }
  .nav-link {
    padding: 14px 4px;
    font-size: 15px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-link:last-child {
    border-bottom: none;
  }
}

@media (max-width: 680px) {
  .nav {
    padding: 12px 12px;
  }
  .hero-inner,
  .content-wrap,
  .why-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
  .offers-grid,
  .routes-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .final-banner {
    padding: 56px 20px;
  }
  footer {
    padding: 56px 20px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .from-to-row {
    grid-template-columns: 1fr 32px 1fr;
  }
  .hero-title {
    font-size: 36px;
  }
  .urgency {
    display: none;
  }

  .hero-inner {
    padding: 35px 16px;
  }

  .inner-banner {
    padding: 50px 0px;
    height: 190px;
  }

  .banner-title {
    font-size: 24px;
  }

  .hero-call-cta .icon {
    width: 35px;
    height: 35px;
  }

  .hero-call-cta {
    padding: 10px 20px;
  }

  .hero-call-cta img {
    height: 20px;
  }

  .sc-field .val .main {
    font-size: 14px;
  }

  .seo-block ul li {
    font-size: 14px;
    flex-wrap: wrap;
  }

  .seo-block p {
    font-size: 14px;
  }

  .seo-section {
    padding: 25px 0;
  }

  .seo-inner {
    row-gap: 0px;
  }

  .why-section {
    padding: 50px 0;
  }

  .logo img {
    height: 42px;
  }
  .steps-list li{
     flex-wrap: wrap;
  }

  .nav{
    gap: 12px;
  }
}

@media screen and (max-width: 450px) {
  .logo img {
    height: 35px;
  }
  .nav-cta {
    padding: 9px 8px;
  }
}

@media screen and (max-width: 365px) {
 .logo img {
    height: 30px;
  }
}

@media screen and (max-width: 355px) {
 .logo img {
    height: 22px;
  }
}



/* ─── SEARCH CARD PICKER (City / Date / Travellers) ─── */
.rb-picker {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.rb-picker.show {
  display: flex;
}
.rb-picker__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: rbFade 0.2s ease-out;
}
.rb-picker__panel {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(20, 18, 16, 0.35);
  overflow: hidden;
  animation: rbSlideUp 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes rbFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes rbSlideUp {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.rb-picker__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.rb-picker__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
}
.rb-picker__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 22px;
  line-height: 1;
  color: var(--ink-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.rb-picker__close:hover {
  color: var(--primary);
  border-color: var(--primary);
}
.rb-picker__body {
  padding: 18px 20px 20px;
  overflow-y: auto;
}

/* Search input inside picker */
.rb-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  margin-bottom: 14px;
  color: var(--ink-soft);
  transition: border-color 0.15s ease;
}
.rb-search:focus-within {
  border-color: var(--primary);
  background: #fff;
}
.rb-search input {
  flex: 1;
  font-size: 15px;
  color: var(--ink);
  background: transparent;
}
.rb-section-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

/* City list */
.rb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 50vh;
  overflow-y: auto;
}
.rb-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.12s ease;
}
.rb-list__item:hover {
  background: var(--mint-pale);
}
.rb-list__item.is-active {
  background: rgba(31, 110, 171, 0.08);
}
.rb-list__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.rb-list__main {
  flex: 1;
  min-width: 0;
}
.rb-list__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}
.rb-list__sub {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rb-list__code {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
}
.rb-empty {
  padding: 24px 8px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
}

/* Calendar */
.rb-cal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.rb-cal__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}
.rb-cal__nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-mid);
  font-size: 20px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.rb-cal__nav:hover:not(:disabled) {
  color: var(--primary);
  border-color: var(--primary);
}
.rb-cal__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.rb-cal__weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 6px;
}
.rb-cal__weekdays span {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 0;
}
.rb-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.rb-cal__day {
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  border: none;
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.12s ease;
}
.rb-cal__day:hover:not(:disabled):not(.is-other) {
  background: var(--mint-pale);
  color: var(--mint-ink);
}
.rb-cal__day.is-other {
  color: var(--ink-faint);
  pointer-events: none;
}
.rb-cal__day.is-today {
  outline: 1.5px solid var(--mint);
  outline-offset: -2px;
}
.rb-cal__day.is-selected {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
}
.rb-cal__day:disabled {
  color: var(--ink-faint);
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Travellers */
.rb-counters {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rb-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.rb-counter-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rb-counter-info strong {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
}
.rb-counter-info span {
  font-size: 12px;
  color: var(--ink-soft);
}
.rb-counter-controls {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rb-counter-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}
.rb-counter-btn:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
}
.rb-counter-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.rb-counter-val {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  min-width: 18px;
  text-align: center;
}
.rb-class {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}
.rb-class-btn {
  padding: 11px 12px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.15s ease;
}
.rb-class-btn:hover {
  border-color: var(--primary);
}
.rb-class-btn.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}
.rb-apply-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}
.rb-apply-btn:hover {
  background: #18527e;
}
.rb-apply-btn:active {
  transform: scale(0.98);
}

@media (max-width: 480px) {
  .rb-picker {
    padding: 0;
    align-items: flex-end;
  }
  .rb-picker__panel {
    border-radius: 18px 18px 0 0;
    max-width: 100%;
    max-height: 92vh;
  }
  .rb-class {
    grid-template-columns: 1fr;
  }
}
