/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: #2f2f2f;
  background: #f9f3eb;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== VARIABLES ===== */
:root {
  --sand:    #e9d7bf;
  --sand2:   #d4bc9b;
  --cream:   #f9f3eb;
  --white:   #ffffff;
  --navy:    #141741;
  --navy2:   #1e2355;
  --text:    #2f2f2f;
  --muted:   #6e655a;
  --orange:  #ff7a1a;
  --orange2: #ff9d2f;
  --shadow:  0 8px 32px rgba(10,15,30,.10);
  --shadow2: 0 20px 50px rgba(10,15,30,.14);
  --radius:  22px;
  --max:     1180px;
}

/* ===== UTILITIES ===== */
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 80px 0; }
.section-label {
  display: inline-block;
  font-size: .78rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05; color: var(--navy); font-weight: 700;
  margin-bottom: 16px;
}
.section-sub {
  color: var(--muted); line-height: 1.8;
  max-width: 680px; font-size: 1rem;
  margin-bottom: 0;
}
.divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 16px 0; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  border: 0; cursor: pointer; font-family: inherit;
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: #fff; font-weight: 800; font-size: .95rem; letter-spacing: .04em;
  padding: 15px 28px; border-radius: 999px;
  box-shadow: 0 10px 28px rgba(255,122,26,.30);
  transition: transform .2s, box-shadow .2s;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(255,122,26,.38); }

/* Warm beige/brown secondary button for hero */
.btn-warm {
  display: inline-block;
  border: 2px solid rgba(220, 170, 100, 0.55);
  background: rgba(160, 105, 45, 0.22);
  color: #f5ddb8; font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
  cursor: pointer; font-family: inherit;
  letter-spacing: .02em;
}
.btn-warm:hover {
  background: rgba(160, 105, 45, 0.40);
  border-color: rgba(220, 170, 100, 0.85);
  color: #fff;
}

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.10);
  color: #fff; font-weight: 700; font-size: .95rem;
  padding: 14px 26px; border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: background .2s, border-color .2s;
  cursor: pointer; font-family: inherit;
}
.btn-ghost:hover { background: rgba(255,255,255,.20); border-color: rgba(255,255,255,.6); }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy); font-weight: 700; font-size: .9rem;
  padding: 12px 22px; border-radius: 999px;
  transition: background .2s, color .2s;
  cursor: pointer; font-family: inherit;
}
.btn-outline:hover { background: var(--navy); color: #fff; }

/* ===== TOPBAR / NAV ===== */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(233,215,191,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20,23,65,.09);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 16px;
}
/* Larger logo */
.brand img { width: 210px; height: auto; display: block; }

