/* Advanced polish for SKN Holiday Hub (homepage-first) */

.site-header {
  box-shadow: 0 10px 34px rgba(12, 31, 63, .08);
}

.main-nav {
  justify-content: center;
  gap: 2px;
}

.main-nav a {
  position: relative;
  padding: 10px 10px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.main-nav a:hover {
  transform: translateY(-1px);
}

.hero--advanced {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  padding: 58px 0 92px;
  background:
    linear-gradient(180deg, rgba(6, 19, 43, .42), rgba(6, 19, 43, .76)),
    url("../img/1920x955/img1.jpg") center/cover no-repeat;
}

.hero--advanced::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto -20%;
  height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(0, 103, 255, .28), transparent 55%),
              radial-gradient(circle at 70% 20%, rgba(255, 107, 53, .24), transparent 50%),
              radial-gradient(circle at 60% 70%, rgba(11, 159, 110, .18), transparent 55%);
  pointer-events: none;
  transform: translate3d(0,0,0);
}

.hero--advanced .hero__grid {
  display: block;
}

.hero--advanced .hero__grid > div:first-child {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero--advanced h1 {
  max-width: 920px;
  margin: 0 auto;
  text-shadow: 0 12px 42px rgba(0, 0, 0, .34);
}

.hero--advanced p {
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
}

.hero--advanced .hero__proof {
  justify-content: center;
  margin-bottom: 28px;
}

.hero--advanced .search-widget {
  position: relative;
  z-index: 4;
  width: min(1120px, 100%);
  margin: 18px auto 0;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .97);
  box-shadow:
    0 30px 80px rgba(5, 18, 42, .32),
    0 2px 0 rgba(255, 255, 255, .8) inset;
  backdrop-filter: blur(18px);
  overflow: visible;
}

.search-widget::before {
  content: "";
  position: absolute;
  inset: -18px 30px auto;
  height: 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 103, 255, .28), rgba(255, 107, 53, .24));
  filter: blur(22px);
  z-index: -1;
}

.search-tabs {
  grid-template-columns: repeat(8, minmax(96px, 1fr));
  align-items: stretch;
  border-bottom: 1px solid rgba(219, 227, 239, .9);
  background: linear-gradient(180deg, #fff, #f5f8fd);
  border-radius: 8px 8px 0 0;
}

.search-tab {
  min-height: 86px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  border-right: 1px solid rgba(219, 227, 239, .78);
  font-size: 13px;
  color: #203552;
  transition: background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.search-tab i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0;
  border-radius: 14px;
  background: #edf5ff;
  color: var(--skn-blue);
  font-size: 17px;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}

.search-tab:hover {
  background: #fff;
  color: var(--skn-blue);
}

.search-tab:hover i {
  transform: translateY(-2px);
}

.search-tab.is-active {
  background: #fff;
  color: var(--skn-blue);
  box-shadow: inset 0 -4px 0 var(--skn-blue);
}

.search-tab.is-active i {
  color: #fff;
  background: linear-gradient(135deg, var(--skn-blue), #00a3ff);
  box-shadow: 0 10px 22px rgba(0, 103, 255, .26);
}

.search-panel,
.search-panel[data-search-panel="flights"],
.search-panel[data-search-panel="visa"] {
  grid-template-columns: 1.25fr repeat(3, minmax(128px, .75fr)) auto;
  padding: 22px;
  gap: 14px;
}

.search-panel[data-search-panel="bus"],
.search-panel[data-search-panel="packages"] {
  grid-template-columns: 1.45fr repeat(2, minmax(150px, .85fr)) auto;
  padding: 22px;
  gap: 14px;
}

.search-panel[data-search-panel="boat"],
.search-panel[data-search-panel="event"] {
  grid-template-columns: 1.35fr repeat(2, minmax(150px, .8fr)) auto;
}

.search-panel[data-search-panel="transfer"] {
  grid-template-columns: 1.2fr 1.2fr minmax(145px, .7fr) minmax(120px, .55fr) auto;
}

.field {
  position: relative;
}

.field input,
.field select,
.field textarea {
  min-height: 58px;
  border-color: #d7e1f0;
  background: linear-gradient(180deg, #fff, #fbfdff);
  box-shadow: 0 8px 18px rgba(20, 33, 61, .04);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: #a8c6f5;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(0, 103, 255, .12), 0 14px 26px rgba(20, 33, 61, .08);
}

.search-submit {
  min-height: 58px;
  padding: 0 26px;
  background: linear-gradient(135deg, #ff6b35, #ff3d2e);
  box-shadow: 0 18px 34px rgba(255, 88, 49, .32);
}

.search-submit:hover {
  box-shadow: 0 24px 42px rgba(255, 88, 49, .42);
}

.search-assurance {
  justify-content: center;
  padding: 2px 18px 20px;
}

.search-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f3f8ff;
}

.amenity-grid--services {
  grid-template-columns: repeat(8, 1fr);
}

.amenity-grid--services a,
.amenity-grid--services span {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  background: linear-gradient(180deg, #f7fbff, #eef5ff);
  border: 1px solid #dbe8fb;
  border-radius: var(--skn-radius);
  color: #203552;
  font-weight: 800;
  justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.amenity-grid--services a:hover {
  color: var(--skn-blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 103, 255, .12);
}

.section--visual {
  background: #fff;
}

.section--visual + .section--visual {
  padding-top: 18px;
}

.destination-showcase {
  display: grid;
  grid-template-columns: minmax(360px, 1.04fr) minmax(0, 1fr);
  gap: 26px;
  align-items: stretch;
}

.image-tile {
  position: relative;
  display: grid;
  align-content: end;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  border-radius: var(--skn-radius);
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(15, 35, 75, .14);
  transform: translateZ(0);
}

.image-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(6, 16, 33, .08) 20%, rgba(6, 16, 33, .78) 100%),
    linear-gradient(90deg, rgba(4, 14, 30, .18), rgba(4, 14, 30, .04));
  transition: background .25s ease;
}

.image-tile:hover::before {
  background:
    linear-gradient(180deg, rgba(6, 16, 33, .02) 15%, rgba(6, 16, 33, .72) 100%),
    linear-gradient(90deg, rgba(0, 103, 255, .14), rgba(4, 14, 30, .02));
}

.image-tile span,
.image-tile small {
  position: relative;
  z-index: 1;
}

.destination-spotlight {
  min-height: 560px;
  padding: 26px;
}

.destination-spotlight span {
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
}

.destination-spotlight small {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 700;
}

.spotlight-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.spotlight-dots i {
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .68);
}

.destination-mini-grid {
  max-height: 560px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-color: rgba(0, 103, 255, .35) transparent;
  scrollbar-width: thin;
}

.destination-tile {
  min-height: 170px;
  padding: 16px;
}

.destination-tile span {
  max-width: 95%;
  font-size: 18px;
  line-height: 1.05;
  font-weight: 800;
}

.destination-tile small {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
}

.section-title-centered {
  text-align: center;
  margin-bottom: 34px;
}

.section-title-centered h2 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: #172033;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.05;
  font-weight: 800;
}

.section-title-centered h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 68px;
  height: 3px;
  border-radius: 999px;
  background: #65b8ea;
  transform: translateX(-50%);
}

