/* ==========================================================
   Rana Morocco Travel - Clean Stylesheet
   Structure:
   01. Variables & Reset
   02. Shared Components
   03. Header & Mega Menus
   04. Hero
   05. Search & Tours
   06. Destinations
   07. Tailor-Made / Services / Gallery / Videos
   08. About / FAQ / CTA / Footer
   09. Animations
   10. Responsive
========================================================== */

/* 01. Variables & Reset */
:root {
  --bg: #120a05;
  --bg-2: #1a0e07;
  --gold: #c98a3a;
  --light-gold: #e2b97a;
  --white: #ffffff;
  --gray: #b8b0a8;
  --cream: #f8f6f3;
  --ink: #24150d;
  --muted: #6a5548;
  --border: #eee3da;
  --shadow: 0 20px 55px rgba(0, 0, 0, 0.1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  list-style-position: inside;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
}

h1 {
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.9;
}

h2 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

/* 02. Shared Components */
.container {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 0 28px;
}

.cursor-glow {
  position: fixed;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(201, 138, 58, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--light-gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 800;
  transition: 0.35s ease;
}

.primary {
  padding: 15px 26px;
  background: #a75a12;
  color: var(--white);
}

.primary:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.outline {
  padding: 14px 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.glass {
  padding: 15px 28px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.large {
  padding: 18px 32px;
}

.light {
  padding: 18px 38px;
  border: 0;
  background: var(--white);
  color: #9b510f;
}

.empty-message {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--muted);
}

/* 03. Header & Mega Menus */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  color: var(--white);
  background: rgba(18, 10, 5, 0.7);
  border-bottom: 1px solid rgba(226, 185, 122, 0.18);
  backdrop-filter: blur(18px);
  transition: 0.35s ease;
}

.navbar.scrolled {
  height: 78px;
  background: var(--bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-weight: 700;
  line-height: 0.9;
}

.logo-image {
  width: 58px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  font-size: 12px;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links > a,
.nav-item > a {
  position: relative;
  display: block;
  padding: 36px 0;
  color: var(--white);
}

.nav-links > a::after,
.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--light-gold);
  transition: 0.35s ease;
}

.nav-links > a:hover::after,
.nav-item:hover > a::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.hamburger {
  display: none;
  border: 0;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px;
  background: var(--white);
}

.mega-menu {
  position: absolute;
  top: 90px;
  left: 50%;
  z-index: 999;
  padding: 34px;
  color: var(--white);
  background: #160c06;
  border: 1px solid rgba(226, 185, 122, 0.15);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(18px);
  transition: 0.35s ease;
}

.has-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-tours {
  width: 1050px;
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.45fr;
  gap: 30px;
}

.mega-destinations {
  width: 760px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.mega-styles {
  width: 700px;
}

.mega-menu h4 {
  margin-bottom: 20px;
  color: var(--light-gold);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.mega-col a,
.dest-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  color: var(--gray);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  transition: 0.3s ease;
}

.mega-col a:hover,
.dest-group a:hover {
  color: var(--light-gold);
  transform: translateX(6px);
}

.feature-tour,
.mini-card {
  position: relative;
  height: 82px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px;
  overflow: hidden;
}

.feature-tour img,
.mini-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-tour::before,
.mini-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.feature-tour span,
.feature-tour b,
.mini-card span,
.mini-card b {
  position: relative;
  z-index: 2;
}

.feature-tour span,
.mini-card span {
  color: var(--light-gold);
  font-size: 11px;
  text-transform: uppercase;
}

.dest-group a {
  justify-content: flex-start;
}

.dest-group img {
  width: 48px;
  height: 48px;
  margin-right: 12px;
  object-fit: cover;
}

.style-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.style-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.35s ease;
}

.style-card:hover {
  background: rgba(201, 138, 58, 0.12);
  transform: translateY(-4px);
}

.style-card img {
  width: 70px;
  height: 52px;
  object-fit: cover;
}

.style-card b {
  display: block;
  color: var(--light-gold);
}

.style-card small {
  color: var(--gray);
}

.menu-footer {
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--gray);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 04. Hero */
.hero {
  position: relative;
  height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(18, 10, 5, 0.55), rgba(18, 10, 5, 0.72));
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: 1.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero p {
  max-width: 720px;
  margin: 25px auto 34px;
  color: #e0d8cf;
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.scroll-indicator {
  position: absolute;
  bottom: 34px;
  z-index: 2;
  color: var(--light-gold);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* 05. Search & Tours */
.search-section {
  position: relative;
  z-index: 10;
  margin-top: -48px;
}

.search-wrap {
  display: flex;
  gap: 14px;
}

.search-box {
  height: 72px;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  font-size: 16px;
}

.filter-btn,
.chip {
  border: 1px solid #e6ded7;
  background: var(--white);
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.filter-btn {
  height: 72px;
  padding: 16px 24px;
}

.content-section {
  padding: 80px 0;
}

.main-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 42px;
}

.filter-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  margin-bottom: 32px;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--border);
}

.filter-panel h5 {
  margin-bottom: 18px;
  color: #8d5b30;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.chip {
  margin: 0 8px 10px 0;
  padding: 16px 24px;
  font-size: 12px;
}

.chip.active,
.chip:hover {
  background: #130a05;
  color: var(--white);
}

.tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.tour-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid #eee6df;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.tour-card:hover {
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
  transform: translateY(-10px);
}

.tour-img {
  position: relative;
  display: block;
  height: 285px;
  overflow: hidden;
}

.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.tour-card:hover .tour-img img {
  transform: scale(1.04);
  filter: saturate(1.1);
}

.badge,
.available,
.route {
  position: absolute;
  z-index: 2;
}

.badge {
  top: 18px;
  left: 18px;
  padding: 10px 14px;
  background: var(--light-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.available {
  top: 18px;
  right: 18px;
  padding: 12px 16px;
  background: var(--white);
  font-weight: 900;
}

.route {
  bottom: 16px;
  left: 18px;
  color: var(--white);
  text-shadow: 0 2px 8px #000000;
}

.tour-body {
  padding: 24px;
}

.tour-body h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.tour-body p {
  color: var(--muted);
  line-height: 1.7;
}

.tour-meta {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price {
  color: #9b510f;
  font-weight: 900;
}

.tour-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}

.tour-actions .btn {
  flex: 1;
  padding: 14px;
  font-size: 12px;
}

.tour-actions .outline {
  border-color: #dddddd;
  color: #1b0f08;
}

.popular-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  padding: 32px;
  background: var(--white);
  border: 1px solid #e8ddd2;
}

.popular-sidebar h3 {
  margin-bottom: 22px;
  font-size: 25px;
}

.popular-sidebar li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  margin-bottom: 22px;
  list-style: none;
  counter-increment: item;
}

.popular-sidebar li::before {
  content: counter(item);
  color: var(--light-gold);
  font-size: 28px;
  font-weight: 900;
}

.popular-sidebar span {
  display: block;
  margin-top: 7px;
  color: #7a6252;
  font-size: 12px;
}

/* 06. Destinations */
.destinations {
  padding: 110px 0;
  background: var(--white);
}

.destination-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.destination-card {
  position: relative;
  height: 360px;
  display: flex;
  align-items: end;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  transition: 0.35s ease;
}

.destination-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
}

