/* ============================================================
   BUSINESS CLASS TRAVELS — Luxury Gold + Black Theme
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --bg: #050505;
  --bg-2: #0b0907;
  --bg-3: #110e09;
  --panel: #14110a;
  --panel-2: #1a160e;
  --line: rgba(212, 175, 55, 0.25);
  --line-strong: rgba(212, 175, 55, 0.55);

  --gold-1: #f6d77a;
  --gold-2: #d4a849;
  --gold-3: #b8862d;
  --gold-4: #8a6420;
  --gold-light: #ffe9a8;
  --gold-glow: rgba(214, 169, 73, 0.4);

  --text: #f1e7d1;
  --text-dim: #b9a983;
  --text-mute: #8a7d5e;
  --white: #fff5dc;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 0 30px rgba(214, 169, 73, 0.18);

  --grad-gold: linear-gradient(135deg, #f6d77a 0%, #d4a849 35%, #b8862d 70%, #8a6420 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(246, 215, 122, 0.18), rgba(184, 134, 45, 0.08));
  --grad-frame: linear-gradient(180deg, #1c1709 0%, #0d0a05 100%);

  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

/* ---------- RESET ---------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ---------- BACKGROUND TEXTURE ---------- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 169, 73, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(184, 134, 45, 0.05), transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-gold {
  background: var(--grad-gold);
  color: #1a1206;
  border: 1px solid var(--gold-1);
  box-shadow: 0 4px 20px rgba(214, 169, 73, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(214, 169, 73, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.btn-gold::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s;
}

.btn-gold:hover::after {
  left: 100%;
}

.btn-outline {
  background: transparent;
  color: var(--gold-1);
  border: 1px solid var(--gold-2);
}

.btn-outline:hover {
  background: rgba(214, 169, 73, 0.1);
  box-shadow: 0 0 20px var(--gold-glow);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: relative;
  z-index: 50;
  background: linear-gradient(180deg, #0a0805 0%, #050402 100%);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 18px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-mark {
  position: relative;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-gold);
  border-radius: 8px;
  box-shadow: 0 0 18px var(--gold-glow);
}

.logo-crown {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: var(--gold-1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.logo-letter {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: #1a1206;
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-1);
}

.logo-tagline {
  font-family: var(--font-serif);
  font-size: 10px;
  font-style: italic;
  color: var(--gold-3);
  margin-top: 3px;
  letter-spacing: 0.5px;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.main-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--grad-gold);
  transition: width 0.3s;
}

.main-nav a:hover {
  color: var(--gold-1);
}

.main-nav a:hover::after {
  width: 100%;
}

/* Header right */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.concierge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-dim);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: all 0.3s;
}

.concierge:hover {
  color: var(--gold-1);
  border-color: var(--gold-2);
}

.concierge i {
  color: var(--gold-2);
  font-size: 14px;
}

.btn-enquire {
  padding: 11px 20px;
  font-size: 11px;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  font-size: 24px;
  color: var(--gold-1);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(180deg, #050402 0%, #0a0703 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(214, 169, 73, 0.18), transparent 50%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 50px 30px 30px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-2);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-accent {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 600;
}

.hero-sub {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Hero trust strip */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.hero-trust i {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-2);
  border-radius: 50%;
  color: var(--gold-1);
  font-size: 13px;
  flex-shrink: 0;
}

.hero-trust span {
  line-height: 1.3;
  color: var(--text-dim);
}

.hero-trust strong {
  color: var(--gold-1);
  display: block;
  font-size: 11px;
  letter-spacing: 0.5px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 460px;
}

.hero-window {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 8% 8% / 30% 30% 8% 8%;
  overflow: hidden;
  background: linear-gradient(180deg, #2a1f0e, #0d0905);
  box-shadow:
    inset 0 0 0 8px rgba(28, 22, 12, 0.9),
    inset 0 0 0 10px var(--gold-3),
    0 0 60px rgba(214, 169, 73, 0.25);
}

.hero-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(214, 169, 73, 0.3), transparent 70%);
  z-index: -1;
  pointer-events: none;
}

/* ============================================================
   SEARCH SECTION
   ============================================================ */
.search-section {
  max-width: 1250px;
  margin: -10px auto 0;
  padding: 0 30px;
  position: relative;
  z-index: 5;
}

.search-frame {
  background: linear-gradient(180deg, #f5e7c0 0%, #e8d4a0 100%);
  border-radius: 8px;
  padding: 22px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--gold-3);
  position: relative;
}

.search-frame::before,
.search-frame::after {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-4), transparent);
}

.search-frame::before {
  left: 8px;
}

.search-frame::after {
  right: 8px;
}

.search-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 18px;
  gap: 20px;
}

.search-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #1a1206;
  letter-spacing: 3px;
  text-align: center;
  white-space: nowrap;
}

.search-title i {
  color: var(--gold-3);
  margin-left: 8px;
}

