* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --bg: #060810;
  --s1: #0d0f1c;
  --s2: #131627;
  --s3: #1a1e30;
  --s4: #222640;
  --border: rgba(255, 255, 255, 0.07);
  --border2: rgba(255, 255, 255, 0.12);
  --y: #f5c518;
  --yl: #ffe566;
  --yd: #c9a000;
  --g: #00e5a0;
  --b: #4f8ef7;
  --r: #ff4d6d;
  --text: #eef0ff;
  --t2: #9ba3c8;
  --t3: #525880;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--s3);
  border-radius: 99px;
}

/* BG */
.bg-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 197, 24, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 197, 24, 0.015) 1px, transparent 1px);
  background-size: 64px 64px;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: orbFloat 10s ease-in-out infinite;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 197, 24, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(245, 197, 24, 0);
  }
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: 62px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 8px;
  background: rgba(6, 8, 16, 0.9);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--y);
}
.nav-links {
  display: flex;
  gap: 2px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.nav-link {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--t2);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s;
  background: none;
  border: none;
  font-family: inherit;
}
.nav-link:hover {
  color: var(--text);
  background: var(--s2);
}
.nav-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}
.btn-outline {
  padding: 7px 16px;
  border-radius: 8px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--t2);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.btn-outline:hover {
  border-color: var(--y);
  color: var(--y);
}
.btn-primary {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  background: var(--y);
  color: #000;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.15s;
}
.btn-primary:hover {
  background: var(--yl);
  transform: translateY(-1px);
}
.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--y), var(--yd));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
  color: #000;
  cursor: pointer;
  border: 2px solid rgba(245, 197, 24, 0.35);
  position: relative;
  flex-shrink: 0;
}
.user-dropdown {
  position: absolute;
  top: 44px;
  right: 0;
  background: var(--s1);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 8px;
  min-width: 210px;
  z-index: 999;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.7);
  display: none;
}
.user-dropdown.open {
  display: block;
}
.ud-header {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.ud-name {
  font-weight: 800;
  font-size: 0.88rem;
}
.ud-email {
  font-size: 0.7rem;
  color: var(--t3);
  margin-top: 2px;
}
.ud-role {
  margin-top: 4px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.63rem;
  font-weight: 900;
}
.ud-item {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--t2);
  cursor: pointer;
  transition: all 0.15s;
}
.ud-item:hover {
  background: var(--s3);
  color: var(--text);
}
.ud-logout {
  color: var(--r);
}
.ud-logout:hover {
  background: rgba(255, 77, 109, 0.1);
  color: var(--r);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--t2);
  border-radius: 99px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px;
  left: 0;
  right: 0;
  background: var(--s1);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 190;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open {
  display: flex;
}

/* HERO */
.hero {
  padding: 70px 32px 50px;
  text-align: center;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px 5px 8px;
  border-radius: 99px;
  border: 1px solid rgba(245, 197, 24, 0.22);
  background: rgba(245, 197, 24, 0.05);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--y);
  margin-bottom: 24px;
}
.pulse-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(245, 197, 24, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pulse-dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--y);
  display: block;
  animation: pulse 1.6s infinite;
}
h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 18px;
}
h1 .grad {
  background: linear-gradient(135deg, var(--y), var(--yl), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  color: var(--t2);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--t3);
}
.trust-item b {
  color: var(--t2);
}

/* SEARCH BOX */
.search-box {
  max-width: 820px;
  margin: 0 auto;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.search-tabs {
  display: flex;
  gap: 0;
  padding: 10px 10px 0;
  border-bottom: 1px solid var(--border);
}
.s-tab {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 10px 10px 0 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--t3);
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  border-bottom: 2px solid transparent;
  transition: all 0.15s;
  white-space: nowrap;
}
.s-tab.active {
  color: var(--y);
  background: rgba(245, 197, 24, 0.07);
  border-bottom-color: var(--y);
}
.search-inputs {
  display: flex;
  gap: 8px;
  padding: 12px;
  align-items: stretch;
  flex-wrap: wrap;
}
.field {
  flex: 1;
  min-width: 120px;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s;
}
.field:focus-within {
  border-color: rgba(245, 197, 24, 0.4);
}
.field-icon {
  font-size: 0.95rem;
  flex-shrink: 0;
}
.field-content {
  flex: 1;
  min-width: 0;
}
.field-label {
  font-size: 0.58rem;
  color: var(--t3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.field input,
.field select {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 3px;
  font-family: inherit;
  width: 100%;
}
.field select {
  cursor: pointer;
}

/* DATE FIELD - FIXED */
.field.date-field {
  min-width: 170px;
  flex: 0 0 170px;
}
.field.date-field input[type="date"] {
  min-width: 130px;
  font-size: 0.85rem;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}

.swap-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--s2);
  border: 1px solid var(--border);
  color: var(--t2);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  align-self: center;
  transition: all 0.25s;
}
.swap-btn:hover {
  border-color: var(--y);
  color: var(--y);
  transform: rotate(180deg);
}
.search-btn {
  background: var(--y);
  border: none;
  color: #000;
  font-weight: 900;
  font-size: 0.88rem;
  padding: 0 24px;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  min-height: 52px;
  white-space: nowrap;
  transition: all 0.15s;
}
.search-btn:hover {
  background: var(--yl);
  transform: translateY(-1px);
}

