/* ==========================================================
   TOUR PAGE STYLES  |  EgypTravelHub
   Works alongside styles.css
   ========================================================== */

/* ---- Atmospheric body (same system as destination pages) ---- */
body {
  background:
    radial-gradient(ellipse 90% 60% at 5% 15%,  rgba(200,140,14,0.08)  0%, transparent 55%),
    radial-gradient(ellipse 70% 70% at 94% 80%,  rgba(120,38,38,0.06)   0%, transparent 55%),
    radial-gradient(ellipse 65% 50% at 50% 40%,  rgba(8,11,28,0.40)     0%, transparent 62%),
    radial-gradient(ellipse 100% 75% at 35% 98%, rgba(14,9,5,0.45)      0%, transparent 60%),
    #09080b;
  background-attachment: fixed;
}

/* ---- Particle layer (same as destination pages) ---- */
#particle-layer {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9998; overflow: hidden;
}
.dest-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(201,146,26,0.55);
  box-shadow: 0 0 6px 1px rgba(201,146,26,0.25);
  animation-name: particle-rise;
  animation-timing-function: linear;
}
@keyframes particle-rise {
  0%   { transform: translateY(0)   translateX(0);    opacity: 0; }
  8%   { opacity: 0.7; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100vh) translateX(var(--dx, 0px)); opacity: 0; }
}

/* ========================================================
   HERO
   ======================================================== */
.t-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.t-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.t-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform-origin: center;
  animation: hero-slow-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-slow-zoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}
.t-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(0deg,   rgba(9,8,11,0.97)  0%,  rgba(9,8,11,0.55)  40%,  rgba(9,8,11,0.20)  70%, transparent 100%),
    linear-gradient(90deg,  rgba(9,8,11,0.40)  0%,  transparent 60%);
}
.t-hero-ghost {
  position: absolute; z-index: 1;
  bottom: 6%;
  right: -0.02em;
  font-family: 'Playfair Display', serif;
  font-size: clamp(7rem, 18vw, 20rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,146,26,0.10);
  letter-spacing: -0.02em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.t-hero-content {
  position: relative; z-index: 2;
  width: 100%; padding-bottom: 72px;
}
.t-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,146,26,0.7);
  margin-bottom: 22px;
}
.t-breadcrumb a { color: inherit; text-decoration: none; }
.t-breadcrumb a:hover { color: var(--gold-light); }
.t-breadcrumb span.sep { opacity: 0.4; }
.t-hero-content .kicker {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.t-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
  max-width: 800px;
}
.t-hero-content h1 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
}
.t-hero-tagline {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 36px;
}
.t-hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.t-hero-stats {
  display: flex; gap: 0; flex-wrap: wrap;
  border-top: 1px solid rgba(201,146,26,0.20);
  padding-top: 28px;
  width: 100%;
}
.t-hero-stats > div {
  display: flex; flex-direction: column;
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(201,146,26,0.15);
}
.t-hero-stats > div:last-child { border-right: none; }
.t-hero-stats strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  line-height: 1;
}
.t-hero-stats span {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 6px;
}

/* ========================================================
   ROUTE STRIP
   ======================================================== */
.t-route {
  background: rgba(255,255,255,0.025);
  border-top: 1px solid rgba(201,146,26,0.12);
  border-bottom: 1px solid rgba(201,146,26,0.12);
  padding: 36px 0;
  position: relative; z-index: 2;
}
.t-route-label {
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201,146,26,0.6);
  text-align: center;
  margin-bottom: 28px;
}
.t-route-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  padding: 0 24px;
}
.t-stop {
  display: flex; flex-direction: column; align-items: center;
  flex-shrink: 0;
  min-width: 110px;
}
.t-stop-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(201,146,26,0.12);
  border: 1.5px solid rgba(201,146,26,0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
  position: relative; z-index: 1;
  margin-bottom: 10px;
}
.t-stop-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.82rem; font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: 4px;
}
.t-stop-sub {
  font-size: 0.64rem; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(201,146,26,0.65);
  text-align: center;
}
.t-route-line {
  flex: 1; min-width: 40px; max-width: 100px;
  height: 1.5px;
  background: repeating-linear-gradient(
    90deg,
    rgba(201,146,26,0.45) 0px,
    rgba(201,146,26,0.45) 6px,
    transparent 6px,
    transparent 14px
  );
  margin-top: 23px;
  flex-shrink: 1;
}