.trip-types {
  display: flex;
  gap: 22px;
}

.trip-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #3a2a10;
  cursor: pointer;
  font-weight: 500;
}

.trip-radio input {
  display: none;
}

.trip-radio .dot {
  width: 14px;
  height: 14px;
  border: 2px solid var(--gold-4);
  border-radius: 50%;
  position: relative;
  background: #fff;
}

.trip-radio input:checked+.dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--gold-3);
  border-radius: 50%;
}

/* Search fields */
.search-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr 1fr 1.2fr auto;
  gap: 12px;
  align-items: end;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.field label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #4a3617;
  padding-left: 4px;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fffaf0;
  border: 1px solid var(--gold-3);
  border-radius: 4px;
  padding: 9px 12px;
  position: relative;
  transition: box-shadow 0.25s;
}

.input-wrap:focus-within {
  box-shadow: 0 0 0 2px rgba(214, 169, 73, 0.4);
}

.input-wrap>i:first-child {
  color: var(--gold-3);
  font-size: 12px;
}

.input-wrap input,
.input-wrap select {
  border: none;
  outline: none;
  background: transparent;
  font-size: 13px;
  color: #1a1206;
  width: 100%;
  font-weight: 500;
}

.input-wrap input::placeholder {
  color: #8a7d5e;
}

.input-wrap select {
  appearance: none;
  cursor: pointer;
  padding-right: 18px;
}

.chev {
  position: absolute;
  right: 12px;
  color: var(--gold-3);
  font-size: 11px;
  pointer-events: none;
}

.swap-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: #1a1206;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  margin-bottom: 4px;
  transition: transform 0.4s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.swap-btn:hover {
  transform: rotate(180deg);
}

.btn-search {
  background: linear-gradient(135deg, #4a3617, #2a1d08);
  color: var(--gold-1);
  border: 1px solid var(--gold-3);
  padding: 11px 22px;
  font-size: 11px;
  align-self: end;
  margin-bottom: 0;
  height: 40px;
}

.btn-search:hover {
  background: linear-gradient(135deg, #5d4520, #3a280f);
  box-shadow: 0 0 20px var(--gold-glow);
}

/* Search trust strip */
.search-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed rgba(74, 54, 23, 0.3);
}

.search-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
}

.search-trust i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  color: var(--gold-3);
  font-size: 11px;
  flex-shrink: 0;
}

.search-trust strong {
  display: block;
  color: #2a1d08;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.search-trust span {
  color: #5a4520;
  line-height: 1.3;
}

/* ============================================================
   GENERIC SECTION HEADING
   ============================================================ */
.section {
  padding: 60px 30px 30px;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  text-align: center;
}

.section-heading .rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-3), transparent);
  max-width: 250px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold-1);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.section-heading .muted {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-mute);
  font-style: italic;
  margin-top: 4px;
  letter-spacing: 1px;
}

.center-cta {
  text-align: center;
  margin-top: 30px;
}

.link-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-bottom: 1px solid var(--gold-3);
  transition: all 0.3s;
}

.link-cta:hover {
  color: var(--gold-light);
  gap: 14px;
}

/* ============================================================
   CAROUSELS / OFFERS
   ============================================================ */
.carousel-wrap {
  position: relative;
}

.car-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(20, 14, 6, 0.85);
  border: 1px solid var(--gold-3);
  color: var(--gold-1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s;
}

.car-btn:hover {
  background: var(--grad-gold);
  color: #1a1206;
  box-shadow: 0 0 20px var(--gold-glow);
}

.car-btn.prev {
  left: -10px;
}

.car-btn.next {
  right: -10px;
}

/* Offers grid - airline ticket style cards */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

}

.offer-card {
  position: relative;
  background: linear-gradient(180deg, #1a1308 0%, #0a0704 100%);
  border-radius: 60% 60% 12px 12px / 35% 35% 12px 12px;
  overflow: hidden;
  border: 1px solid var(--gold-3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), inset 0 0 0 4px #0a0704, inset 0 0 0 5px var(--gold-4);
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7), 0 0 30px var(--gold-glow), inset 0 0 0 4px #0a0704, inset 0 0 0 5px var(--gold-2);
}

.offer-img {
  position: relative;
  height: 140px;
  overflow: hidden;
  border-radius: inherit;
}

.offer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.offer-card:hover .offer-img img {
  transform: scale(1.08);
}

.offer-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10, 7, 4, 0.95));
}

.offer-body {
  padding: 16px 14px 18px;
  text-align: center;
  position: relative;
}

.offer-body h3 {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--gold-1);
  margin-bottom: 4px;
}

.offer-country {
  font-size: 9px;
  letter-spacing: 2.5px;
  color: var(--text-mute);
  margin-bottom: 8px;
}