/* SECTIONS */
.section {
  padding: 50px 32px;
}
.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.section-title h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-title h2::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--y);
  border-radius: 99px;
}
.see-all {
  font-size: 0.78rem;
  color: var(--y);
  font-weight: 700;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.see-all:hover {
  opacity: 1;
}

/* GRIDS */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* CARDS */
.card {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.6rem;
  font-weight: 900;
}
.card-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.card-title {
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 4px;
}
.card-desc {
  color: var(--t2);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-bottom: 12px;
}
.card-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.chip {
  padding: 3px 9px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--t3);
  cursor: pointer;
  transition: all 0.15s;
}
.chip:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.3);
  color: var(--y);
}

/* AIRLINE */
.airline-row {
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
  cursor: pointer;
}
.airline-row:hover {
  border-color: rgba(245, 197, 24, 0.3);
  background: var(--s2);
  transform: translateX(4px);
}
.airline-em {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--s2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  overflow: hidden;
}
.airline-em img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.airline-info {
  flex: 1;
  min-width: 0;
}
.airline-name {
  font-weight: 800;
  font-size: 0.88rem;
}
.airline-route {
  font-size: 0.73rem;
  color: var(--t2);
  margin-top: 2px;
}
.airline-note {
  font-size: 0.68rem;
  color: var(--g);
  margin-top: 2px;
  font-weight: 700;
}
.airline-book {
  color: var(--y);
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* FILTERS */
.filter-pills {
  display: flex;
  gap: 6px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pill {
  padding: 6px 15px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--s1);
  color: var(--t3);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
}
.pill.active,
.pill:hover {
  background: rgba(245, 197, 24, 0.1);
  border-color: rgba(245, 197, 24, 0.3);
  color: var(--y);
}

/* HOTELS */
.hotels-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.hotels-scroll::-webkit-scrollbar {
  display: none;
}
.hotel-card {
  flex-shrink: 0;
  width: 220px;
  background: var(--s1);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
}
.hotel-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 197, 24, 0.3);
}
.hotel-img {
  height: 120px;
  background: var(--s2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  position: relative;
  overflow: hidden;
}
.hotel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hotel-discount {
  position: absolute;
  top: 8px;
  left: 8px;
  background: var(--r);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 5px;
}
.hotel-body {
  padding: 14px;
}
.hotel-name {
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.hotel-loc {
  font-size: 0.7rem;
  color: var(--t3);
  margin-bottom: 8px;
}
.hotel-price {
  font-weight: 900;
  font-size: 1rem;
  color: var(--y);
}
.hotel-price span {
  font-size: 0.62rem;
  color: var(--t3);
  font-weight: 400;
}
.hotel-stars {
  color: #f5c518;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

/* OFFERS */
.offers-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}
.offers-scroll::-webkit-scrollbar {
  display: none;
}
.offer-card {
  flex-shrink: 0;
  min-width: 270px;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s;
}
.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 197, 24, 0.3);
}
.offer-em {
  font-size: 2rem;
  flex-shrink: 0;
}
.offer-info {
  flex: 1;
}
.offer-title {
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 3px;
}
.offer-sub {
  font-size: 0.72rem;
  color: var(--t3);
}
.offer-badge {
  background: var(--y);
  color: #000;
  font-size: 0.62rem;
  font-weight: 900;
  padding: 4px 10px;
  border-radius: 99px;
  flex-shrink: 0;
}

/* PROMO */
.promo-banner {
  background: linear-gradient(135deg, #1a1300, #0a0e1a, #001510);
  border: 1px solid rgba(245, 197, 24, 0.2);
  border-radius: 20px;
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: "✈";
  position: absolute;
  right: 180px;
  font-size: 8rem;
  opacity: 0.04;
  pointer-events: none;
}
.promo-label {
  font-size: 0.68rem;
  font-weight: 900;
  color: var(--y);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.promo-title {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.promo-sub {
  color: var(--t3);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.promo-code {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: rgba(245, 197, 24, 0.08);
  border: 1.5px dashed rgba(245, 197, 24, 0.35);
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 900;
  font-size: 0.88rem;
  color: var(--y);
}
.promo-code span {
  font-size: 0.68rem;
  color: var(--t3);
  font-weight: 400;
}

/* STATS */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--border);
  gap: 1px;
}
.stat-item {
  background: var(--s1);
  padding: 26px 20px;
  text-align: center;
}
.stat-num {
  font-family: "Syne", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--y);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--t3);
  margin-top: 3px;
}

