/* =============================================================
   TourOps — index page styles
   ============================================================= */

/* ── hero ── */
.hero {
  position: relative;
  min-height: 720px;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,27,44,0.65) 0%, rgba(14,27,44,0.4) 40%, rgba(14,27,44,0.85) 100%),
              url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2400&q=80");
  background-size: cover; background-position: center;
  z-index: 0;
}
.hero > .container { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,0.04);
  color: var(--sand);
}
.hero h1 { color: #fff; margin-top: 32px; max-width: 920px; }
.hero h1 .serif-it { color: var(--sand); }
.hero p.lead { color: rgba(255,255,255,0.78); max-width: 480px; font-size: 17px; margin-top: 24px; }

.hero-stats { display: flex; gap: 36px; margin-top: 50px; }
.hero-stats .stat { display: flex; flex-direction: column; }
.hero-stats .stat .num { font-family: var(--ff-display); font-size: 32px; color: #fff; letter-spacing: -.02em; }
.hero-stats .stat .lbl { font-family: var(--ff-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* ── search zone (overlaps hero) ── */
.search-zone { margin-top: -80px; position: relative; z-index: 10; }

/* ── trust strip ── */
.trust-strip { padding: 28px 0; border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.trust-strip .strip-row { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; gap: 12px; align-items: center; font-size: 13.5px; color: var(--ink); }
.trust-item i { font-size: 18px; color: var(--coral); }
.trust-item strong { font-weight: 600; }

/* ── deals ── */
.deal-card {
  background: #fff; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line-soft);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  height: 100%;
  display: flex; flex-direction: column;
}
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.deal-card .deal-media { aspect-ratio: 16/11; background-size: cover; background-position: center; position: relative; }
.deal-card .deal-ribbon {
  position: absolute; top: 14px; left: 14px;
  background: #fff; padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}
.deal-card .deal-fav {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px;
  border-radius: 999px; background: rgba(255,255,255,0.92); border: 0;
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink);
  cursor: pointer;
}
.deal-card .deal-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.deal-card h4 { font-size: 19px; font-weight: 600; }
.deal-card .deal-meta { display: flex; gap: 10px; align-items: center; font-size: 12px; color: var(--muted); margin-top: 6px; }
.deal-card .deal-price { margin-top: auto; padding-top: 14px; display: flex; justify-content: space-between; align-items: end; border-top: 1px dashed var(--line); margin-top: 14px; }
.deal-card .deal-price .from { font-family: var(--ff-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.deal-card .deal-price .amt { font-family: var(--ff-display); font-size: 24px; font-weight: 600; letter-spacing: -.02em; }
.deal-card .deal-price .amt small { font-size: 12px; color: var(--muted); font-weight: 400; }

.deals-strip { display: flex; gap: 18px; align-items: center; margin-top: 26px; }
.deals-pills { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 2px; }
.deals-pills .pill {
  flex-shrink: 0; padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; font-size: 13px; cursor: pointer; transition: background .2s ease;
  font-weight: 500;
}
.deals-pills .pill.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── destinations map ── */
.dest-map-wrap {
  position: relative; background: #fff; border-radius: var(--r-xl);
  border: 1px solid var(--line-soft); padding: 18px;
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.dest-map {
  background:
    radial-gradient(circle at 20% 30%, rgba(232,199,122,0.25), transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(111,168,220,0.18), transparent 50%),
    linear-gradient(135deg, #F2EEE3 0%, #EDE7D7 100%);
  border-radius: var(--r-lg);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.dest-map svg.world-lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.25; }

.dest-pin { position: absolute; transform: translate(-50%, -100%); cursor: pointer; }
.dest-pin .pin-dot {
  width: 14px; height: 14px; background: var(--coral); border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(255,106,77,0.18);
  animation: pin-pulse 2s infinite;
}
.dest-pin .pin-tip {
  position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%);
  width: 2px; height: 8px; background: var(--coral);
}
.dest-pin .pin-label {
  position: absolute; left: 18px; top: -2px;
  background: #fff; padding: 4px 10px; border-radius: 999px;
  font-family: var(--ff-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.dest-pin.is-active .pin-dot { background: var(--ink); box-shadow: 0 0 0 6px rgba(14,27,44,0.15); animation: none; }
@keyframes pin-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,106,77,0.4); }
  100% { box-shadow: 0 0 0 16px rgba(255,106,77,0); }
}

.dest-list { display: flex; flex-direction: column; gap: 8px; }
.dest-list .item {
  display: flex; gap: 12px; align-items: center; padding: 14px;
  border-radius: var(--r-md); cursor: pointer;
  border: 1px solid var(--line-soft);
  background: var(--cream-2);
  transition: all .2s ease;
}
.dest-list .item:hover, .dest-list .item.is-active {
  background: var(--ink); color: #fff; border-color: var(--ink);
}
.dest-list .item:hover .meta, .dest-list .item.is-active .meta { color: rgba(255,255,255,0.6); }
.dest-list .item .num {
  width: 30px; height: 30px; border-radius: 999px;
  background: var(--white); display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-mono); font-size: 11px; flex-shrink: 0;
  border: 1px solid var(--line);
}
.dest-list .item:hover .num, .dest-list .item.is-active .num { background: var(--sand); border-color: var(--sand); color: var(--ink); }
.dest-list .item .name { font-weight: 500; font-size: 14.5px; line-height: 1.2; }
.dest-list .item .meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── newsletter ── */
.newsletter-card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.newsletter-card::before {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 280px; height: 280px; border-radius: 999px;
  background: radial-gradient(closest-side, rgba(232,199,122,0.25), transparent 70%);
}
.newsletter-card h2 { color: #fff; max-width: 540px; }
.newsletter-card h2 .serif-it { color: var(--sand); }
.newsletter-card p { color: rgba(255,255,255,0.6); max-width: 460px; }
.newsletter-form { display: flex; gap: 8px; max-width: 480px; margin-top: 24px; }
.newsletter-form input {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06); color: #fff; outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

/* ── contact ── */
.contact-card {
  background: #fff;
  border-radius: var(--r-xl); padding: 40px;
  border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm);
}
.contact-channel { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px dashed var(--line); }
.contact-channel:last-of-type { border-bottom: 0; }
.contact-channel .icon {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--cream); display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--ink); flex-shrink: 0;
}
.contact-channel .ttl { font-weight: 500; font-size: 14px; }
.contact-channel .val { font-family: var(--ff-mono); font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ── section head ── */
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 32px; }
.section-head h2 { margin: 8px 0 0; max-width: 620px; }
.section-head .lead { color: var(--muted); max-width: 460px; font-size: 15px; }

@media (max-width: 767.98px) {
  .hero { min-height: 600px; }
  .newsletter-card { padding: 36px 22px; }
  .contact-card { padding: 28px 22px; }
  .newsletter-form { flex-direction: column; }
  .hero-stats { gap: 22px; flex-wrap: wrap; }
  .section-head { flex-direction: column; align-items: start; }
}