.offer-cabin {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(214, 169, 73, 0.15);
  border: 1px solid var(--gold-3);
  border-radius: 3px;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--gold-1);
  margin-bottom: 10px;
}

.offer-from {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-mute);
  margin-bottom: 2px;
}

.offer-price {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.offer-btn {
  display: inline-block;
  padding: 7px 16px;
  background: var(--grad-gold);
  color: #1a1206;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  border-radius: 3px;
  transition: all 0.3s;
}

.offer-btn:hover {
  box-shadow: 0 0 16px var(--gold-glow);
}

/* ============================================================
   HOLIDAYS GRID — boarding pass style
   ============================================================ */
.holidays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============ TICKET CARD ============ */
.holiday-ticket {
  position: relative;
  width: 585px;
  aspect-ratio: 19 / 9;
  background: transparent;
  font-family: 'Inter', sans-serif;
  color: #2a1d0a;
  overflow: hidden;
  container-type: inline-size;
}

.ticket-bg {
  position: absolute;
  inset: 0;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
  pointer-events: none;
}

/* === LEFT MAIN PANEL ===
   Frame's content area (inside golden border):
   approx left edge at ~5%, right perforation at ~73%
   top inner edge at ~6%, bottom at ~92% */
.holiday-ticket .ticket-left {
  position: absolute;
  top: 6%;
  left: 5%;
  width: 67%;
  height: 88%;
  z-index: 2;
}

/* Header - destination name. Globe is at frame's ~(11%, 14%),
   so destination should start to its right at ~17% */
.tk-header {
  position: absolute;
  top: 4%;
  left: 18%;
  right: 0;
}

.tk-destination {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 0.95;
  color: #0a0a0a;
  letter-spacing: 0.5px;
  margin: 0;
  white-space: nowrap;
  padding-left: 12px;
}

/* Image region - upper right of left panel, fades into background */
.tk-image {
  position: absolute;
  top: 20%;
  left: 42%;
  right: 0;
  bottom: 25%;
  border-radius: 4px;
  overflow: hidden;
  z-index: 0;
}

.tk-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tk-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(245, 232, 211, 0.98) 0%,
      rgba(245, 232, 211, 0.55) 18%,
      rgba(245, 232, 211, 0) 38%),
    linear-gradient(180deg,
      rgba(245, 232, 211, 0) 60%,
      rgba(245, 232, 211, 0.7) 100%);
  pointer-events: none;
}

/* Info section - left side, below header */
.tk-info {
  position: absolute;
  top: 32%;
  left: 0;
  width: 38%;
  z-index: 1;
}

.tk-nights {
  margin-bottom: 2cqw;
}

.tk-nights-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(11px, 4cqw, 42px);
  color: #b8893d;
  letter-spacing: 2px;
  line-height: 1;
}

.tk-nights-rule {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 1cqw;
}

.tk-nights-rule span {
  flex: 0 0 auto;
  height: 1px;
  background: #b8893d;
  width: 6cqw;
  max-width: 100px;
}

.tk-nights-rule i {
  color: #b8893d;
  font-style: normal;
  font-size: clamp(7px, 1cqw, 11px);
}

.tk-special-offer {
  display: inline-block;
  background: linear-gradient(180deg, #c8392b, #a82a1f);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: clamp(7px, 1.6cqw, 15px);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 1cqw 2cqw;
  border-radius: 2px;
  margin-bottom: 2.5cqw;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.tk-pricing {
  display: flex;
  align-items: flex-start;
  gap: 3cqw;
}

.tk-was-label,
.tk-now-label {
  font-family: 'Inter', sans-serif;
  font-size: clamp(6px, 1.3cqw, 13px);
  font-weight: 600;
  letter-spacing: 1px;
  color: #2a1d0a;
  margin-bottom: 0.5cqw;
}

.tk-was-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(10px, 2.6cqw, 26px);
  color: #0a0a0a;
  text-decoration: line-through;
  text-decoration-color: #c8392b;
  text-decoration-thickness: 2px;
  white-space: nowrap;
}

.tk-now-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 900;
  font-size: clamp(14px, 5cqw, 52px);
  color: #0a0a0a;
  line-height: 1;
  white-space: nowrap;
}

.tk-tc {
  font-family: 'Inter', sans-serif;
  font-size: clamp(6px, 1.2cqw, 12px);
  color: #2a1d0a;
  margin-top: 0.6cqw;
  font-style: italic;
}

/* Bottom guarantees row */
.tk-guarantees {
  position: absolute;
  bottom: 1%;
  left: -13px;
  right: 0;
  display: flex;
  justify-content: space-around;
  gap: 1cqw;
}

.tk-guarantee {
  display: flex;
  align-items: center;
  gap: 1cqw;
  font-family: 'Inter', sans-serif;
  font-size: clamp(5px, 1.3cqw, 12px);
  font-weight: 700;
  letter-spacing: 0.8px;
  color: #2a1d0a;
  line-height: 1.15;
}