/* desktop menu */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: .86rem; font-weight: 700; color: var(--navy);
  padding: 8px 10px; border-radius: 10px;
  opacity: .82;
  transition: opacity .15s, background .15s;
  white-space: nowrap;
}
.nav-links a:hover { opacity: 1; background: rgba(20,23,65,.06); }
.nav-links .btn { padding: 11px 20px; font-size: .86rem; opacity: 1; }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 42px; height: 42px;
  background: none; border: none; cursor: pointer;
  border-radius: 10px; padding: 6px;
  transition: background .15s;
}
.hamburger:hover { background: rgba(20,23,65,.08); }
.hamburger span {
  display: block; width: 22px; height: 2.5px;
  background: var(--navy); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(20,23,65,.55);
  backdrop-filter: blur(4px);
}
.mobile-menu.open { display: block; }
.mobile-drawer {
  position: absolute; top: 0; right: 0;
  width: min(320px, 88vw); height: 100%;
  background: var(--cream);
  box-shadow: -8px 0 40px rgba(10,15,30,.18);
  display: flex; flex-direction: column;
  padding: 28px 24px;
  overflow-y: auto;
}
.drawer-logo { margin-bottom: 32px; }
.drawer-logo img { width: 150px; }
.drawer-links { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.drawer-links a {
  font-size: 1.05rem; font-weight: 700; color: var(--navy);
  padding: 13px 14px; border-radius: 14px;
  transition: background .15s;
}
.drawer-links a:hover { background: rgba(20,23,65,.07); }
.drawer-links .btn { margin-top: 12px; width: 100%; }
.drawer-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: none; background: rgba(20,23,65,.08);
  font-size: 1.1rem; cursor: pointer;
  display: grid; place-items: center; color: var(--navy);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex; align-items: center;
  background:
    linear-gradient(110deg, rgba(8,10,26,.78) 0%, rgba(8,10,26,.44) 55%, rgba(8,10,26,.20) 100%),
    url('../images/hero/hero-img3.jpg') center/cover no-repeat;
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, var(--cream), transparent);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 80px 0 120px;
  max-width: 760px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: .93; font-weight: 700;
  margin-bottom: 14px;
}
.hero-subtitle {
  font-size: 1rem; font-weight: 600;
  color: rgba(255,255,255,.78);
  letter-spacing: .02em;
  margin-bottom: 22px;
  line-height: 1.5;
}
.hero-text {
  font-size: 1.06rem; line-height: 1.78;
  color: rgba(255,255,255,.88);
  max-width: 600px;
  margin-bottom: 16px;
}
.hero-text:last-of-type { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ===== VIDEO SECTION ===== */
.videos-section { background: var(--navy); padding: 48px 0; }
.video-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  justify-items: center;
}
.video-wrap {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow2);
  padding-bottom: 56.25%;
  height: 0;
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
/* �0�9ll�� (9:16) Shorts form��tum */
.video-wrap--short {
  padding-bottom: 0;
  height: auto;
  aspect-ratio: 9 / 16;
  max-width: 300px;
  width: 100%;
}
.video-wrap--short iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ===== HOME INTRO ===== */
.home-intro { background: var(--cream); }
.intro-stack {
  display: flex; flex-direction: column;
  align-items: center; gap: 40px;
}
.intro-img {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow2); width: 100%;
}
.intro-img img { width: 100%; height: auto; object-fit: cover; display: block; }
.intro-text-centered {
  text-align: center; max-width: 740px;
}
.intro-text-centered .divider { margin: 16px auto; }
.intro-text .section-title, .intro-text-centered .section-title { color: var(--navy); }
.intro-text p, .intro-text-centered p { color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.intro-text p:last-of-type, .intro-text-centered p:last-of-type { margin-bottom: 28px; }

/* ===== TOUR CARDS ===== */
.tours-section { background: var(--white); }
.tour-grid {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  gap: 18px;
}
.tour-card {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1px solid rgba(20,23,65,.06);
  display: flex; flex-direction: column; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow2); }
.tour-card img { width: 100%; height: 200px; object-fit: cover; }
.tour-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-name { font-weight: 800; font-size: 1rem; color: var(--navy); line-height: 1.3; }
.price-row { font-weight: 700; font-size: .92rem; color: var(--text); }
.price-row span { color: var(--muted); font-weight: 500; font-size: .85rem; display: block; }
.tour-body .btn { margin-top: auto; display: block; text-align: center; font-size: .86rem; padding: 11px 14px; }

/* ===== DESERT STOPS / HIGHLIGHTS ===== */
.highlights-section { background: var(--cream); }
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}
.highlight-card {
  grid-column: span 2;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow2);
}
.highlight-card:nth-child(4),
.highlight-card:nth-child(5),
.highlight-card--center {
  grid-column: span 3;
  max-width: none;
  width: 100%;
  justify-self: stretch;
}
.highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.highlight-card--echo img { object-position: right center; }
.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,15,30,.88) 0%, rgba(10,15,30,.18) 55%);
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}
.highlight-overlay .num {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.highlight-overlay h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.05;
}
.highlight-overlay p {
  font-size: .88rem;
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 95%;
}

/* ===== TOURS INFO ===== */
.tours-info-section { background: var(--white); }
.info-tabs {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 36px;
}
.info-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(20,23,65,.06);
  box-shadow: var(--shadow);
}
.info-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 8px;
}
.info-card .time-badge {
  display: inline-block;
  background: var(--orange); color: #fff;
  font-size: .78rem; font-weight: 800; letter-spacing: .08em;
  padding: 5px 12px; border-radius: 999px; margin-bottom: 16px;
}
.info-card ul { padding-left: 0; }
.info-card ul li {
  position: relative; padding-left: 22px;
  font-size: .94rem; line-height: 1.75; color: var(--muted);
  margin-bottom: 6px;
}
.info-card ul li::before {
  content: '\2192'; position: absolute; left: 0; color: var(--orange); font-weight: 700;
}
.info-note {
  margin-top: 16px; padding: 14px 16px; border-radius: 14px;
  background: rgba(255,122,26,.07); border: 1px solid rgba(255,122,26,.16);
  color: #5f4632; font-size: .9rem; line-height: 1.7;
}

