/* ============================================================
   Booking Jo — brand: #0f0c7c (blue) / #febb02 (yellow)
   Premium look, fully offline: system fonts, no remote assets.
   RTL/LTR aware via CSS logical properties.
   ============================================================ */


@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100..900&family=Cairo:wght@200..1000&family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

:root {
  --blue: #0f0c7c;
  --blue-dark: #090747;
  --blue-mid: #1d19a8;
  --blue-soft: #eeedfb;
  --yellow: #febb02;
  --yellow-dark: #e0a500;
  --yellow-soft: #fff6dd;
  --ink: #191831;
  --muted: #6f6e8c;
  --bg: #f4f5fb;
  --card: #ffffff;
  --line: #e6e6f2;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 6px 24px rgba(15, 12, 124, .07);
  --shadow-lg: 0 18px 48px rgba(15, 12, 124, .18);
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", Tahoma, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: var(--blue);
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: 22px;
}

/* ================= Header ================= */
.site-header {
  background: rgba(15, 12, 124, .97);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 20px rgba(5, 4, 40, .35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .3));
}

.brand-name {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 3px;
  white-space: nowrap;
}

.brand-name b {
  color: var(--yellow);
  font-weight: 800;
}

.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
}

.main-nav a {
  color: #c9c8ef;
  padding: 0px 7px;
  border-radius: 10px;
  font-weight: 600;
  transition: all .25s var(--ease);
  position: relative;
}

.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .09);
}

.main-nav a.active {
  color: var(--blue);
  background: var(--yellow);
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(254, 187, 2, .35);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-btn {
  border: 2px solid var(--yellow);
  color: var(--yellow);
  padding: 6px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .9rem;
  transition: all .25s var(--ease);
}

.lang-btn:hover {
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(254, 187, 2, .4);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
  transition: .3s;
}

/* ================= Hero ================= */
.hero {
  background:
    radial-gradient(1000px 500px at 88% -12%, rgba(254, 187, 2, .22), transparent 55%),
    radial-gradient(800px 500px at 0% 115%, rgba(78, 70, 220, .35), transparent 60%),
    radial-gradient(500px 300px at 45% 30%, rgba(255, 255, 255, .05), transparent 70%),
    linear-gradient(155deg, var(--blue) 0%, var(--blue-dark) 85%);
  color: #fff;
  padding: 90px 0 175px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* decorative dashed orbit echoing the logo */
.hero::before {
  content: "";
  position: absolute;
  inset-inline-end: -140px;
  top: -140px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 3px dashed rgba(254, 187, 2, .35);
  animation: spin 60s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline-start: -180px;
  bottom: -180px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, .12);
  animation: spin 90s linear infinite reverse;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.25;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .35);
}

.hero h1 .accent {
  color: var(--yellow);
}

.hero p {
  margin-top: 16px;
  font-size: 1.15rem;
  color: #c5c4ec;
  max-width: 640px;
  margin-inline: auto;
}

.hero-plane {
  display: inline-block;
  animation: fly 5s ease-in-out infinite;
}

@keyframes fly {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(10px, -12px) rotate(6deg);
  }
}

[dir="rtl"] .hero-plane {
  animation-name: fly-rtl;
}

@keyframes fly-rtl {

  0%,
  100% {
    transform: scaleX(-1) translate(0, 0) rotate(0deg);
  }

  50% {
    transform: scaleX(-1) translate(10px, -12px) rotate(6deg);
  }
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: center;
}

.hero-stat .n {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--yellow);
}

.hero-stat .l {
  font-size: .85rem;
  color: #b9b8e6;
  font-weight: 600;
}

/* ================= Search box ================= */
.search-wrap {
  margin-top: -110px;
  position: relative;
  z-index: 5;
}

.search-box {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .6);
}

.search-tabs {
  display: flex;
  background: #f2f2fa;
  flex-wrap: wrap;
  padding: 8px 8px 0;
  gap: 4px;
}

.search-tab {
  flex: 1;
  min-width: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 12px;
  cursor: pointer;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--muted);
  border-radius: 12px 12px 0 0;
  transition: all .25s var(--ease);
  position: relative;
}

.search-tab svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  transition: .25s;
}

.search-tab:hover {
  color: var(--blue);
}

.search-tab.active {
  background: var(--card);
  color: var(--blue);
  box-shadow: 0 -4px 16px rgba(15, 12, 124, .06);
}

.search-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline: 22%;
  height: 3.5px;
  border-radius: 3px;
  background: var(--yellow);
}

.search-tab.active svg {
  fill: var(--yellow-dark);
}

.search-panel {
  display: none;
  padding: 26px 24px;
}

.search-panel.active {
  display: block;
  animation: fadeUp .35s var(--ease);
}