.tk-guarantee i {
  color: #b8893d;
  font-size: clamp(8px, 2.2cqw, 22px);
}

/* === RIGHT STUB PANEL === */
.holiday-ticket .tk-stub {
  position: absolute;
  top: 0;
  right: 0;
  width: 27%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Included list - text aligned to frame's existing icons */
.tk-included {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 0;
  left: 28%;
  right: 6%;
  height: 100%;
}

.tk-included li {
  position: absolute;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(-50%);
}

.tk-included li:nth-child(1) {
  top: 17.5%;
}

.tk-included li:nth-child(2) {
  top: 26.5%;
}

.tk-included li:nth-child(3) {
  top: 35.5%;
}

.tk-included li:nth-child(4) {
  top: 44.5%;
}

.tk-included li:nth-child(5) {
  top: 53%;
}

.tk-included li:nth-child(6) {
  top: 62%;
  display: none;
}

.tk-included strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 5.7px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #2a1d0a;
  line-height: 1.1;
}

.tk-included span {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(4px, 1cqw, 10px);
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #6b5a3d;
  margin-top: 0.3cqw;
  line-height: 1.1;
}

/* Save badge */
.tk-save-badge {
  position: absolute;
  top: 60.9%;
  left: 18px;
  right: 27px;
  background: linear-gradient(180deg, #1a2540, #0d1730);
  color: #d4af67;
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  padding: 0.8cqw 0.5cqw;
  border-radius: 2px;
  z-index: 3;
}

/* Barcode code text */
.tk-barcode-code {
  position: absolute;
  top: 85%;
  left: 10%;
  right: 6%;
  font-family: 'Inter', monospace;
  font-size: clamp(5px, 1.4cqw, 13px);
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  color: #2a1d0a;
}

.tk-barcode-valid {
  position: absolute;
  top: 91%;
  left: 5%;
  right: 6%;
  font-family: 'Inter', sans-serif;
  font-size: clamp(4px, 1cqw, 10px);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  color: #6b5a3d;
}

.tk-footer-cta {
  display: none !important;
  position: absolute;
  top: 94%;
  left: 8%;
  right: 2%;
  font-family: 'Inter', sans-serif;
  font-size: clamp(5px, 1.3cqw, 12px);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  color: #2a1d0a;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 1100px) {
  .holidays-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px) {
  .holidays-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
    gap: 20px;
  }
}

/* ============================================================
   ROUND THE WORLD
   ============================================================ */
.rtw {
  background:
    radial-gradient(ellipse at 60% 50%, rgba(214, 169, 73, 0.15), transparent 60%),
    linear-gradient(180deg, #0a0704 0%, #050402 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 60px 30px;
  max-width: none;
}

.rtw-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 30px;
  align-items: center;
}

.rtw-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold-2);
  margin-bottom: 12px;
}

.rtw-title {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.rtw-italic {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-3);
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.rtw-text {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.rtw-map {
  position: relative;
  height: 240px;
  background: radial-gradient(ellipse at center, #1a1308 0%, transparent 70%);
  border-radius: 8px;
  overflow: hidden;
}

.map-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(214, 169, 73, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 30% 30%, rgba(214, 169, 73, 0.25) 1px, transparent 2px),
    radial-gradient(circle at 50% 60%, rgba(214, 169, 73, 0.3) 1px, transparent 2px),
    radial-gradient(circle at 70% 40%, rgba(214, 169, 73, 0.25) 1px, transparent 2px),
    radial-gradient(circle at 85% 55%, rgba(214, 169, 73, 0.3) 1px, transparent 2px);
  background-size: 100% 100%;
  opacity: 0.5;
}

.map-stars {
  position: absolute;
  inset: 0;
}

.map-stars span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-1);
  box-shadow: 0 0 8px var(--gold-1), 0 0 16px var(--gold-2);
  animation: twinkle 3s infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.map-trail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.map-trail path {
  fill: none;
  stroke: var(--gold-2);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  filter: drop-shadow(0 0 4px var(--gold-2));
  animation: dashFlow 8s linear infinite;
}

@keyframes dashFlow {
  to {
    stroke-dashoffset: -100;
  }
}

.map-plane {
  position: absolute;
  top: 25%;
  left: 75%;
  font-size: 36px;
  color: var(--gold-1);
  filter: drop-shadow(0 0 12px var(--gold-2));
  animation: planeFloat 4s ease-in-out infinite;
  transform: rotate(-15deg);
}

@keyframes planeFloat {

  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }

  50% {
    transform: translateY(-8px) rotate(-12deg);
  }
}

/* ============================================================
   CRUISES
   ============================================================ */
.cruises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  width: 73%;
  margin: 0 auto;
  margin-left: 11rem;
}

.multi-max {



  figure {
    width: 95%;
    height: 39rem;
    position: absolute;
    top: -76px;

    img {
      width: 100%;
      height: 100%;
    }
  }
}







