/* ============================================================
   Hero — split layout · search card · stats bar · ticker
============================================================ */

/* === Show mobile nav at MD breakpoint === */

/* ============================================================
   HERO — Split layout
============================================================ */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    130deg,
    #06112a 0%,
    #0f1f4a 40%,
    #1740a0 75%,
    #1e6bd8 100%
  );
  padding-top: 66px;
}

#hero .hero-inner {
  flex: 0 0 auto;
}

#hero .hero-stats-bar {
  flex: 0 0 auto;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 70% 40%,
      rgba(96, 165, 250, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 10% 80%,
      rgba(8, 145, 178, 0.1) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 40% at 90% 10%,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 60%
    );
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 40px 60px;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-left {
  max-width: 540px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  font-family: "Sora", sans-serif;
}

.hero-pill-dot {
  width: 7px;
  height: 7px;
  background: var(--amber);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.5;
  }
}

h1.hero-h1 {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 5vw, var(--fs-h1));
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: #fff;
  margin-bottom: 20px;
}

h1.hero-h1 .hl {
  background: linear-gradient(90deg, #f59e0b, #fcd34d, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-acts {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.hs-item {
  flex: 1;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hs-item:last-child {
  border-right: none;
  margin-right: 0;
}

.hs-num {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.hs-num em {
  color: var(--amber);
  font-style: normal;
}

.hs-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
       HERO SEARCH CARD — premium glass form (flight-widget inside)
    ============================================================ */
.hero-search-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 24px 56px rgba(4, 13, 31, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Heading + subtitle inside the search card */
.hero-search-title {
  font-family: "Sora", sans-serif;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-search-title i {
  color: var(--amber);
  font-size: 18px;
}

.hero-search-sub {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  margin-bottom: 22px;
  font-weight: 500;
}

/* The form grid (premium dark version of flight-widget fw-grid) */
.hero-fw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end;
}

.hero-fw-grid .hero-fw-go {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.hero-fw-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero-fw-field label {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-fw-field label i {
  color: var(--amber);
  font-size: 10px;
}

.hero-fw-input {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition:
    background var(--t),
    border-color var(--t),
    box-shadow var(--t);
  width: 100%;
  min-height: var(--tap-min);
  appearance: none;
  -webkit-appearance: none;
}

.hero-fw-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

.hero-fw-input:focus {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-cyan-400);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}

.hero-fw-input[type="date"] {
  color-scheme: dark;
}

.hero-fw-input option {
  background: var(--color-sky-800);
  color: #fff;
}

/* Submit button — gold CTA */
.hero-fw-go {
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 22px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform var(--t),
    background var(--t),
    box-shadow var(--t);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.4);
  letter-spacing: 0.01em;
  min-height: 52px;
}

.hero-fw-go:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(245, 158, 11, 0.5);
}

/* Popular routes strip below the form */
.hero-pop-routes {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-pop-routes .pop-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Sora", sans-serif;
}

.hero-route-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-route-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: var(--t);
}

.hero-route-chip i {
  color: var(--color-cyan-300);
  font-size: 9px;
  opacity: 0.8;
}

.hero-route-chip:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(96, 165, 250, 0.45);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
       HERO STATS BAR — full-width strip below the grid
    ============================================================ */
.hero-stats-bar {
  position: relative;
  z-index: 10;
  width: 100%;
  margin-top: 56px;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(
    180deg,
    rgba(4, 13, 31, 0.2),
    rgba(4, 13, 31, 0.05)
  );
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-stats-bar .hero-stats {
  display: flex;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  border-top: none;
  gap: 0;
}

.hero-stats-bar .hs-item {
  flex: 1;
  text-align: center;
  padding: 4px 24px;
  margin-right: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats-bar .hs-item:last-child {
  border-right: none;
}

.hero-stats-bar .hs-num {
  font-size: 30px;
  margin-bottom: 6px;
}

.hero-stats-bar .hs-label {
  font-size: 11px;
  letter-spacing: 0.06em;
}

/* Mobile responsive — hero search + stats bar */

.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.stab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  border-radius: 100px;
  transition: var(--t);
  border: none;
  background: transparent;
  font-family: "Sora", sans-serif;
}

.stab.active {
  background: var(--amber);
  color: #fff;
}

.stab:hover:not(.active) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.stab i {
  font-size: 11px;
}

.sf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.sf-field {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background var(--t);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-field:hover {
  background: rgba(255, 255, 255, 0.14);
}

.sf-field-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-size: 13px;
  flex-shrink: 0;
}

.sf-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
}

.sf-val {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  font-family: "Sora", sans-serif;
  margin-top: 1px;
}

.sf-hint {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
}

.sf-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 8px;
}

.sf-go {
  background: var(--amber);
  border: none;
  cursor: pointer;
  border-radius: 12px;
  padding: 0 22px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-go:hover {
  background: var(--amber-dark);
}

.pop-routes {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pop-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rchip {
  padding: 5px 13px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: var(--t);
  font-family: "Sora", sans-serif;
}

.rchip:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ============================================================
   TICKER
============================================================ */
#ticker {
  background: #fff;
  border-bottom: 1px solid var(--gray-150);
  overflow: hidden;
  position: relative;
}

.ticker-badge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 22px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Sora", sans-serif;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  padding-left: 160px;
}

.tick {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  border-right: 1px solid var(--gray-150);
  font-family: "Sora", sans-serif;
}

.tick-price {
  color: var(--blue);
  font-weight: 800;
}

.tick i {
  color: var(--blue-light);
  font-size: 11px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   HERO SEARCH — Travelpayouts integration (autocomplete · trip toggle · pax counter)
============================================================ */

/* Trip type toggle (OW / RT) — minimal pill switch */
.hero-fw-trip {
  display: inline-flex;
  gap: 2px;
  margin-bottom: 20px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}
.hero-trip-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-family: "Sora", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: color var(--t), background var(--t);
}
.hero-trip-chip i {
  font-size: 11px;
  opacity: 0.7;
}
.hero-trip-chip:hover:not(.active) {
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
}
.hero-trip-chip.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}
.hero-trip-chip.active i {
  color: var(--amber);
  opacity: 1;
}
.hero-trip-chip:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* Autocomplete container — relative wrapper for positioning */
.hero-fw-ac {
  position: relative;
}