/* ===== PRICES ===== */
.prices-section { background: var(--cream); }
.price-wrapper {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 36px;
}
.price-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.price-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--navy); margin-bottom: 18px;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table td {
  padding: 9px 0; font-size: .94rem;
  border-bottom: 1px solid rgba(20,23,65,.07);
  color: var(--muted);
}
.price-table td:last-child { text-align: right; font-weight: 700; color: var(--navy); }
.price-table tr:last-child td { border-bottom: none; }
.payment-block {
  margin-top: 28px; background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(20,23,65,.06);
}
.payment-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--navy); margin-bottom: 18px;
}
.bank-row {
  background: #fff7ed; border: 1px solid rgba(255,122,26,.18);
  border-radius: 16px; padding: 16px 18px;
  font-size: .93rem; line-height: 1.9; color: #5f4632;
  margin: 14px 0;
}
.payment-block ul li {
  position: relative; padding-left: 20px;
  font-size: .95rem; line-height: 1.8; color: var(--muted);
  margin-bottom: 6px;
}
.payment-block ul li::before { content: '\2022'; position: absolute; left: 0; color: var(--orange); }

/* ===== GOOD TO KNOW ===== */
.know-section { background: var(--white); }
.know-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 36px;
}
.know-card {
  background: var(--cream); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.know-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; color: var(--navy); margin-bottom: 18px;
}
.know-card ul { display: grid; gap: 10px; }
.know-card ul li {
  position: relative; padding-left: 24px;
  font-size: .95rem; line-height: 1.7; color: var(--muted);
}
.know-card ul li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--orange); font-weight: 800;
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--cream); }
.gallery-grid {
  column-count: 3;
  column-gap: 16px;
  margin-top: 36px;
}
.g-item {
  position: relative;
  display: block;
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  cursor: zoom-in;
  background: #e8dccb;
}
.g-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease, filter .25s ease;
}
.g-item:hover img { transform: scale(1.03); filter: saturate(1.02); }
.g-cap {
  position: absolute; left: 14px; bottom: 14px;
  background: rgba(10,15,30,.55); color: #fff;
  padding: 8px 14px; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  backdrop-filter: blur(6px);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 26, .92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
  z-index: 200;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-content {
  position: relative;
  max-width: min(1100px, 100%);
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lightbox-content img {
  max-width: min(1100px, calc(100vw - 120px));
  max-height: calc(100vh - 150px);
  width: auto;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
}
.lightbox-caption {
  color: rgba(255,255,255,.9);
  font-size: .95rem;
  line-height: 1.5;
  text-align: center;
}
.lightbox-close,
.lightbox-nav {
  position: absolute;
  border: none;
  color: #fff;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.lightbox-close {
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.9rem;
  line-height: 1;
}
.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.7rem;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-close:hover,
.lightbox-nav:hover { background: rgba(255,255,255,.22); }

/* ===== REVIEW ===== */
.review-section {
  background:
    linear-gradient(135deg, rgba(20,23,65,.94), rgba(20,23,65,.84)),
    url('../images/gallery/gallery-bedouin-camp.png') center/cover no-repeat;
  color: #fff;
}
.review-section .section-label { color: rgba(255,200,130,.9); }
.review-section .section-title { color: #fff; }
.review-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 18px;
  margin-top: 36px;
}
.review-card {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 26px; backdrop-filter: blur(8px);
}
.review-stars { color: #ffd67b; font-size: 1.1rem; letter-spacing: .12em; margin-bottom: 14px; }
.review-card p { line-height: 1.8; color: rgba(255,255,255,.88); font-size: .96rem; }
.review-card cite { display: block; margin-top: 16px; font-style: normal; font-weight: 700; color: rgba(255,255,255,.55); font-size: .88rem; }
.review-cta { margin-top: 36px; text-align: center; }

/* ===== BOOKING FORM (full width) ===== */
.booking-section { background: var(--cream); }
.form-card-full {
  background: var(--white); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow2);
  border: 1px solid rgba(20,23,65,.06);
  margin-top: 36px;
  max-width: 860px;
}
.form-card-full h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--navy); margin-bottom: 6px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.f-field { display: grid; gap: 6px; }
.f-field.full { grid-column: 1 / -1; }
label {
  font-size: .86rem; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.label-note { font-weight: 500; color: var(--muted); font-size: .82rem; }
input, select, textarea {
  width: 100%; border: 1.5px solid rgba(20,23,65,.12); border-radius: 14px;
  padding: 13px 15px; font: inherit; font-size: .96rem;
  color: var(--text); background: #fff;
  transition: border-color .2s;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--orange);
}
textarea { min-height: 110px; resize: vertical; }
.form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.form-actions .btn { font-size: .95rem; padding: 15px 32px; }
.form-actions .btn[disabled] {
  opacity: .72;
  cursor: wait;
  transform: none;
  box-shadow: 0 10px 28px rgba(255,122,26,.18);
}
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.code-box {
  display: none; margin-top: 20px; padding: 20px 22px; border-radius: 16px;
  background: #fff7ed; border: 1px solid rgba(255,122,26,.20);
  color: #5f4632; line-height: 1.9; font-size: .93rem;
}
.code-box.is-success {
  display: block;
  background: #fff7ed;
  border-color: rgba(255,122,26,.20);
  color: #5f4632;
}
.code-box.is-error {
  display: block;
  background: #fff1f0;
  border-color: rgba(204, 59, 49, .22);
  color: #8c2c24;
}
.code-box strong {
  color: var(--navy);
}

/* ===== CONTACT ===== */
.contact-section { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 28px;
  margin-top: 36px;
  align-items: stretch;
}
.contact-card {
  background: var(--cream); border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(20,23,65,.06);
}
.contact-body { padding: 32px; }
.c-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 0; border-top: 1px solid rgba(20,23,65,.08);
}
.c-item:first-child { border-top: none; padding-top: 0; }
.c-icon {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: #fff3e8; color: var(--orange);
  display: grid; place-items: center;
  font-size: 1rem; font-weight: 800;
}
.c-item-text strong { display: block; color: var(--navy); font-size: .94rem; margin-bottom: 3px; }
.c-item-text span { color: var(--muted); font-size: .9rem; line-height: 1.6; }
.c-item-text a { color: var(--orange); text-decoration: underline; }
.map-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); color: rgba(255,255,255,.60);
  padding: 44px 0 32px;
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer img { width: 170px; filter: brightness(0) invert(1) opacity(.75); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,.55); font-size: .86rem;
  transition: color .15s; font-weight: 600;
}
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-meta {
  display: flex; flex-wrap: wrap; gap: 12px 28px;
  font-size: .88rem; color: rgba(255,255,255,.50);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-meta a { color: rgba(255,200,120,.75); }
.footer-meta a:hover { color: rgba(255,200,120,1); }
.footer-copy {
  font-size: .84rem; text-align: center;
  padding-top: 16px;
  color: rgba(255,255,255,.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .tour-grid { grid-template-columns: repeat(3,1fr); }
  .price-wrapper { grid-template-columns: 1fr 1fr; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .highlight-card,
  .highlight-card:nth-child(4),
  .highlight-card:nth-child(5),
  .highlight-card--center {
    grid-column: span 1;
  }
  .review-grid { grid-template-columns: 1fr 1fr; }
  .brand img { width: 180px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .info-tabs { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .know-grid { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 2; }
  .section { padding: 60px 0; }
  .video-grid { grid-template-columns: 1fr; gap: 16px; align-items: center; justify-items: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 60px 0 100px; }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .tour-grid { grid-template-columns: 1fr 1fr; }
  .price-wrapper { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .highlight-card,
  .highlight-card:nth-child(4),
  .highlight-card:nth-child(5),
  .highlight-card--center {
    grid-column: span 1;
    aspect-ratio: 16 / 10;
  }
  .highlight-overlay { padding: 18px; }
  .highlight-overlay p { font-size: .85rem; line-height: 1.5; }
  .review-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .f-field.full { grid-column: 1; }
  .gallery-grid { column-count: 1; }
  .lightbox { padding: 20px 14px 32px; }
  .lightbox-content img { max-width: calc(100vw - 28px); max-height: calc(100vh - 170px); }
  .lightbox-nav { width: 44px; height: 44px; font-size: 1.4rem; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .brand img { width: 160px; }
}

@media (max-width: 480px) {
  .tour-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .brand img { width: 140px; }
  .hero-subtitle { font-size: .88rem; }
  .section { padding: 50px 0; }
  .form-card-full { padding: 24px 18px; }
}