.cruise-card {
  position: relative;
  background: linear-gradient(180deg, #1a1308 0%, #0a0704 100%);
  border: 1px solid var(--gold-3);
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 140px;
  transition: transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}

.cruise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 30px var(--gold-glow);
}

.cruise-info {
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cruise-info h3 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-1);
  margin-bottom: 4px;
  line-height: 1.2;
}

.cruise-info .meta {
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1.5;
}

.cruise-info .meta strong {
  color: var(--gold-2);
  display: block;
}

.cruise-info .from {
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--text-mute);
  margin-top: 6px;
}

.cruise-info .price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--gold-light);
}

.cruise-img {
  position: relative;
  overflow: hidden;
}

.cruise-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.cruise-card:hover .cruise-img img {
  transform: scale(1.08);
}

.cruise-explore {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 12px;
  background: var(--grad-gold);
  color: #1a1206;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.2px;
  border-radius: 3px;
  z-index: 2;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  padding: 50px 30px;
}

.features-frame {
  max-width: 1250px;
  margin: 0 auto;
  background: linear-gradient(180deg, #1a1308 0%, #0e0a05 100%);
  border: 1px solid var(--gold-3);
  border-radius: 8px;
  padding: 28px 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.features-frame::before,
.features-frame::after {
  content: '✦';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-2);
  font-size: 14px;
}

.features-frame::before {
  left: 10px;
}

.features-frame::after {
  right: 10px;
}

.feature {
  text-align: center;
  padding: 0 10px;
  border-right: 1px solid var(--line);
}

.feature:last-child {
  border-right: none;
}

.feature i {
  font-size: 22px;
  color: var(--gold-1);
  margin-bottom: 10px;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  background: rgba(214, 169, 73, 0.05);
}

.feature h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold-1);
  margin-bottom: 6px;
  line-height: 1.2;
}

.feature p {
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.testimonial {
  background: linear-gradient(180deg, #1a1308 0%, #0e0a05 100%);
  border: 1px solid var(--gold-3);
  border-radius: 8px;
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  transition: transform 0.4s, box-shadow 0.4s;
}

.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 24px var(--gold-glow);
}

.test-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--gold-3);
  flex-shrink: 0;
}

.test-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-body {
  flex: 1;
  min-width: 0;
}

.test-stars {
  color: var(--gold-1);
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.test-quote {
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: var(--text);
  line-height: 1.45;
  margin-bottom: 10px;
}

.test-name {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--gold-1);
}

.test-loc {
  font-size: 10px;
  color: var(--text-mute);
  margin-top: 2px;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-strip {
  padding: 30px;
  position: relative;
}

.stats-strip::before,
.stats-strip::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-2), transparent);
  filter: blur(1px);
}

.stats-strip::before {
  top: 0;
}

.stats-strip::after {
  bottom: 0;
}

.stats-frame {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 24px 0;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.stat>i {
  font-size: 32px;
  color: var(--gold-1);
  filter: drop-shadow(0 2px 8px var(--gold-glow));
}

.stat-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.stat-num::after {
  content: 'K+';
  font-size: 22px;
  color: var(--gold-2);
}

.stat-label {
  font-size: 11px;
  color: var(--text-dim);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.partners {
  padding: 30px 30px 50px;
  text-align: center;
  max-width: 1250px;
  margin: 0 auto;
}

.partners-title {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold-1);
  margin-bottom: 24px;
}

.partners-row {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  align-items: center;
}

.partner {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--text-dim);
  text-align: center;
  opacity: 0.85;
  transition: opacity 0.3s, color 0.3s;
  line-height: 1.2;
}

.partner:hover {
  opacity: 1;
  color: var(--gold-1);
}

.partner small {
  display: block;
  font-size: 9px;
  letter-spacing: 2px;
  opacity: 0.7;
}

.partner.emirates {
  color: #d71920;
}

.partner.qatar {
  color: #5c0c2c;
}

.partner.singapore {
  color: #f5b316;
  font-size: 11px;
}

.partner.cathay {
  color: #00665e;
}

.partner.etihad {
  color: #b08a3e;
}

.partner.turkish {
  color: #c70a0a;
  font-size: 11px;
}

.partner.lufthansa {
  color: #05164d;
  font-style: italic;
}

/* ============================================================
   TRUST BADGES (ATOL / IATA)
   ============================================================ */
.trust-badges {
  background: linear-gradient(180deg, #050402 0%, #0a0704 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 36px 30px;
}

.trust-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: center;
}

.badges {
  display: flex;
  gap: 24px;
  align-items: center;
}

.badge-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1206;
  text-align: center;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 0 20px var(--gold-glow);
}

.badge.iata {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold-1);
  letter-spacing: 4px;
}

.badge.iata i {
  font-size: 32px;
  color: var(--gold-2);
}

