 /* ─── SEARCH CARD ─── */
    .search-card {
      background: var(--white);
      border-radius: 24px;
      padding: 32px 36px 28px;
      box-shadow: 0 32px 80px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.08);
      width: 100%;
      max-width: 940px;
      position: relative;
    }
 
    /* top logo strip */
    .card-brand {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--primary);
      letter-spacing: -.5px;
      margin-bottom: 18px;
    }
    .card-brand span { color: var(--accent); }
 
    /* ─── TRIP TYPE RADIO ─── */
    .trip-type-wrap {
      display: flex;
      gap: 6px;
      margin-bottom: 22px;
    }
 
    .trip-radio { display: none; }
 
    .trip-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 18px;
      border-radius: 50px;
      border: 1.5px solid var(--border);
      font-size: .82rem;
      font-weight: 600;
      color: var(--mid);
      cursor: pointer;
      transition: all .2s;
      user-select: none;
      background: var(--white);
    }
    .trip-label .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      border: 2px solid var(--border);
      transition: all .2s;
      flex-shrink: 0;
    }
    .trip-radio:checked + .trip-label {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--white);
    }
    .trip-radio:checked + .trip-label .dot {
      background: var(--white);
      border-color: var(--white);
    }
 
    /* ─── SECTION DIVIDER ─── */
    .form-section { display: flex; flex-direction: column; gap: 20px; }
 
    /* ─── INPUT GROUP ─── */
    .fd-group { display: flex; flex-direction: column; gap: 5px; position: relative; }
 
    .fd-label {
      font-size: .72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .7px;
      color: var(--light-text);
    }
 
    .fd-input-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }
 
    .fd-icon {
      position: absolute;
      left: 13px;
      color: var(--primary);
      font-size: 1rem;
      pointer-events: none;
      z-index: 2;
    }
 
    .fd-input {
      width: 100%;
      background: var(--input-bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px 12px 14px;
      font-size: .93rem;
      font-weight: 500;
      color: var(--dark);
      transition: border-color .2s, box-shadow .2s, background .2s;
      outline: none;
    }
    .fd-input::placeholder { color: #B3BAC5; font-weight: 400; }
    .fd-input:focus {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(0,82,204,.12);
    }
 
    /* swap button */
    .swap-btn {
      width: 36px; height: 36px;
      border-radius: 50%;
      border: 2px solid var(--border);
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--primary);
      transition: all .2s;
      flex-shrink: 0;
      font-size: .9rem;
    }
    .swap-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--white);
      transform: rotate(90deg);
    }
 
    /* ─── ROW LAYOUTS ─── */
    .row-1 { display: grid; grid-template-columns: 30% 30% 20% 20%; gap: 0 10px; align-items: end; }
    
    .row-2 { display: grid; grid-template-columns: 1fr auto; gap: 14px; align-items: end; margin-top: 14px; }
    .row-2-inner { display: flex; gap: 10px; align-items: end; }
 
    /* ─── DATE INPUT ─── */
    .fd-input.date-inp { cursor: pointer; }
 
    /* ─── PAX WRAPPER ─── */
    .pax-wrap { position: relative; }
 
    .pax-trigger {
      width: 100%;
      background: var(--input-bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px 12px 14px;
      font-size: .93rem;
      font-weight: 500;
      color: var(--dark);
      cursor: pointer;
      text-align: left;
      transition: border-color .2s, background .2s;
      outline: none;
    }
    .pax-trigger:focus, .pax-trigger.open {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(0,82,204,.12);
    }
 
    /* ─── PAX DROPDOWN ─── */
    .pax-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      z-index: 999;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 16px;
      padding: 20px 22px 16px;
      box-shadow: 0 16px 48px rgba(0,0,0,.16);
      min-width: 300px;
    }
    .pax-dropdown.show { display: block; }
 
    .pax-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px solid #F0F2F7;
    }
    .pax-row:last-of-type { border-bottom: none; }
    .pax-info {}
    .pax-title { font-size: .88rem; font-weight: 700; color: var(--dark); }
    .pax-sub { font-size: .75rem; color: var(--light-text); }
 
    .pax-counter {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .pax-btn {
      width: 30px; height: 30px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--white);
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--mid);
      font-size: 1.1rem;
      font-weight: 600;
      transition: all .2s;
      line-height: 1;
    }
    .pax-btn:hover { border-color: var(--primary); color: var(--primary); }
    .pax-btn:disabled { opacity: .35; cursor: not-allowed; }
    .pax-count {
      width: 28px;
      text-align: center;
      font-weight: 700;
      font-size: .95rem;
      color: var(--dark);
      font-family: 'Syne', sans-serif;
    }
 
    .pax-divider { border: none; border-top: 1.5px solid #F0F2F7; margin: 8px 0; }
 
    .pax-done {
      width: 100%;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: 10px;
      padding: 10px;
      font-weight: 700;
      font-size: .88rem;
      cursor: pointer;
      margin-top: 10px;
      transition: background .2s;
    }
    .pax-done:hover { background: var(--primary-dark); }
 
    /* ─── CLASS SELECT ─── */
    .fd-select {
      width: 100%;
      background: var(--input-bg);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px 12px 14px;
      font-size: .93rem;
      font-weight: 500;
      color: var(--dark);
      transition: border-color .2s, background .2s;
      outline: none;
     
      cursor: pointer;
    }
    .fd-select:focus {
      border-color: var(--primary);
      background: var(--white);
      box-shadow: 0 0 0 3px rgba(0,82,204,.12);
    }
    .select-wrap { position: relative; }
    .select-caret {
      position: absolute; right: 13px; top: 50%; transform: translateY(-50%);
      color: var(--light-text); font-size: .85rem; pointer-events: none;
    }
 
    /* ─── SEARCH BUTTON ─── */
    .search-btn {
      background: var(--accent);
      color: var(--white);
      border: none;
      border-radius: 12px;
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: 1rem;
      padding: 13px 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      cursor: pointer;
      transition: all .25s;
      white-space: nowrap;
      width: 100%;
      letter-spacing: .2px;
    }
    .search-btn:hover {
      background: #e04e29;
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(255,86,48,.35);
    }
    .search-btn:active { transform: translateY(0); }
    .search-btn i { font-size: 1rem; }
 
    /* ─── HIDDEN RETURN DATE WHEN ONE-WAY ─── */
    .return-group { transition: opacity .25s; }
    .return-group.hidden { opacity: .35; pointer-events: none; }
 
    /* ─── FOOTER HINTS ─── */
    .form-hints {
      margin-top: 18px;
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }
    .hint-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: .78rem;
      color: var(--light-text);
    }
    .hint-item svg { color: var(--primary); font-size: .85rem; }
 
    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      .search-card { padding: 22px 18px; }
      .row-1 { grid-template-columns: 1fr; gap: 12px; }
      .row-1 .col-divider { display: none; }
      .row-1 .swap-col { display: none; }
      .row-2 { grid-template-columns: 1fr; }
      .row-2-inner { flex-direction: column; }
      .pax-dropdown { min-width: 260px; }
      
    }
    @media (min-width: 769px) and (max-width: 992px) {
      .row-1 { grid-template-columns: 1fr auto 1fr 1px 1fr 1fr; }
    }

    .ui-autocomplete {position: absolute;cursor: default;background: #fff;color: #333;padding: 0;max-height: 500px;overflow-x: hidden;overflow-y: scroll;box-shadow: 0 0 5px #00000038;border-radius: 3px;z-index: 100000;}.ui-autocomplete li {padding: 10px;border-bottom: 1px solid #e3e3e3;font-weight: 600;}.ui-autocomplete li:hover {    padding: 10px;
    border-bottom: 1px solid #e3e3e3;
    background: #19875414;
    color: #198754;
    cursor: pointer; }.ui-helper-hidden-accessible {border: 0;clip: rect(0 0 0 0);height: 1px;margin: -1px;overflow: hidden;padding: 0;position: absolute;width: 1px;}