.scroll-stage {
  position: relative;
}

.package-rail {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 2px 12px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.package-rail::-webkit-scrollbar {
  display: none;
}

.package-poster {
  flex: 0 0 260px;
  min-height: 370px;
  padding: 24px;
  scroll-snap-align: start;
}

.package-poster span {
  font-size: 21px;
  line-height: 1.12;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.scroll-btn {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(219, 227, 239, .92);
  border-radius: 50%;
  background: #fff;
  color: var(--skn-blue);
  box-shadow: 0 12px 26px rgba(15, 35, 75, .14);
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform .2s ease, box-shadow .2s ease;
}

.scroll-btn:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 16px 34px rgba(15, 35, 75, .18);
}

.scroll-btn--left {
  left: -24px;
}

.scroll-btn--right {
  right: -24px;
}

.section--routes {
  background: #fff;
  position: relative;
  overflow: hidden;
}

.section--routes::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 18px;
  width: 160px;
  height: 180px;
  opacity: .08;
  background: linear-gradient(180deg, var(--skn-blue), transparent);
  clip-path: polygon(50% 0, 58% 27%, 70% 27%, 62% 37%, 72% 100%, 28% 100%, 38% 37%, 30% 27%, 42% 27%);
  pointer-events: none;
}

.section-head--compact {
  margin-bottom: 18px;
}

.route-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 22px;
}