.search-fields {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: end;
}

.field {
  flex: 1;
  min-width: 165px;
  text-align: start;
}

.field label {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.field input,
.field select {
  width: 100%;
  padding: 12.5px 15px;
  font: inherit;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fafafe;
  transition: all .2s;
  color: var(--ink);
}

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

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 25, 168, .09);
}

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  border-radius: var(--radius-sm);
  padding: 13px 30px;
  transition: all .25s var(--ease);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, #ffce3d 100%);
  color: var(--blue);
  box-shadow: 0 6px 18px rgba(254, 187, 2, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(254, 187, 2, .5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-blue {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 6px 18px rgba(15, 12, 124, .3);
}

.btn-blue:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Trip type radio chips (one-way / round-trip) */
.trip-type {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.radio-chip {
  cursor: pointer;
}

.radio-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-chip span {
  display: inline-block;
  padding: 7px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: #fafafe;
  font-weight: 700;
  font-size: .88rem;
  color: var(--muted);
  transition: all .2s var(--ease);
}

.radio-chip input:checked+span {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: 0 4px 14px rgba(15, 12, 124, .3);
}

.radio-chip:hover span {
  border-color: var(--blue-mid);
}

.trip-type-light .radio-chip span {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .35);
  color: #dcdbf8;
}

.trip-type-light .radio-chip input:checked+span {
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
}

.return-field.hidden {
  display: none;
}

/* ================= Sections ================= */
.section {
  padding: 64px 0 8px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}

.section-head h2 {
  font-size: 1.65rem;
  color: var(--ink);
  font-weight: 800;
  position: relative;
  padding-bottom: 10px;
}

.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  inset-inline-start: 0;
  width: 52px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
}

.section-head .view-all {
  font-weight: 800;
  color: var(--blue-mid);
  font-size: .95rem;
  transition: .2s;
}

.section-head .view-all:hover {
  color: var(--yellow-dark);
}

.grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(262px, 1fr));
}

/* ================= Cards ================= */
.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all .35s var(--ease);
  border: 1px solid rgba(230, 230, 242, .7);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-media {
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 18% 25%, rgba(255, 255, 255, .14) 2px, transparent 2.5px),
    radial-gradient(circle at 78% 65%, rgba(255, 255, 255, .12) 2px, transparent 2.5px),
    radial-gradient(circle at 50% 85%, rgba(255, 255, 255, .1) 1.5px, transparent 2px),
    radial-gradient(circle at 88% 20%, rgba(254, 187, 2, .25) 2px, transparent 2.5px),
    radial-gradient(140% 160% at 80% -20%, var(--blue-mid) 0%, var(--blue) 55%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(9, 7, 71, .35));
}

.card-media svg {
  width: 58px;
  height: 58px;
  fill: var(--yellow);
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .35));
  transition: transform .35s var(--ease);
  position: relative;
  z-index: 1;
}

.card:hover .card-media svg {
  transform: scale(1.14) translateY(-3px);
}

/* Scene photo variant */
.card-media.has-img {
  height: 158px;
}

.card-media.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s var(--ease);
}

.card:hover .card-media.has-img img {
  transform: scale(1.07);
}

.card-media .badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  z-index: 2;
  background: linear-gradient(135deg, var(--yellow), #ffd34f);
  color: var(--blue);
  font-size: .72rem;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
}

.card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.card-title {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--ink);
}

.card-sub {
  color: var(--muted);
  font-size: .88rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}

.chip {
  background: var(--blue-soft);
  color: var(--blue-mid);
  font-size: .74rem;
  font-weight: 800;
  padding: 4px 11px;
  border-radius: 999px;
}

.card-foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px dashed var(--line);
}

.price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue);
}

.price small {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 700;
}

.card-foot .btn {
  padding: 9px 20px;
  font-size: .88rem;
}

.stars {
  color: var(--yellow);
  letter-spacing: 2.5px;
  font-size: .95rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .08);
}

/* Flight route line */
.route {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 6px 0 2px;
}

.route .code {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--blue);
  letter-spacing: .5px;
}

.route .path {
  flex: 1;
  height: 2px;
  min-width: 40px;
  position: relative;
  background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 12px);
}

.route .path::before {
  content: "";
  position: absolute;
  top: -3px;
  inset-inline-start: -2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

.route .path::after {
  content: "✈";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--yellow-dark);
  font-size: 1rem;
}

[dir="rtl"] .route .path::after {
  transform: translateX(-50%) scaleX(-1);
}

.route .time {
  font-size: .82rem;
  color: var(--muted);
  font-weight: 600;
}

/* ================= Why us ================= */
.why {
  background:
    radial-gradient(700px 300px at 90% 0%, rgba(254, 187, 2, .07), transparent 60%),
    #fff;
  margin-top: 64px;
  padding: 64px 0;
  border-top: 1px solid var(--line);
}