/* Autocomplete dropdown list (dark theme) */
.hero-ac-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(15, 26, 46, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  max-height: 280px;
  overflow-y: auto;
  display: none;
  padding: 6px;
}
.hero-ac-list.open {
  display: block;
  animation: hero-ac-in 0.15s ease;
}
@keyframes hero-ac-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-ac-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: background var(--t-fast);
}
.hero-ac-item:hover,
.hero-ac-item.focused {
  background: rgba(37, 99, 235, 0.2);
}
.hero-ac-iata {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-cyan-300);
  background: rgba(8, 145, 178, 0.18);
  border: 1px solid rgba(8, 145, 178, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  flex-shrink: 0;
  letter-spacing: 0.04em;
}
.hero-ac-name {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
}
.hero-ac-country {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1px;
}

/* Return date — visible always; dimmed (disabled) when one-way is active */
.hero-search-card:not(.is-rt) .hero-fw-return-field {
  opacity: 0.35;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.hero-search-card.is-rt .hero-fw-return-field {
  opacity: 1;
  pointer-events: auto;
}

/* Passenger field always spans full width (so it never sits alone in a half-empty row) */
.hero-fw-pax {
  grid-column: 1 / -1;
}

/* Passenger custom dropdown trigger */
.hero-fw-pax {
  position: relative;
}
.hero-pax-trigger {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition:
    background var(--t),
    border-color var(--t),
    box-shadow var(--t);
  width: 100%;
  min-height: var(--tap-min);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}
.hero-pax-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hero-pax-trigger.open {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-cyan-400);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}
.hero-pax-trigger i {
  font-size: 11px;
  opacity: 0.65;
  transition: transform var(--t);
}
.hero-pax-trigger.open i {
  transform: rotate(180deg);
}

/* Passenger dropdown panel */
.hero-pax-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(15, 26, 46, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  padding: 10px;
  display: none;
}
.hero-pax-dropdown.open {
  display: block;
  animation: hero-ac-in 0.15s ease;
}
.hero-pax-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background var(--t-fast);
}
.hero-pax-row:hover {
  background: rgba(255, 255, 255, 0.04);
}
.hero-pax-info strong {
  font-family: "Sora", sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
  display: block;
}
.hero-pax-info span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}
.hero-pax-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-pax-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background var(--t),
    border-color var(--t),
    color var(--t);
}
.hero-pax-btn:hover:not(:disabled) {
  background: var(--color-cyan-500);
  border-color: var(--color-cyan-500);
}
.hero-pax-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.hero-pax-num {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  min-width: 18px;
  text-align: center;
}
.hero-pax-cabin {
  margin-top: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-pax-cabin label {
  font-family: "Sora", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.hero-pax-cabin select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 8px;
  padding: 7px 12px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  color-scheme: dark;
}
.hero-pax-cabin select option {
  background: var(--color-sky-800);
  color: #fff;
}

/* Toast (used by JS) */
.hero-toast {
  position: fixed;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%) translateY(20px);
  background: var(--color-sky-800);
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.hero-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   CUSTOM CALENDAR — dark theme matching site design
============================================================ */
.hero-date-trigger {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  width: 100%;
  min-height: var(--tap-min);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 8px;
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.hero-date-trigger:hover {
  background: rgba(255, 255, 255, 0.12);
}
.hero-date-trigger.open {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-cyan-400);
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.15);
}
.hero-date-trigger i {
  font-size: 11px;
  opacity: 0.5;
}
.hero-date-trigger .date-text {
  flex: 1;
}
.hero-date-trigger .date-text.placeholder {
  color: rgba(255, 255, 255, 0.42);
  font-weight: 500;
}

.hero-cal-popup {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 60;
  background: rgba(15, 26, 46, 0.97);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  padding: 16px;
  min-width: 280px;
  display: none;
  user-select: none;
}
.hero-cal-popup.open {
  display: block;
  animation: hero-ac-in 0.15s ease;
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-header-title {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), color var(--t);
}
.cal-nav:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}
.cal-wd {
  font-family: "Sora", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.cal-day {
  font-family: "Sora", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--t), color var(--t);
  border: none;
  background: transparent;
}
.cal-day:hover:not(.disabled):not(.selected) {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.cal-day.today {
  color: var(--color-cyan-400);
  font-weight: 800;
}
.cal-day.selected {
  background: var(--amber);
  color: #fff;
  font-weight: 800;
}
.cal-day.disabled {
  color: rgba(255, 255, 255, 0.15);
  cursor: default;
}
.cal-day.other-month {
  color: rgba(255, 255, 255, 0.15);
}