/* ========================================================
   BODY LAYOUT
   ======================================================== */
.t-body { padding: 80px 0 120px; }
.t-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.t-main { display: flex; flex-direction: column; gap: 96px; }

/* section heads inside tour */
.t-section-head { margin-bottom: 40px; }
.t-section-head .kicker { color: var(--gold-light); }
.t-section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #fff;
  margin-top: 10px;
}
.t-section-head h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
}

/* ---- Overview ---- */
.t-overview-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: start;
}
.t-overview-body p {
  color: rgba(255,255,255,0.68);
  line-height: 1.85;
  font-size: 0.97rem;
  margin-bottom: 18px;
}
.t-highlights {
  display: grid;
  gap: 10px;
}
.t-highlights li {
  display: flex; align-items: flex-start; gap: 12px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  line-height: 1.55;
}
.t-highlights li::before {
  content: '✦';
  color: var(--gold-light);
  font-size: 0.6rem;
  flex-shrink: 0;
  margin-top: 4px;
}

/* ---- Day accordion ---- */
.t-days { display: flex; flex-direction: column; gap: 0; }
.t-day {
  border-bottom: 1px solid rgba(201,146,26,0.10);
}
.t-day:first-child { border-top: 1px solid rgba(201,146,26,0.10); }
.t-day-trigger {
  width: 100%;
  background: none; border: none;
  display: flex; align-items: center; gap: 20px;
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s;
  border-radius: 8px;
  list-style: none;
  -webkit-appearance: none;
}
.t-day-trigger:hover { background: rgba(201,146,26,0.03); }
.t-day--open .t-day-trigger { background: rgba(201,146,26,0.04); }
.t-day-num {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(201,146,26,0.35);
  background: rgba(201,146,26,0.06);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem; font-weight: 700;
  color: var(--gold-light);
  transition: background 0.3s, border-color 0.3s;
}
.t-day--open .t-day-num,
.t-day-trigger:hover .t-day-num {
  background: rgba(201,146,26,0.18);
  border-color: rgba(201,146,26,0.7);
}
.t-day-meta { flex: 1; }
.t-day-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.t-day-loc {
  display: flex; align-items: center; gap: 6px;
  margin-top: 5px;
}
.t-day-loc-badge {
  font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(201,146,26,0.75);
}
.t-day-loc-badge + .t-day-loc-badge::before {
  content: '·'; margin-right: 6px; color: rgba(255,255,255,0.25);
}
.t-day-meals {
  display: flex; gap: 6px; flex-shrink: 0;
  margin-right: 4px;
}
.t-meal-tag {
  font-size: 0.58rem; letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.1);
}
.t-meal-tag.active {
  background: rgba(201,146,26,0.14);
  color: rgba(201,146,26,0.85);
  border-color: rgba(201,146,26,0.3);
}
.t-day-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  color: rgba(201,146,26,0.5);
  transition: transform 0.35s;
}
.t-day--open .t-day-chevron { transform: rotate(180deg); }
.t-day-body {
  padding: 0 0 28px 64px;
  display: none;
}
/* smooth open */
.t-day--open .t-day-body { display: block; }
.t-day-body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.t-day-activities {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}
.t-day-activities li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}
.t-day-activities li .act-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(201,146,26,0.6);
  flex-shrink: 0; margin-top: 7px;
}
.t-day-optional {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(201,146,26,0.6);
  margin-top: 16px;
  padding: 5px 12px;
  border: 1px dashed rgba(201,146,26,0.3);
  border-radius: 20px;
}