.why h2 {
  text-align: center;
  color: var(--ink);
  font-size: 1.65rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.why-item {
  text-align: center;
  padding: 30px 22px;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
}

.why-item:hover {
  background: var(--blue-soft);
  transform: translateY(-4px);
}

.why-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 16px;
  border-radius: 24px;
  background: linear-gradient(140deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 12, 124, .25);
  transform: rotate(-4deg);
  transition: .3s var(--ease);
}

.why-item:hover .why-icon {
  transform: rotate(0deg) scale(1.06);
}

.why-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--yellow);
}

.why-item h3 {
  color: var(--blue);
  margin-bottom: 6px;
  font-size: 1.08rem;
  font-weight: 800;
}

.why-item p {
  color: var(--muted);
  font-size: .92rem;
}

/* ================= Page hero (inner pages) ================= */
.page-hero {
  background:
    radial-gradient(800px 300px at 90% -30%, rgba(254, 187, 2, .18), transparent 60%),
    linear-gradient(155deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 46px 0 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset-inline-end: -100px;
  top: -100px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 2.5px dashed rgba(254, 187, 2, .3);
}

.page-hero h1 {
  font-size: 1.85rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.page-hero .search-inline {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

.page-hero .search-fields {
  justify-content: center;
}

.page-hero .field {
  text-align: start;
  max-width: 260px;
}

.page-hero .field label {
  color: #c5c4ec;
}

.page-hero .field input {
  background: rgba(255, 255, 255, .96);
  border-color: transparent;
}

.listing {
  padding: 44px 0 64px;
}

.result-count {
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 700;
}

.empty {
  background: var(--card);
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 56px 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

/* ================= Booking page ================= */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 28px;
  padding: 48px 0 68px;
  align-items: start;
}

.panel {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border: 1px solid rgba(230, 230, 242, .7);
}

.panel h1,
.panel h2 {
  color: var(--blue);
  font-size: 1.32rem;
  margin-bottom: 6px;
  font-weight: 800;
}

.panel .intro {
  color: var(--muted);
  font-size: .93rem;
  margin-bottom: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.form-grid .full {
  grid-column: 1 / -1;
}

.field textarea {
  width: 100%;
  padding: 12px 15px;
  font: inherit;
  min-height: 95px;
  resize: vertical;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fafafe;
  transition: all .2s;
}

.field textarea:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(29, 25, 168, .09);
}

.error-box {
  background: #fdecec;
  color: #b02a2a;
  border: 1px solid #f5c4c4;
  border-radius: var(--radius-sm);
  padding: 13px 17px;
  margin-bottom: 18px;
  font-weight: 700;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: .93rem;
}

.summary-item:last-of-type {
  border-bottom: 0;
}

.summary-item .k {
  color: var(--muted);
  font-weight: 600;
}

.summary-item .v {
  font-weight: 800;
  text-align: end;
}

.summary-price {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--blue);
  text-align: center;
  margin-top: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--yellow-soft);
  border: 1px dashed var(--yellow);
}

/* ================= Success ================= */
.success-wrap {
  padding: 76px 0;
  text-align: center;
}

.success-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 48px 34px;
  border-top: 5px solid var(--yellow);
}

.success-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(140deg, #e5f9ee, #d1f3e0);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(35, 165, 90, .22);
  animation: pop .5s var(--ease);
}

@keyframes pop {
  0% {
    transform: scale(.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon svg {
  width: 44px;
  height: 44px;
  fill: #23a55a;
}

.success-card h1 {
  color: var(--blue);
  font-size: 1.45rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.ref-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: var(--yellow);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 3px;
  padding: 10px 30px;
  border-radius: 999px;
  margin: 14px 0;
  box-shadow: 0 8px 22px rgba(15, 12, 124, .3);
}

.success-card p {
  color: var(--muted);
}

.success-card .btn {
  margin-top: 24px;
}

/* ================= Footer ================= */
.site-footer {
  background:
    radial-gradient(600px 260px at 10% 0%, rgba(254, 187, 2, .06), transparent 60%),
    var(--blue-dark);
  color: #c5c4ec;
  margin-top: 70px;
}

.footer-grid {
  display: grid;
  gap: 38px;
  grid-template-columns: 2fr 1fr 1.2fr;
  padding: 52px 22px 34px;
}

.footer-about {
  margin-top: 14px;
  font-size: .93rem;
  line-height: 1.8;
}

.site-footer h4 {
  color: var(--yellow);
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: .5px;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: #c5c4ec;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--yellow);
  padding-inline-start: 4px;
}

.footer-contact li {
  display: flex;
  gap: 8px;
  align-items: baseline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 16px 0;
  text-align: center;
  font-size: .85rem;
  color: #9b9ad0;
}

/* ================= Header user button ================= */
.user-btn {
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  transition: .2s;
  white-space: nowrap;
}

.user-btn:hover {
  background: rgba(255, 255, 255, .2);
}

/* ================= Quick-support floating widget ================= */
.support-fab {
  position: fixed;
  bottom: 22px;
  inset-inline-end: 22px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

[dir="rtl"] .support-fab {
  align-items: flex-start;
}

.support-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: linear-gradient(135deg, var(--yellow), #ffce3d);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(254, 187, 2, .45);
  position: relative;
  transition: transform .25s var(--ease);
}

.support-btn:hover {
  transform: scale(1.08);
}

.support-btn svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.support-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--yellow);
  opacity: .5;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .5;
  }

  70% {
    transform: scale(1.55);
    opacity: 0;
  }

  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

.support-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px;
  min-width: 250px;
  border: 1px solid var(--line);
}

.support-menu.open {
  display: flex;
  animation: fadeUp .25s var(--ease);
}

.support-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  color: var(--ink);
  transition: .2s;
}