.trust-text {
  flex: 1;
  min-width: 280px;
}

.trust-text h3 {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold-1);
  margin-bottom: 8px;
  line-height: 1.4;
}

.trust-text p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 0;
  background: linear-gradient(180deg, #0a0704 0%, #050402 100%);
  position: relative;
  padding: 50px 0;
  border-bottom: 1px solid var(--line);
}

.news-side {
  position: relative;
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.news-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.news-side::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(5, 4, 2, 0.9));
}

.news-right::after {
  background: linear-gradient(-90deg, transparent, rgba(5, 4, 2, 0.9));
}

.news-content {
  text-align: center;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.news-content h2 {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--gold-1);
  margin-bottom: 14px;
}

.news-content>p {
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 20px;
  line-height: 1.6;
}

.news-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  margin-bottom: 24px;
}

.news-form input {
  padding: 12px 16px;
  background: rgba(20, 14, 6, 0.7);
  border: 1px solid var(--gold-3);
  border-radius: 4px;
  color: var(--text);
  font-size: 13px;
  outline: none;
  transition: box-shadow 0.3s;
}

.news-form input:focus {
  box-shadow: 0 0 0 2px var(--gold-glow);
}

.news-form input::placeholder {
  color: var(--text-mute);
}

.news-form button {
  width: 100%;
  justify-content: center;
}

.news-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 30px;
  text-align: left;
}

.news-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 11px;
}

.news-perks i {
  color: var(--gold-1);
  font-size: 11px;
  margin-top: 3px;
}

.news-perks strong {
  color: var(--gold-1);
  font-size: 11px;
  letter-spacing: 0.5px;
}

.news-perks div {
  color: var(--text-dim);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050402;
  padding: 50px 30px 0;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1250px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.foot-col h5 {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 2.5px;
  color: var(--gold-1);
  margin-bottom: 18px;
}

.foot-col ul li {
  margin-bottom: 10px;
}

.foot-col ul a {
  font-size: 12px;
  color: var(--text-dim);
  transition: color 0.25s, padding-left 0.25s;
}

.foot-col ul a:hover {
  color: var(--gold-1);
  padding-left: 4px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--text-dim);
}

.contact-list i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  color: var(--gold-1);
  font-size: 11px;
  flex-shrink: 0;
}

.foot-brand .logo {
  margin-bottom: 22px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-3);
  border-radius: 50%;
  color: var(--gold-1);
  font-size: 13px;
  transition: all 0.3s;
}

.socials a:hover {
  background: var(--grad-gold);
  color: #1a1206;
  box-shadow: 0 0 15px var(--gold-glow);
  transform: translateY(-2px);
}