/* ---- Stays / Accommodation ---- */
.t-stays-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-stay-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,146,26,0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.35s;
}
.t-stay-card:hover {
  border-color: rgba(201,146,26,0.4);
  transform: translateY(-4px);
}
.t-stay-img {
  height: 160px; overflow: hidden; position: relative;
}
.t-stay-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s;
}
.t-stay-card:hover .t-stay-img img { transform: scale(1.06); }
.t-stay-img-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
}
.t-stay-body { padding: 22px 20px; }
.t-stay-nights {
  font-size: 0.64rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,146,26,0.7);
  margin-bottom: 6px;
}
.t-stay-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.t-stay-stars {
  color: rgba(201,146,26,0.8);
  font-size: 0.8rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.t-stay-meal {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ---- Includes ---- */
.t-includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.t-includes-col {
  background: rgba(255,255,255,0.025);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(201,146,26,0.10);
}
.t-includes-col h5 {
  font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 10px;
}
.t-includes-col.inc h5 { color: rgba(130,200,130,0.85); }
.t-includes-col.exc h5 { color: rgba(200,100,100,0.75); }
.t-includes-col h5::before {
  content: '';
  display: block; width: 28px; height: 1.5px;
}
.t-includes-col.inc h5::before { background: rgba(130,200,130,0.5); }
.t-includes-col.exc h5::before { background: rgba(200,100,100,0.4); }
.t-includes-list { display: grid; gap: 14px; }
.t-includes-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}
.t-inc-icon {
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  margin-top: 1px;
}
.t-includes-col.inc .t-inc-icon {
  background: rgba(130,200,130,0.12);
  color: rgba(130,200,130,0.9);
}
.t-includes-col.exc .t-inc-icon {
  background: rgba(200,100,100,0.10);
  color: rgba(200,100,100,0.75);
}

/* ---- Add-ons ---- */
.t-addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-addon-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,146,26,0.10);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.3s, background 0.3s, transform 0.35s;
}
.t-addon-card:hover {
  border-color: rgba(201,146,26,0.38);
  background: rgba(201,146,26,0.04);
  transform: translateY(-4px);
}
.t-addon-glyph {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 14px;
  line-height: 1;
}
.t-addon-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.97rem; font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.t-addon-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ---- Who Is This For ---- */
.t-traveler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.t-traveler-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,146,26,0.10);
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.t-traveler-card:hover {
  border-color: rgba(201,146,26,0.35);
  transform: translateY(-4px);
}
.t-traveler-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}
.t-traveler-card h4 {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
}
.t-traveler-card p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.55;
}

/* ---- Related Tours ---- */
.t-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-related-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(201,146,26,0.10);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.35s, transform 0.35s;
}
.t-related-card:hover {
  border-color: rgba(201,146,26,0.4);
  transform: translateY(-5px);
}
.t-related-img {
  height: 180px; overflow: hidden;
}
.t-related-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s;
}
.t-related-card:hover .t-related-img img { transform: scale(1.07); }
.t-related-body { padding: 20px; }
.t-related-meta {
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(201,146,26,0.7);
  margin-bottom: 8px;
}
.t-related-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: #fff;
  line-height: 1.3;
}