.support-item small {
  color: var(--muted);
  font-weight: 600;
  margin-inline-start: auto;
  font-size: .75rem;
}

.support-item.wa:hover {
  background: #e8f8ee;
}

.support-item.call:hover {
  background: var(--blue-soft);
}

.support-item.mail:hover {
  background: var(--yellow-soft);
}

.si-ic {
  font-size: 1.2rem;
}

/* ================= Contact page ================= */
.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  padding: 44px 0 20px;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  text-align: center;
  transition: .3s var(--ease);
  border: 1px solid rgba(230, 230, 242, .7);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.contact-ic {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 20px;
  background: linear-gradient(140deg, var(--blue), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(15, 12, 124, .25);
}

.contact-card h3 {
  color: var(--blue);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.contact-card p {
  color: var(--muted);
  font-size: .95rem;
  font-weight: 600;
}

.contact-card .btn {
  margin-top: 14px;
  padding: 9px 22px;
  font-size: .88rem;
}

/* ================= Auth & account ================= */
.auth-wrap {
  padding: 56px 0;
  display: flex;
  justify-content: center;
}

.auth-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
  width: 100%;
  max-width: 440px;
  border-top: 5px solid var(--yellow);
}

.auth-card h1 {
  color: var(--blue);
  font-size: 1.35rem;
  margin-bottom: 4px;
}

.auth-card .intro {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 20px;
}

.auth-card .field {
  margin-bottom: 14px;
}

.auth-alt {
  text-align: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: .9rem;
}

.auth-alt a {
  font-weight: 800;
}

.account-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  padding: 44px 0 64px;
  align-items: start;
}

.points-card {
  background: linear-gradient(145deg, var(--blue), var(--blue-mid));
  color: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.points-card .pts {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--yellow);
}

.points-card .lbl {
  color: #c5c4ec;
  font-weight: 700;
}

.points-card .pending {
  margin-top: 10px;
  font-size: .85rem;
  color: #d8d7f3;
}

.points-card .hint {
  margin-top: 14px;
  font-size: .8rem;
  color: #b9b8e6;
  border-top: 1px dashed rgba(255, 255, 255, .25);
  padding-top: 12px;
}

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.bookings-table th,
.bookings-table td {
  padding: 11px 12px;
  text-align: start;
  border-bottom: 1px solid var(--line);
}

.bookings-table th {
  color: var(--blue);
  font-size: .8rem;
  background: var(--blue-soft);
}

.st {
  padding: 3px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800;
  display: inline-block;
}

.st-new {
  background: #fff4d6;
  color: #9a6b00;
}

.st-confirmed {
  background: #e0f5e9;
  color: #1c7c45;
}

.st-cancelled {
  background: #fde3e3;
  color: #b02a2a;
}

.st-done {
  background: var(--blue-soft);
  color: var(--blue);
}

@media (max-width: 860px) {
  .account-grid {
    grid-template-columns: 1fr;
  }
}

/* Travelpayouts widget container */
.tp-widget {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  min-height: 90px;
  border: 1px solid rgba(230, 230, 242, .7);
}

/* ================= Reveal on scroll ================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero::before,
  .hero::after,
  .hero-plane {
    animation: none;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ================= Responsive ================= */
@media (max-width: 880px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    inset-inline: 0;
    background: var(--blue-dark);
    flex-direction: column;
    padding: 12px 18px 18px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .35);
  }

  .main-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .hero {
    padding: 56px 0 150px;
  }

  .hero-stats {
    gap: 26px;
  }
}

.anchor-disabled {
  pointer-events: none;
  cursor: default;
}