.copyright {
  text-align: center;
  padding: 24px 0;
  margin-top: 40px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .header-inner {
    gap: 18px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav a {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero-title {
    font-size: 60px;
  }

  .search-fields {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .swap-btn {
    display: none;
  }

  .btn-search {
    grid-column: 1/-1;
    justify-content: center;
  }

  .offers-grid,
  .holidays-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cruises-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-frame {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature {
    border-right: none;
  }

  .partners-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    display: none;
  }

  .main-nav.open {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #0a0805;
    padding: 18px;
    border-top: 1px solid var(--line);
    margin-top: 12px;
  }

  .header-right {
    margin-left: auto;
  }

  .mobile-toggle {
    display: block;
  }

  .concierge span {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 320px;
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-trust {
    grid-template-columns: 1fr 1fr;
  }

  .search-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .search-fields {
    grid-template-columns: 1fr 1fr;
  }

  .search-trust {
    grid-template-columns: 1fr 1fr;
  }

  .rtw-inner {
    grid-template-columns: 1fr;
  }

  .stats-frame {
    grid-template-columns: 1fr 1fr;
  }

  .partners-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .news-side {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .header-inner {
    padding: 14px 18px;
  }

  .logo-text {
    display: none;
  }

  .btn-enquire {
    padding: 9px 14px;
    font-size: 10px;
  }

  .hero-inner {
    padding: 30px 18px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .search-section {
    padding: 0 14px;
  }

  .search-frame {
    padding: 18px 16px;
  }

  .search-fields {
    grid-template-columns: 1fr;
  }

  .search-trust {
    grid-template-columns: 1fr;
  }

  .trip-types {
    flex-wrap: wrap;
    gap: 12px;
  }

  .section {
    padding: 40px 18px 20px;
  }

  .section-heading h2 {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .offers-grid,
  .holidays-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .cruises-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .features-frame {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 20px 14px;
  }

  .stats-frame {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .partners-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .news-perks {
    grid-template-columns: 1fr;
  }

  .rtw-title {
    font-size: 28px;
  }

  .car-btn.prev {
    left: -4px;
  }

  .car-btn.next {
    right: -4px;
  }
}

/* ============================================================
   CLIENT PREMIUM ART-DECO HEADER (Same-to-Same)
   ============================================================ */
.client-header {
  position: relative;
  background: #000;
  border: 1px solid #d4a849;
  padding: 12px 24px;
  margin: 12px auto;
  max-width: 1250px;
  box-sizing: border-box;
  z-index: 100;
}

.client-header::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border: 1px solid #d4a849;
  pointer-events: none;
  z-index: 1;
}

/* Corner Decorations */
.deco-corner {
  position: absolute;
  width: 44px;
  height: 44px;
  z-index: 5;
  pointer-events: none;
}

.deco-corner-tl {
  top: 1px;
  left: 1px;
}

.deco-corner-tr {
  top: 1px;
  right: 1px;
}

.deco-corner-bl {
  bottom: 1px;
  left: 1px;
}

.deco-corner-br {
  bottom: 1px;
  right: 1px;
}

/* Inner Layout */
.client-header-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Top Row */
.header-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.brand-identity {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex-shrink: 0;
  width: 250px;
}

.brand-main {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-shield {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.brand-shield img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name-line {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}

.brand-tagline-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-top: 3px;
}

.tagline-line {
  flex: 1;
  height: 1px;
  background: rgba(212, 175, 55, 0.4);
}

.brand-slogan {
  font-family: var(--font-serif);
  font-size: 12px;
  font-style: italic;
  color: #d4a849;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

/* Vertical Dividers */
.top-divider {
  width: 1px;
  height: 92px;
  background: rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

.bottom-divider {
  width: 1px;
  height: 34px;
  background: rgba(212, 175, 55, 0.3);
  flex-shrink: 0;
}

/* Navigation Cards */
.header-nav-cards {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  /* flex: 1; */
  width: 48%;
}

.nav-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 98px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 6px;
  background: rgba(10, 8, 5, 0.6);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
  text-decoration: none;
}

.nav-card:hover {
  border-color: #d4a849;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
  transform: translateY(-2px);
  background: rgba(20, 16, 10, 0.8);
}

.nav-card-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
  transition: transform 0.3s ease;
}

.nav-card-icon img {
  width: 54px;
  height: auto;
  display: block;
}

.nav-card:hover .nav-card-icon {
  transform: scale(1.12);
}

.nav-card-title {
  font-family: var(--font-body);
  font-size: 9px !important;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.25;
}

.nav-card-line {
  width: 14px;
  height: 1.5px;
  background: #d4a849;
  margin-top: 5px;
}

/* Dedicated Phones */
.dedicated-phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 23% !important;
  align-items: center;
}

.phones-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #f6d77a 0%, #d4a849 100%);
  color: #000;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 4px 10px;
  border-radius: 10px;
  width: max-content;
  margin-bottom: 2px;
}

.phones-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: 13px;
  color: #fff;
}

.phone-icon-circle {
  flex: 0 0 24px;
  height: 24px;
  border: 1px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a849;
  font-size: 10px;
  margin-right: 12px;
}

.phone-icon-circle svg {
  width: 11px;
  height: auto;
  max-height: 11px;
  display: block;
}

.phone-label {
  font-weight: 700;
  color: #d4a849;
  font-size: 12px;
  letter-spacing: 0.3px;
  flex: 0 0 140px;
  text-align: left;
  white-space: nowrap;
}

.phone-sep {
  color: #d4a849;
  font-size: 12px;
  opacity: 0.5;
  flex: 0 0 12px;
  text-align: center;
  margin-right: 8px;
}

.phone-number {
  font-weight: 800;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  flex: 0 0 100px;
  text-align: left;
  text-decoration: none;
}

.phone-number:hover {
  color: #ffe9a8;
}

/* Divider Line */
.header-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.25);
  width: 100%;
  margin: 6px 0;
}

/* Bottom Row */
.header-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Enquire & Whatsapp buttons */
.bottom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #f6d77a 0%, #d4a849 50%, #b8862d 100%);
  color: #000;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.8px;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  min-width: 175px;
  box-shadow: 0 4px 12px rgba(214, 169, 73, 0.15);
}

.bottom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(214, 169, 73, 0.35);
}

.btn-text {
  flex: 1;
}

.btn-circle-chevron {
  width: 22px;
  height: 22px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a849;
  font-size: 9px;
  margin-left: 8px;
}

.btn-whatsapp-icon {
  font-size: 20px;
  margin-right: 15px;
  color: #000;
}

/* Contact Info item */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon-circle {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a849;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-text-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.contact-title {
  font-size: 10px;
  color: #d4a849;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.contact-value {
  font-size: 14.5px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value:hover {
  color: #ffe9a8;
}

/* ============================================================
   AIRLINE BANNERS SECTION (Golden Flags with Logos & Fares)
   ============================================================ */
.airline-banners-section {
  background: #000;
  padding: 60px 20px 40px;
  overflow: hidden;
}

.airline-banners-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.banner-frame-img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

.banner-cards-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12% 3.5% 0;
  box-sizing: border-box;
}

.banner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 13.5%;
  text-align: center;
}

.banner-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8% 4%;
  width: 100%;
  box-sizing: border-box;
}