/* ---- Sidebar / Booking card ---- */
.t-sidebar { position: sticky; top: 110px; }
.t-booking-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,146,26,0.22);
  border-radius: 20px;
  padding: 36px 30px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.t-booking-label {
  font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(201,146,26,0.65);
  margin-bottom: 6px;
  display: block;
}
.t-booking-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.t-booking-price span {
  font-size: 1rem;
  color: rgba(201,146,26,0.8);
  font-weight: 400;
}
.t-booking-per {
  font-size: 0.72rem; letter-spacing: 1px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
  display: block;
}
.t-booking-divider {
  border: none;
  border-top: 1px solid rgba(201,146,26,0.12);
  margin: 24px 0;
}
.t-booking-facts { display: grid; gap: 14px; margin-bottom: 28px; }
.t-booking-fact {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.84rem;
}
.t-booking-fact .bf-label { color: rgba(255,255,255,0.4); }
.t-booking-fact .bf-value {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-align: right;
}
.t-booking-card .btn {
  width: 100%; justify-content: center;
  margin-bottom: 12px;
}
.t-booking-note {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.6;
}
.t-booking-note a { color: rgba(201,146,26,0.65); text-decoration: underline; }

/* ---- Tour CTA (bottom) ---- */
.t-cta {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(201,146,26,0.12);
  border-bottom: 1px solid rgba(201,146,26,0.12);
  padding: 96px 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.t-cta-ghost {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(5rem, 18vw, 16rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,146,26,0.06);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.t-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.t-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  color: #fff; margin-bottom: 18px;
}
.t-cta h2 em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-light);
}
.t-cta p {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 36px;
}
.t-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Reveal animations ---- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; transition-delay: var(--d, 0s); }
[data-reveal="scale"] { transform: scale(0.96) translateY(16px); }
[data-reveal="left"]  { transform: translateX(-28px); }
[data-reveal="right"] { transform: translateX(28px); }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ========================================================
   RESPONSIVE
   ======================================================== */
@media (max-width: 1024px) {
  .t-layout { grid-template-columns: 1fr; }
  .t-sidebar { position: static; }
  .t-booking-card { max-width: 480px; }
  .t-stays-grid { grid-template-columns: 1fr 1fr; }
  .t-traveler-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .t-hero { min-height: 100svh; align-items: flex-start; }
  .t-hero-content { padding-top: 100px; padding-bottom: 52px; }
  .t-overview-grid { grid-template-columns: 1fr; }
  .t-includes-grid { grid-template-columns: 1fr; }
  .t-addons-grid { grid-template-columns: 1fr; }
  .t-related-grid { grid-template-columns: 1fr; }
  .t-stays-grid { grid-template-columns: 1fr; }
  .t-traveler-grid { grid-template-columns: 1fr 1fr; }
  .t-hero-stats { gap: 20px; flex-wrap: wrap; padding-top: 20px; }
  .t-hero-stats > div { border-right: none; padding-right: 0; margin-right: 16px; }
  .t-hero-tagline { font-size: 0.95rem; margin-bottom: 24px; }
  .t-hero-actions { margin-bottom: 28px; }
  .t-day-body { padding-left: 20px; }
}

/* ========================================================
   MEGA MENU  (copied from destination.css so tour pages
   don't need that file)
   ======================================================== */