.flight-route-card {
  min-height: 96px;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(0, 103, 255, .78);
  border-radius: var(--skn-radius);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 10px 22px rgba(15, 35, 75, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.flight-route-card:hover {
  transform: translateY(-2px);
  border-color: var(--skn-blue);
  box-shadow: 0 16px 30px rgba(0, 103, 255, .12);
}

.flight-route-card img {
  width: 84px;
  height: 72px;
  object-fit: cover;
  border-radius: 6px;
}

.route-card__body {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.route-card__cities,
.route-card__codes,
.route-card__bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.route-card__cities strong {
  overflow: hidden;
  font-size: 16px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.route-card__cities i {
  color: #1594ef;
}

.route-card__codes {
  color: #168ff2;
  font-size: 16px;
  font-weight: 800;
}

.route-card__codes i {
  font-size: 12px;
}

.route-card__bottom {
  justify-content: space-between;
  color: #5c6b80;
  font-size: 14px;
  font-weight: 700;
}

.route-card__bottom strong {
  color: #101827;
  font-size: 18px;
  font-weight: 800;
}

/* Subtle content entrance */
[data-hero-animate] .hero__proof,
[data-hero-animate] .travel-card,
[data-hero-animate] .stat-card,
[data-hero-animate] .deal-card,
[data-hero-animate] .section-head {
  animation: sknFadeUp .65s ease both;
}

[data-hero-animate] .hero__proof { animation-delay: .08s; }
[data-hero-animate] .section-head { animation-delay: .12s; }
[data-hero-animate] .stat-card { animation-delay: .18s; }
[data-hero-animate] .deal-card { animation-delay: .22s; }

@keyframes sknFadeUp {
  from { opacity: 0; transform: translate3d(0, 10px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* Premium card micro-interactions */
.travel-card {
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.travel-card:hover {
  transform: translate3d(0, -4px, 0);
  box-shadow: 0 16px 36px rgba(15, 35, 75, .14);
  border-color: rgba(0, 103, 255, .22);
}

.deal-card {
  transform: translateZ(0);
  transition: transform .25s ease, box-shadow .25s ease;
}

.deal-card:hover {
  transform: translate3d(0,-3px,0);
  box-shadow: 0 18px 40px rgba(15, 35, 75, .16);
}

/* Make heart button feel nicer */
.wishlist-btn {
  display: grid;
  place-items: center;
  transition: transform .2s ease, background .2s ease;
}

.travel-card:hover .wishlist-btn {
  transform: scale(1.05);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-hero-animate] .hero__proof,
  [data-hero-animate] .travel-card,
  [data-hero-animate] .stat-card,
  [data-hero-animate] .deal-card,
  [data-hero-animate] .section-head {
    animation: none !important;
  }
}

@media (max-width: 1180px) {
  .search-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .search-tab {
    min-width: 112px;
  }

  .search-panel,
  .search-panel[data-search-panel="flights"],
  .search-panel[data-search-panel="visa"],
  .search-panel[data-search-panel="bus"],
  .search-panel[data-search-panel="packages"],
  .search-panel[data-search-panel="boat"],
  .search-panel[data-search-panel="event"],
  .search-panel[data-search-panel="transfer"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-submit {
    grid-column: 1 / -1;
  }

  .amenity-grid--services {
    grid-template-columns: repeat(4, 1fr);
  }

  .destination-showcase {
    grid-template-columns: 1fr;
  }

  .destination-spotlight {
    min-height: 420px;
  }

  .destination-mini-grid {
    max-height: none;
    grid-template-columns: repeat(3, minmax(170px, 1fr));
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 8px;
  }

  .destination-tile {
    min-height: 190px;
  }

  .package-poster {
    flex-basis: 240px;
    min-height: 340px;
  }

  .route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .hero--advanced {
    padding: 34px 0 44px;
  }

  .hero--advanced .hero__grid > div:first-child {
    text-align: left;
  }

  .hero--advanced .hero__proof {
    justify-content: flex-start;
  }

  .hero--advanced .search-widget {
    margin-top: 18px;
  }

  .search-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: visible;
  }

  .search-tab {
    min-width: 0;
    min-height: 74px;
    font-size: 12px;
  }

  .search-tab i {
    width: 34px;
    height: 34px;
  }

  .search-panel,
  .search-panel[data-search-panel="flights"],
  .search-panel[data-search-panel="visa"],
  .search-panel[data-search-panel="bus"],
  .search-panel[data-search-panel="packages"],
  .search-panel[data-search-panel="boat"],
  .search-panel[data-search-panel="event"],
  .search-panel[data-search-panel="transfer"] {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .search-assurance {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .search-assurance span {
    flex: 0 0 auto;
  }

  .amenity-grid--services {
    grid-template-columns: repeat(2, 1fr);
  }

  .section--visual + .section--visual {
    padding-top: 8px;
  }

  .destination-showcase {
    gap: 16px;
  }

  .destination-spotlight {
    min-height: 330px;
    padding: 18px;
  }

  .destination-spotlight span {
    font-size: 20px;
  }

  .destination-spotlight small {
    font-size: 15px;
  }

  .spotlight-dots {
    bottom: 18px;
  }

  .spotlight-dots i {
    width: 28px;
  }

  .destination-mini-grid {
    grid-template-columns: repeat(9, 150px);
    gap: 12px;
  }

  .destination-tile {
    min-height: 168px;
    padding: 13px;
  }

  .destination-tile span {
    font-size: 15px;
  }

  .destination-tile small {
    font-size: 13px;
  }

  .section-title-centered {
    margin-bottom: 24px;
  }

  .package-rail {
    gap: 14px;
    padding-bottom: 10px;
  }

  .package-poster {
    flex-basis: 230px;
    min-height: 310px;
    padding: 18px;
  }

  .package-poster span {
    font-size: 18px;
  }

  .scroll-btn {
    width: 38px;
    height: 38px;
  }

  .scroll-btn--left {
    left: -6px;
  }

  .scroll-btn--right {
    right: -6px;
  }

  .route-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .flight-route-card {
    grid-template-columns: 74px minmax(0, 1fr);
    min-height: 88px;
  }

  .flight-route-card img {
    width: 74px;
    height: 66px;
  }

  .route-card__cities strong,
  .route-card__codes {
    font-size: 14px;
  }

  .route-card__bottom strong {
    font-size: 16px;
  }
}

/* ====================================================================
   CUSTOMER PORTAL COMPONENTS & STYLES (White/Blue Theme)
   ==================================================================== */
.user-portal-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding: 40px 0;
}

@media (max-width: 992px) {
  .user-portal-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.user-sidebar {
  background: var(--skn-surface);
  border: 1px solid var(--skn-border);
  border-radius: var(--skn-radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
  height: fit-content;
}

.user-profile-summary {
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--skn-border);
  margin-bottom: 20px;
}

.user-profile-summary .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--skn-surface-soft);
  color: var(--skn-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 12px;
  border: 2px solid var(--skn-border);
}

.user-profile-summary h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--skn-text);
}

.user-profile-summary p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--skn-muted);
}

.user-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--skn-muted);
  transition: all 0.2s;
}

.user-menu-item:hover {
  background: var(--skn-bg);
  color: var(--skn-blue);
}

.user-menu-item.is-active {
  background: var(--skn-surface-soft);
  color: var(--skn-blue);
  border-left: 4px solid var(--skn-blue);
  padding-left: 12px;
}

.user-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.user-welcome-banner {
  background: linear-gradient(135deg, var(--skn-blue), #00a3ff);
  color: #fff;
  padding: 30px;
  border-radius: var(--skn-radius);
  box-shadow: 0 10px 30px rgba(0, 103, 255, 0.15);
}

.user-welcome-banner h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
}

.user-welcome-banner p {
  margin: 8px 0 0;
  opacity: 0.9;
  font-size: 14px;
}

.user-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.user-stat-card {
  background: var(--skn-surface);
  border: 1px solid var(--skn-border);
  border-radius: var(--skn-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.user-stat-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--skn-surface-soft);
  color: var(--skn-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.user-stat-card.coral .icon-box {
  background: rgba(255, 107, 53, 0.08);
  color: var(--skn-coral);
}

.user-stat-card.green .icon-box {
  background: rgba(11, 159, 110, 0.08);
  color: var(--skn-green);
}

.user-stat-card h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--skn-text);
}

.user-stat-card span {
  font-size: 11px;
  font-weight: 800;
  color: var(--skn-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portal-card {
  background: var(--skn-surface);
  border: 1px solid var(--skn-border);
  border-radius: var(--skn-radius);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  overflow: hidden;
}

.portal-card__header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--skn-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.portal-card__header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--skn-text);
}

.portal-card__body {
  padding: 24px;
}

.portal-table {
  width: 100%;
  border-collapse: collapse;
}

.portal-table th, .portal-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--skn-border);
  font-size: 14px;
}