/* FOOTER */
footer {
  background: var(--s1);
  border-top: 1px solid var(--border);
  padding: 48px 32px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.footer-desc {
  color: var(--t3);
  font-size: 0.78rem;
  line-height: 1.7;
  max-width: 220px;
}
.footer-col h5 {
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--t2);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-link {
  display: block;
  color: var(--t3);
  font-size: 0.78rem;
  margin-bottom: 8px;
  text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover {
  color: var(--y);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--t3);
}

/* MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal {
  background: var(--s1);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 36px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.open .modal {
  transform: translateY(0);
}
.modal-logo {
  text-align: center;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 6px;
}
.modal-logo span {
  color: var(--y);
}
.modal-sub {
  text-align: center;
  color: var(--t2);
  font-size: 0.82rem;
  margin-bottom: 22px;
}
.modal-tabs {
  display: flex;
  background: var(--s2);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 22px;
}
.modal-tab {
  flex: 1;
  padding: 9px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  transition: all 0.15s;
  background: transparent;
  color: var(--t3);
}
.modal-tab.active {
  background: var(--y);
  color: #000;
}
.form-group {
  margin-bottom: 14px;
}
.form-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: 0.88rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus {
  border-color: rgba(245, 197, 24, 0.4);
}
.form-error {
  color: var(--r);
  font-size: 0.73rem;
  margin-top: 6px;
  padding: 8px 12px;
  border-radius: 7px;
  background: rgba(255, 77, 109, 0.1);
  border: 1px solid rgba(255, 77, 109, 0.2);
  display: none;
}
.form-error.show {
  display: block;
}
.form-btn {
  width: 100%;
  padding: 13px;
  border-radius: 10px;
  background: var(--y);
  border: none;
  color: #000;
  font-size: 0.92rem;
  font-weight: 900;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
  transition: all 0.15s;
}
.form-btn:hover {
  background: var(--yl);
}
.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}
.divider::before,
.divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}
.divider span {
  font-size: 0.68rem;
  color: var(--t3);
  font-weight: 600;
}
.social-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.social-btn {
  padding: 11px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--s2);
  color: var(--t2);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.15s;
}
.social-btn:hover {
  border-color: var(--border2);
  color: var(--text);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--s2);
  border: 1px solid var(--border);
  color: var(--t2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.modal-close:hover {
  color: var(--text);
}

/* TOAST */
.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toast {
  background: var(--s2);
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  max-width: 320px;
  animation: slideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.toast.success {
  border: 1px solid rgba(0, 229, 160, 0.3);
}
.toast.error {
  border: 1px solid rgba(255, 77, 109, 0.3);
}
.toast.warning {
  border: 1px solid rgba(245, 197, 24, 0.3);
}
.toast.info {
  border: 1px solid rgba(79, 142, 247, 0.3);
}

/* TRACKING */
.track-badge {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--s2);
  border: 1px solid rgba(0, 229, 160, 0.3);
  border-radius: 99px;
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--g);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 6px;
}
.track-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--g);
  animation: pulse 1.5s infinite;
}

/* ADMIN */
.admin-section {
  padding: 32px;
  position: relative;
  z-index: 1;
  display: none;
}
.admin-section.show {
  display: block;
}
.admin-title {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-title::before {
  content: "";
  display: block;
  width: 4px;
  height: 20px;
  background: var(--y);
  border-radius: 99px;
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.metric-card {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px;
}
.metric-label {
  font-size: 0.65rem;
  color: var(--t3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}
.metric-val {
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--y);
}
.metric-sub {
  font-size: 0.7rem;
  color: var(--g);
  margin-top: 4px;
  font-weight: 700;
}
.data-table {
  background: var(--s2);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 16px;
}
.table-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
}
th {
  padding: 11px 16px;
  text-align: left;
  color: var(--t3);
  font-weight: 700;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
tr:last-child td {
  border-bottom: none;
}
tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}
.status-badge {
  padding: 3px 9px;
  border-radius: 99px;
  font-size: 0.65rem;
  font-weight: 800;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .promo-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  nav {
    padding: 0 16px;
  }
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .section {
    padding: 36px 16px;
  }
  .hero {
    padding: 50px 16px 36px;
  }
  h1 {
    font-size: 2.4rem;
    letter-spacing: -2px;
  }
  .search-inputs {
    flex-direction: column;
  }
  .field.date-field {
    flex: 1;
    min-width: unset;
  }
  .swap-btn {
    display: none;
  }
  .grid-4,
  .grid-3,
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .promo-banner {
    padding: 28px 20px;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
  .admin-section {
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .trust-badges {
    gap: 10px;
  }
  .s-tab {
    padding: 6px 10px;
    font-size: 0.72rem;
  }
  .search-btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-icon{
  width:72px;
  height:72px;
  background:#fff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:14px;
}

.service-icon img{
  width:55px;
  height:55px;
  object-fit:contain;
}