.nav-item-mega { position: relative; }
.mega-trigger { display:flex; align-items:center; gap:5px; cursor:pointer; }
.mega-trigger svg { width:10px; height:10px; transition:transform 0.3s ease; }
.nav-item-mega:hover .mega-trigger svg,
.nav-item-mega.mega-open .mega-trigger svg { transform:rotate(180deg); }
.nav-item-mega::after {
  content:''; position:absolute;
  top:100%; left:-20px; right:-20px; height:20px; background:transparent;
}
.mega-menu {
  position:absolute; top:calc(100% + 2px);
  left:50%; transform:translateX(-50%) translateY(-6px);
  width:860px;
  background:var(--navy-2);
  border:1px solid rgba(201,146,26,0.18);
  border-top:2px solid var(--gold);
  box-shadow:0 40px 100px rgba(0,0,0,0.85);
  opacity:0; visibility:hidden;
  transition:opacity 0.26s ease, transform 0.26s ease, visibility 0.26s;
  z-index:9000; pointer-events:none;
}
.nav-item-mega:hover .mega-menu,
.nav-item-mega.mega-open .mega-menu {
  opacity:1; visibility:visible;
  transform:translateX(-50%) translateY(0);
  pointer-events:auto;
}
.mega-header {
  padding:22px 32px 16px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  display:flex; align-items:baseline; gap:14px;
}
.mega-header-kicker {
  font-family:'Poppins',sans-serif;
  font-size:0.62rem; font-weight:600;
  letter-spacing:0.22em; text-transform:uppercase; color:var(--gold);
}
.mega-header-sub {
  font-family:'Cormorant Garamond',serif;
  font-size:1rem; font-style:italic; color:rgba(255,255,255,0.35);
}
.mega-grid { display:grid; grid-template-columns:repeat(3,1fr); padding:10px; gap:2px; }
.mega-item {
  display:flex; align-items:flex-start; gap:14px;
  padding:18px 20px; text-decoration:none;
  border-radius:4px; transition:background 0.2s;
}
.mega-item:hover { background:rgba(201,146,26,0.07); }
.mega-num {
  font-family:'Cormorant Garamond',serif;
  font-size:1.3rem; font-style:italic;
  color:var(--gold); opacity:0.5; flex-shrink:0; min-width:22px; line-height:1.1;
}
.mega-name {
  font-family:'Playfair Display',serif;
  font-size:0.88rem; font-weight:600;
  color:var(--sand); display:block; margin-bottom:3px; transition:color 0.2s;
}
.mega-item:hover .mega-name { color:var(--gold-light); }
.mega-desc {
  font-family:'Poppins',sans-serif;
  font-size:0.68rem; color:var(--muted-light); line-height:1.5;
}
@media (max-width:1024px) {
  .mega-menu { width:calc(100vw - 48px); }
  .mega-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  .mega-menu { left:0; right:0; width:100%; transform:none !important; }
  .mega-grid { grid-template-columns:1fr; }
}

/* ========================================================
   FAQ ACCORDION
   ======================================================== */
.t-faq { display:flex; flex-direction:column; gap:0; }
.t-faq-item {
  border-bottom:1px solid rgba(201,146,26,0.10);
}
.t-faq-item:first-child { border-top:1px solid rgba(201,146,26,0.10); }
.t-faq-btn {
  width:100%; background:none; border:none;
  display:flex; align-items:center; justify-content:space-between; gap:20px;
  padding:22px 0; cursor:pointer; text-align:left;
  transition:background 0.2s; border-radius:8px;
}
.t-faq-btn:hover { background:rgba(201,146,26,0.03); }
.t-faq-q {
  font-family:'Playfair Display',serif;
  font-size:1rem; font-weight:600; color:#fff; line-height:1.4;
}
.t-faq-icon {
  width:32px; height:32px; flex-shrink:0;
  border-radius:50%;
  border:1.5px solid rgba(201,146,26,0.30);
  background:rgba(201,146,26,0.06);
  display:flex; align-items:center; justify-content:center;
  color:rgba(201,146,26,0.7);
  transition:background 0.3s, border-color 0.3s, transform 0.35s;
}
.t-faq-item.open .t-faq-icon {
  background:rgba(201,146,26,0.18);
  border-color:rgba(201,146,26,0.65);
  transform:rotate(45deg);
}
.t-faq-body {
  max-height:0; overflow:hidden;
  transition:max-height 0.42s ease, padding 0.3s;
  padding:0 0 0;
}
.t-faq-body p {
  color:rgba(255,255,255,0.62);
  font-size:0.93rem; line-height:1.85;
  padding-bottom:24px;
  max-width:680px;
}

/* ---- Tours mega menu (2-col, wider) ---- */
.tours-mega { width: 860px; }
.tours-mega-grid { grid-template-columns: repeat(2,1fr) !important; }
@media(max-width:1024px){ .tours-mega { width:calc(100vw - 48px); } }
@media(max-width:768px){ .tours-mega-grid { grid-template-columns:1fr !important; } }