.banner-airline-logo {
  width: 75%;
  max-width: 90px;
  height: auto;
  object-fit: contain;
  margin-bottom: 8%;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.banner-divider-line {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4a849, transparent);
  margin: 4% 0;
}

.banner-tagline {
  font-family: var(--font-body);
  font-size: 0.55vw;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  line-height: 1.5;
  text-transform: uppercase;
  margin: 0;
}

.banner-fare {
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.65vw;
  color: #d4a849;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.banner-fare strong {
  font-size: 0.8vw;
  font-weight: 800;
  color: #f6d77a;
}

/* Responsive for airline banners */
@media (max-width: 1024px) {
  .banner-tagline {
    font-size: 7px;
  }

  .banner-fare {
    font-size: 8px;
  }

  .banner-fare strong {
    font-size: 9px;
  }
}

@media (max-width: 768px) {
  .airline-banners-section {
    padding: 30px 10px 20px;
  }

  .banner-tagline {
    font-size: 5.5px;
  }

  .banner-fare {
    font-size: 6px;
    margin-top: 2px;
  }

  .banner-fare strong {
    font-size: 7px;
  }

  .banner-divider-line {
    width: 16px;
    height: 1px;
  }
}

@media (max-width: 480px) {
  .banner-cards-overlay {
    padding: 14% 2.5% 0;
  }

  .banner-card {
    width: 14%;
  }

  .banner-tagline {
    font-size: 4px;
    letter-spacing: 0.2px;
  }

  .banner-fare {
    font-size: 4.5px;
  }

  .banner-fare strong {
    font-size: 5px;
  }

  .banner-airline-logo {
    max-width: 40px;
  }
}

/* Mobile Toggle */
.client-header-mobile-toggle {
  display: none;
  font-size: 22px;
  color: #d4a849;
  cursor: pointer;
  background: none;
  border: none;
}

/* Drawer overlay menu */
.client-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.client-mobile-menu.open {
  display: block;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: #080705;
  border-left: 1px solid #d4a849;
  box-shadow: -8px 0 25px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  animation: slideInClient 0.25s ease-out;
}

@keyframes slideInClient {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(0);
  }
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-menu-title {
  font-family: var(--font-display);
  font-size: 16px;
  color: #d4a849;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.mobile-menu-close {
  font-size: 26px;
  color: #d4a849;
  cursor: pointer;
  line-height: 1;
}

.mobile-menu-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.2s;
  text-decoration: none;
}

.mobile-nav-links a i {
  color: #d4a849;
  font-size: 14px;
  width: 18px;
}

.mobile-nav-links a:hover {
  background: rgba(212, 175, 55, 0.08);
  color: #d4a849;
}

.mobile-menu-divider {
  height: 1px;
  background: rgba(212, 175, 55, 0.15);
  margin: 8px 0;
}

.mobile-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-section-title {
  font-size: 9px;
  color: rgba(212, 175, 55, 0.7);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mobile-phone-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.m-phone-row {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  align-items: center;
}

.m-label {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.m-value {
  color: #d4a849;
  font-weight: 700;
  text-decoration: none;
}

.mobile-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.m-contact-item i {
  color: #d4a849;
  font-size: 14px;
  width: 16px;
  text-align: center;
}

.m-contact-item div {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.m-contact-item div span {
  font-size: 8px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.m-contact-item div a {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE OVERRIDES
   ============================================================ */
@media (max-width: 1280px) {
  .header-nav-cards {
    gap: 6px;
  }

  .nav-card {
    width: 84px;
    height: 100px;
  }

  .nav-card-icon img {
    width: 42px;
  }

  .nav-card-title {
    font-size: 8px;
  }

  .dedicated-phones {
    width: 240px;
  }
}

@media (max-width: 1150px) {
  .header-nav-cards {
    display: none;
  }

  .dedicated-phones {
    display: none;
  }

  .top-divider {
    display: none;
  }

  .bottom-divider {
    display: none;
  }

  .contact-info-item {
    display: none;
  }

  .client-header-mobile-toggle {
    display: block;
  }

  .header-top-row {
    justify-content: space-between;
    width: 100%;
  }

  .header-bottom-row {
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 600px) {
  .client-header {
    padding: 12px 16px;
  }

  .brand-name-line {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .brand-slogan {
    font-size: 9px;
  }

  .bottom-btn {
    min-width: 135px;
    font-size: 10px;
    padding: 5px 5px 5px 12px;
  }

  .btn-circle-chevron {
    width: 18px;
    height: 18px;
    margin-left: 6px;
  }
}

.con {
  margin-top: 2rem;
}