.portal-table th {
  background: var(--skn-bg);
  font-weight: 800;
  color: var(--skn-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portal-table tr:hover td {
  background: var(--skn-bg);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.confirmed, .status-badge.approved { background: rgba(11, 159, 110, 0.1); color: var(--skn-green); }
.status-badge.pending, .status-badge.on_hold, .status-badge.processing { background: rgba(255, 107, 53, 0.1); color: var(--skn-coral); }
.status-badge.cancelled, .status-badge.rejected { background: rgba(220, 53, 69, 0.1); color: #dc3545; }
.status-badge.completed { background: rgba(0, 103, 255, 0.1); color: var(--skn-blue); }

/* PREMIUM FLIGHT AUTOCOMPLETE STYLES */
.autocomplete-container {
    position: relative;
    width: 100%;
}
.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #c9d6df;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 9999;
    max-height: 280px;
    overflow-y: auto;
    display: none;
    margin-top: 4px;
}
.autocomplete-suggestion {
    padding: 10px 14px;
    cursor: pointer;
    border-bottom: 1px solid #f0f4f8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.15s;
    text-align: left;
}
.autocomplete-suggestion:hover {
    background: #f4f8fc;
}
.autocomplete-suggestion .suggestion-left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.autocomplete-suggestion .city-name {
    font-size: 13px;
    font-weight: 700;
    color: #203552;
}
.autocomplete-suggestion .airport-name {
    font-size: 11px;
    color: #5c6b80;
    font-weight: 500;
    max-width: 200px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.autocomplete-suggestion .iata-badge {
    font-size: 11px;
    font-weight: 800;
    color: #0067ff;
    background: #edf5ff;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}