.destination-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.45s ease;
}

.destination-card h3 {
  position: relative;
  z-index: 2;
  font-size: 30px;
}

.destination-card div {
  position: relative;
  z-index: 2;
}

.destination-card div span {
  display: block;
  margin-top: 8px;
  color: var(--light-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-intro {
  max-width: 830px;
  margin-top: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.travel-details,
.destination-service-info {
  padding: 100px 0;
  background: #f7f4ef;
}

.travel-details h2 {
  max-width: 760px;
  margin-bottom: 42px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.detail-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border);
}

.detail-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.75;
}

.destination-card:hover {
  transform: translateY(-8px);
}

.destination-card:hover img {
  transform: scale(1.05);
}

/* 07. Tailor-Made / Services / Gallery / Videos */
.tailor,
.faq {
  padding: 110px 0;
}

.tailor,
.about-rana {
  background: var(--bg);
  color: var(--white);
}

.tailor-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.tailor p,
.about-rana p {
  margin: 24px 0;
  color: var(--gray);
  line-height: 1.9;
}

.tailor-card {
  padding: 42px;
  background: var(--bg-2);
  border: 1px solid rgba(226, 185, 122, 0.25);
}

.tailor-card li {
  padding: 16px 0;
  color: var(--gray);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.rana-services,
.gallery,
.video-showcase,
.about-rana {
  padding: 110px 0;
}

.rana-services,
.gallery,
.video-showcase {
  background: var(--white);
  color: #20150f;
}

.gallery,
.video-showcase {
  background: #f7f4ef;
}

.rana-services h2,
.gallery h2,
.video-showcase h2,
.about-rana h2 {
  margin: 12px 0 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(18, 10, 5, 0.12);
  box-shadow: 0 24px 70px rgba(18, 10, 5, 0.07);
  transition: 0.35s ease;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
}

.service-card img {
  width: 100%;
  height: 190px;
  margin-bottom: 22px;
  object-fit: cover;
}

.service-card h3 {
  margin-bottom: 14px;
  color: var(--bg);
  font-size: 25px;
}

.service-card p {
  color: #6d5f56;
  line-height: 1.8;
}

.gallery-grid,
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: saturate(0.92);
  transition: 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.video-card {
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(18, 10, 5, 0.12);
  box-shadow: 0 18px 48px rgba(18, 10, 5, 0.08);
}

.video-card video {
  width: 100%;
  height: 320px;
  background: #000000;
  object-fit: cover;
}

.video-card h3 {
  margin-top: 14px;
  font-size: 22px;
}

/* 08. About / FAQ / CTA / Footer */
.about-rana h2 {
  color: var(--white);
}

.faq {
  background: #fbfaf8;
  text-align: center;
}

.faq-list {
  max-width: 860px;
  margin: 42px auto 0;
}

.faq-item {
  margin-bottom: 14px;
  background: var(--white);
  border: 1px solid #e6ddd5;
  text-align: left;
}

.faq-item button {
  width: 100%;
  padding: 22px;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 900;
  text-align: left;
}

.faq-item p {
  max-height: 0;
  padding: 0 22px;
  overflow: hidden;
  color: var(--muted);
  transition: 0.35s ease;
}

.faq-item.active p {
  max-height: 150px;
  padding: 0 22px 22px;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 36px 9%;
  background: linear-gradient(90deg, #9d520f, #a96219);
  color: var(--white);
}

.cta h2 {
  font-size: 28px;
}

.cta p {
  margin-top: 8px;
  color: #ffe6cc;
}

footer {
  padding: 60px 0;
  background: var(--bg);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

footer h4 {
  margin-bottom: 20px;
  color: var(--light-gold);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

footer a {
  display: block;
  margin-bottom: 14px;
  color: var(--gray);
}

footer span {
  color: var(--gray);
  line-height: 1.7;
}

/* Quote form */
.modal-open { overflow: hidden; }
.quote-modal { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 24px; }
.quote-modal.open { display: flex; }
.quote-backdrop { position: absolute; inset: 0; background: rgba(18, 10, 5, 0.78); backdrop-filter: blur(7px); }
.quote-dialog { position: relative; z-index: 1; width: min(720px, 100%); max-height: calc(100vh - 40px); overflow-y: auto; padding: 38px; background: var(--white); box-shadow: 0 35px 100px rgba(0, 0, 0, 0.38); }
.quote-close { position: absolute; top: 16px; right: 18px; border: 0; background: transparent; color: #8a7669; font-size: 28px; }
.quote-dialog h2 { font-size: 38px; }
.quote-dialog h3 { margin: 7px 0; font-size: 20px; }
.quote-dialog .eyebrow { color: var(--gold); margin-bottom: 10px; }
.quote-lead { margin: 10px 0 24px; color: var(--muted); line-height: 1.65; }
.quote-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-dialog label span { display: block; margin-bottom: 7px; color: #70594b; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; }
.quote-dialog input:not([type="checkbox"]), .quote-dialog select, .quote-dialog textarea { width: 100%; padding: 14px; border: 1px solid #ded7d1; border-radius: 8px; background: var(--white); color: var(--ink); outline: 0; }
.quote-dialog input:focus, .quote-dialog select:focus, .quote-dialog textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201, 138, 58, 0.12); }
.quote-message { display: block; margin-top: 14px; }
.quote-message textarea { min-height: 100px; resize: vertical; }
.quote-consent { display: flex; align-items: flex-start; gap: 9px; margin: 16px 0; }
.quote-consent span { margin: 0 !important; text-transform: none !important; letter-spacing: 0 !important; }
.quote-submit { width: 100%; border: 0; }
.quote-submit:disabled { opacity: 0.65; cursor: wait; }
.form-status { margin-top: 13px; font-size: 14px; line-height: 1.5; }
.form-status.success { color: #1b6e42; }
.form-status.error { color: #a22b20; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; }

/* Destination detail */
.destination-page { background: var(--white); }
.destination-detail-hero { position: relative; min-height: 680px; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.destination-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.destination-detail-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,10,5,.2), rgba(18,10,5,.82)); }
.destination-detail-heading { position: relative; z-index: 2; padding-bottom: 70px; }
.destination-detail-heading > a { display: inline-block; margin-bottom: 34px; font-size: 13px; font-weight: 700; }
.destination-detail-heading > span { display: block; margin-bottom: 12px; color: var(--light-gold); font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; }
.destination-detail-heading h1 { font-size: clamp(54px, 7vw, 96px); }
.destination-detail-heading p { max-width: 680px; margin-top: 18px; color: #ece4dc; font-size: 18px; }
.destination-overview { padding: 100px 0; }
.destination-overview-grid { display: grid; grid-template-columns: 1fr 330px; gap: 70px; align-items: start; }
.destination-overview h2 { margin-bottom: 22px; font-size: 48px; }
.destination-overview article > p { color: var(--muted); line-height: 1.9; }
.destination-overview article > h3 { margin: 42px 0 20px; font-size: 28px; }
.highlight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.highlight-grid span { padding: 16px; background: #faf8f5; border: 1px solid var(--border); color: #5c4639; }
.quick-facts { padding: 30px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); }
.quick-facts dl div { padding: 16px 0; border-bottom: 1px solid var(--border); }
.quick-facts dt { color: #8c7565; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
.quick-facts dd { margin-top: 6px; font-weight: 800; }
.quick-facts .btn { width: 100%; margin-top: 24px; border: 0; }
.destination-service-info .detail-grid { grid-template-columns: repeat(3, 1fr); }

/* Tour detail */
.tour-page { background: #f8f8f7; }
.tour-detail-hero { position: relative; min-height: 610px; display: flex; align-items: flex-end; color: var(--white); overflow: hidden; }
.tour-detail-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tour-detail-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(18,10,5,.82), rgba(18,10,5,.42) 60%, rgba(18,10,5,.58)); }
.tour-detail-heading { position: relative; z-index: 2; padding-bottom: 58px; }
.tour-kicker { display: flex; gap: 22px; margin-bottom: 24px; color: #f1e5d8; font-size: 13px; }
.tour-kicker span:first-child { color: var(--light-gold); font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.tour-detail-heading h1 { max-width: 1050px; font-size: clamp(48px, 6vw, 86px); line-height: 1; }
.tour-detail-heading > p { max-width: 750px; margin: 20px 0; color: #eee5dc; font-size: 17px; line-height: 1.7; }
.tour-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.tour-benefits span { padding: 9px 12px; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.25); font-size: 11px; font-weight: 700; }
.tour-detail-heading .btn { border: 0; }
.tour-detail-content { padding: 90px 0; }
.tour-detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 55px; align-items: start; }
.tour-main-column h2 { margin-bottom: 20px; font-size: 40px; }
.tour-overview-block > p { color: var(--muted); font-size: 16px; line-height: 1.9; }
.tour-highlight-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 26px; }
.tour-highlight-grid span { padding: 15px; background: var(--white); border: 1px solid var(--border); color: #5a4437; font-size: 14px; }
.itinerary-section { margin-top: 65px; }
.itinerary-note { margin: -5px 0 30px; color: var(--muted); line-height: 1.7; }
.itinerary-day { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 0 0 34px; }
.day-number { align-self: start; padding: 16px 8px; background: var(--bg); color: var(--white); border-radius: 8px; font-size: 11px; font-weight: 800; text-align: center; text-transform: uppercase; }
.itinerary-day h3 { margin-bottom: 7px; font-size: 21px; }
.itinerary-day strong { color: #b5792e; font-size: 11px; letter-spacing: .6px; text-transform: uppercase; }
.itinerary-day p { margin: 12px 0; color: var(--muted); line-height: 1.82; }
.itinerary-day em { color: #6d594c; font-size: 13px; }
.tour-booking-card { position: sticky; top: 105px; padding: 28px; background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow); }
.price-box { padding: 28px 15px; border: 1px dashed #d9c9bc; text-align: center; }
.price-box span, .price-box small { display: block; color: #8c7464; font-size: 11px; }
.price-box strong { display: block; margin: 8px 0; font-family: "Playfair Display", serif; font-size: 21px; }
.tour-booking-card > .btn { width: 100%; margin-top: 14px; border: 0; }
.outline-dark { padding: 14px 24px; background: transparent; color: var(--ink); border: 1px solid var(--ink) !important; }
.tour-booking-card dl { margin-top: 22px; padding-top: 8px; border-top: 1px solid var(--border); }
.tour-booking-card dl div { padding: 12px 0; border-bottom: 1px solid var(--border); }
.tour-booking-card dt { color: #8d7667; font-size: 11px; text-transform: uppercase; }
.tour-booking-card dd { margin-top: 4px; font-weight: 700; }
.direct-phone { display: block; margin-top: 22px; text-align: center; }
.direct-phone span { display: block; margin-bottom: 7px; color: #8d7667; font-size: 11px; }
.included-section { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 65px; }
.included-section > div { padding: 30px; background: var(--white); border: 1px solid var(--border); }
.included-section h3 { margin-bottom: 18px; font-size: 23px; }
.included-section li { padding: 8px 0; color: var(--muted); line-height: 1.5; }
.related-tours { padding: 90px 0; background: var(--white); }
.related-tours h2 { margin-bottom: 34px; font-size: 42px; }
.related-tour-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.related-tour-card { border: 1px solid var(--border); background: var(--white); transition: .3s ease; }
.related-tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.related-tour-card img { width: 100%; height: 190px; object-fit: cover; }
.related-tour-card div { padding: 18px; }
.related-tour-card h3 { margin-bottom: 7px; font-size: 20px; }
.related-tour-card span { color: #8d6d58; font-size: 12px; text-transform: uppercase; }

.to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 20;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #160c06;
  color: var(--light-gold);
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* 09. Animations */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: 0.8s ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* 10. Responsive */
@media (max-width: 1180px) {
  .navbar {
    padding: 0 25px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 1050px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 90px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    background: var(--bg);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links > a,
  .nav-item > a {
    padding: 12px 0;
  }

  .mega-menu {
    position: static;
    width: 100% !important;
    display: none;
    padding: 20px;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    transform: none !important;
  }

  .has-menu.open .mega-menu {
    display: grid;
  }

  .main-grid,
  .filter-panel,
  .tailor-grid,
  .destination-overview-grid,
  .tour-detail-grid {
    grid-template-columns: 1fr;
  }

  .popular-sidebar {
    position: static;
  }

  .tour-booking-card {
    position: static;
  }

  .tour-grid,
  .destination-grid,
  .service-grid,
  .gallery-grid,
  .video-grid,
  .detail-grid,
  .destination-service-info .detail-grid,
  .related-tour-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-buttons,
  .search-wrap,
  .cta {
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  h1 {
    font-size: 54px;
  }

  .navbar {
    height: 78px;
  }

  .hero {
    height: 92vh;
  }

  .mega-tours,
  .mega-destinations,
  .style-grid,
  .tour-grid,
  .destination-grid,
  .service-grid,
  .gallery-grid,
  .video-grid,
  .footer-grid,
  .quote-fields,
  .highlight-grid,
  .tour-highlight-grid,
  .included-section {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    padding: 20px;
  }

  .service-card img,
  .gallery-grid img,
  .video-card video {
    height: 260px;
  }

  .cursor-glow {
    display: none;
  }

  .quote-modal { padding: 0; }
  .quote-dialog { max-height: 100vh; min-height: 100vh; padding: 30px 20px; }
  .destination-detail-hero { min-height: 600px; }
  .destination-overview { padding: 70px 0; }
  .tour-detail-hero { min-height: 650px; }
  .tour-kicker { flex-direction: column; gap: 8px; }
  .itinerary-day { grid-template-columns: 52px 1fr; gap: 14px; }
}
