/* ============================================================
   MOROCCO GNAWA TOURS — Japanese Market Landing Page
   Premium Design System
   ============================================================ */

/* ---------- CSS CUSTOM PROPERTIES ---------- */
:root {
  /* Core Brand Palette — Moroccan × Japanese */
  --gold:        #C9A84C;
  --gold-light:  #E8C97A;
  --gold-dark:   #9A7230;
  --indigo:      #1A2A6C;
  --indigo-mid:  #2E3F8F;
  --indigo-deep: #0D1640;
  --crimson:     #8B2635;
  --sakura:      #F7C5CC;
  --sakura-mid:  #E8A0AB;
  --sand:        #F5ECD7;
  --sand-dark:   #E0CAAB;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #FAF8F3;
  --text-primary: #1A1410;
  --text-secondary: #5A4E3F;
  --text-muted:  #9A8E80;

  /* Surfaces */
  --surface:     #FFFFF8;
  --surface-2:   #F5F0E8;
  --glass:       rgba(255,255,248,0.08);
  --glass-border:rgba(201,168,76,0.2);

  /* Gradients */
  --grad-gold:   linear-gradient(135deg, #C9A84C, #E8C97A, #9A7230);
  --grad-hero:   linear-gradient(160deg, #0D1640 0%, #1A2A6C 45%, #2E1F0A 100%);
  --grad-accent: linear-gradient(90deg, #C9A84C, #E8C97A);

  /* Typography */
  --font-serif:  'Noto Serif JP', 'Playfair Display', Georgia, serif;
  --font-sans:   'Noto Sans JP', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1200px;

  /* Timing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY UTILITIES ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 6px 16px;
  border: 1px solid var(--gold-dark);
  border-radius: 100px;
  margin-bottom: 20px;
  background: rgba(201,168,76,0.07);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.gradient-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

.section-header.centered {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- BUTTONS ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--grad-gold);
  color: var(--indigo-deep);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  letter-spacing: 0.03em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 0.5s var(--ease-out-expo);
}

.btn-primary:hover::before { transform: translateX(110%) skewX(-15deg); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-primary:active { transform: translateY(-1px); }

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1.05rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s, color 0.3s;
  letter-spacing: 0.03em;
}

.btn-ghost:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 clamp(20px, 4vw, 60px);
  height: 72px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.4s var(--ease-in-out), backdrop-filter 0.4s, box-shadow 0.4s, height 0.3s;
}

#navbar.scrolled {
  background: rgba(13, 22, 64, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.2), 0 4px 30px rgba(0,0,0,0.3);
  height: 64px;
}

.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-jp {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.logo-en {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links li a {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.25s;
  letter-spacing: 0.04em;
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.3s var(--ease-out-expo);
}
.nav-links li a:hover { color: var(--gold-light); }
.nav-links li a:hover::after { right: 0; }

.nav-cta {
  padding: 9px 22px !important;
  background: var(--grad-gold) !important;
  color: var(--indigo-deep) !important;
  font-weight: 700 !important;
  border-radius: 3px;
  transition: transform 0.25s, box-shadow 0.25s !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--grad-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/chefchaouen_hero.png');
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.08);
  transition: transform 8s ease-out;
  will-change: transform;
}

.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,22,64,0.82) 0%,
    rgba(26,42,108,0.6) 40%,
    rgba(46,31,10,0.75) 100%
  );
}

/* Moroccan border bar at top */
.hero-pattern-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
  z-index: 2;
}

/* Sakura petals */
.petals { position: absolute; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }

.petal {
  position: absolute;
  width: 10px; height: 10px;
  background: radial-gradient(ellipse, rgba(247,197,204,0.75) 0%, transparent 70%);
  border-radius: 50% 0 50% 0;
  animation: petalFall linear infinite;
  opacity: 0;
}

.petal:nth-child(1) { left: 10%; animation-duration: 12s; animation-delay: 0s;  width:8px;  height:8px;  }
.petal:nth-child(2) { left: 25%; animation-duration: 15s; animation-delay: 2s;  width:12px; height:12px; }
.petal:nth-child(3) { left: 40%; animation-duration: 11s; animation-delay: 4s;  width:7px;  height:7px;  }
.petal:nth-child(4) { left: 55%; animation-duration: 18s; animation-delay: 1s;  width:14px; height:14px; }
.petal:nth-child(5) { left: 70%; animation-duration: 13s; animation-delay: 6s;  width:9px;  height:9px;  }
.petal:nth-child(6) { left: 80%; animation-duration: 16s; animation-delay: 3s;  width:11px; height:11px; }
.petal:nth-child(7) { left: 90%; animation-duration: 10s; animation-delay: 5s;  width:6px;  height:6px;  }
.petal:nth-child(8) { left:  5%; animation-duration: 14s; animation-delay: 7s;  width:10px; height:10px; }

@keyframes petalFall {
  0%   { transform: translateY(-60px) rotate(0deg)   translateX(0);   opacity: 0;   }
  10%  { opacity: 0.8; }
  80%  { opacity: 0.5; }
  100% { transform: translateY(110vh) rotate(540deg) translateX(80px); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 900px;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.3s both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  margin-bottom: 28px;
  background: rgba(201,168,76,0.08);
  backdrop-filter: blur(10px);
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.5s both;
}

.badge-kanji {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.badge-text {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(201,168,76,0.85);
  margin-bottom: 18px;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.65s both;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.75s both;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 44px;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 0.9s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: heroFadeUp 1.2s var(--ease-out-expo) 1.05s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: fadeIn 1s ease 1.5s both;
}

.hero-scroll-hint span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.6; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ============================================================
   PHILOSOPHY SECTION
   ============================================================ */
#philosophy {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.philosophy-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

/* Giant kanji watermark */
.philosophy-kanji-bg {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-serif);
  font-size: clamp(200px, 25vw, 380px);
  font-weight: 900;
  color: rgba(26,42,108,0.05);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.philosophy-text { position: relative; z-index: 1; }

.philosophy-body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.philosophy-body strong {
  color: var(--text-primary);
  font-weight: 700;
}

.philosophy-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.stat-card {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 8px;
  border-left: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.stat-card:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 900;
  color: var(--indigo);
  line-height: 1;
}

.stat-unit {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-left: auto;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* ============================================================
   CITIES HIGHLIGHTS GRID
   ============================================================ */
#highlights {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  background: var(--indigo-deep);
}

#highlights .section-label { border-color: rgba(201,168,76,0.3); }
#highlights .section-title { color: var(--white); }

.cities-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.55fr 1fr 1fr;
  grid-template-rows: auto;
  gap: 16px;
  align-items: stretch;
}

.city-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
  cursor: default;
  display: flex;
  flex-direction: column;
}

.city-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(201,168,76,0.4);
}

.city-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.city-card.featured { grid-row: 1 / 3; }
.city-card.featured .city-img-wrap { flex: 1; height: auto; min-height: 340px; }

.city-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out-expo);
}

.city-card:hover .city-img-wrap img { transform: scale(1.07); }

.city-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,22,64,0.85) 0%, transparent 60%);
}

.city-info {
  padding: 24px 22px;
}

.city-num {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 8px;
}

.city-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}

.city-name-en {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.city-desc {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 18px;
}

.city-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  text-transform: uppercase;
}

.highlight-tag {
  background: rgba(201,168,76,0.2);
  border-color: var(--gold);
  color: var(--gold);
}

/* ============================================================
   ITINERARY TIMELINE
   ============================================================ */
#itinerary {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  background: var(--off-white);
  position: relative;
}

.itinerary-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('images/morocco_pattern_bg.png');
  background-size: 400px;
  background-repeat: repeat;
  opacity: 0.025;
  pointer-events: none;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 80px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 26px;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-dark) 10%, var(--gold) 50%, var(--gold-dark) 90%, transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 52px;
  display: flex;
  gap: 0;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

/* The day marker circle on the line */
.timeline-day {
  position: absolute;
  left: -80px;
  top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.timeline-day::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--gold);
  z-index: 1;
}

.day-jp {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.day-num {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 22px;
}

.timeline-content {
  flex: 1;
  background: var(--white);
  border-radius: 12px;
  padding: 28px 32px;
  border: 1px solid rgba(201,168,76,0.15);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s, border-color 0.3s;
}

.timeline-content:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.35);
}

.timeline-route {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.timeline-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.timeline-desc {
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ttag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(26,42,108,0.07);
  color: var(--indigo-mid);
  border: 1px solid rgba(26,42,108,0.12);
}

/* ============================================================
   SERVICES INCLUDED
   ============================================================ */
#included {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  background: var(--indigo-deep);
  position: relative;
  overflow: hidden;
}

#included::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.included-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.included-col .section-label { border-color: rgba(201,168,76,0.3); }
.included-col .section-title { color: var(--white); }
.not-included-col .section-label { display: none; }

.not-included-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.12);
  transition: background 0.3s, border-color 0.3s;
}

.included-list li:hover {
  background: rgba(201,168,76,0.07);
  border-color: rgba(201,168,76,0.3);
}

.service-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-icon.muted { opacity: 0.5; }

.service-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.service-text strong {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.service-text span {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.service-text.muted strong,
.not-included-list .service-text {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
}

.not-included-list li {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.06);
}

.reassurance-box {
  margin-top: 28px;
  padding: 24px 26px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.reassurance-icon { font-size: 2rem; flex-shrink: 0; }

.reassurance-box p {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================================
   PHOTO GALLERY MOSAIC
   ============================================================ */
#gallery {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  background: var(--white);
}

.gallery-mosaic {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px 260px;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out-expo);
}

.gallery-item:hover { transform: scale(1.02); }

.gallery-item.large {
  grid-row: 1 / 3;
  grid-column: 1;
}

.gallery-item.tall {
  grid-row: 1 / 3;
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(to top, rgba(13,22,64,0.85) 0%, transparent 100%);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out-expo);
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ============================================================
   WHY US
   ============================================================ */
#why-us {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  background: var(--surface-2);
  position: relative;
  overflow: hidden;
}

/* Subtle circular gold glow BG */
#why-us::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.why-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.why-inner .section-header { margin-bottom: clamp(40px, 6vw, 72px); }

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

.why-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(201,168,76,0.12);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s, border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out-expo);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: rgba(201,168,76,0.3);
}

.why-card:hover::before { transform: scaleX(1); }

.why-icon {
  width: 52px; height: 52px;
  margin-bottom: 20px;
}

.why-icon svg { width: 100%; height: 100%; }

.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.85;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
#booking {
  padding: var(--section-pad) clamp(20px, 5vw, 60px);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.booking-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('images/morocco_pattern_bg.png');
  background-size: 400px;
  opacity: 0.03;
  pointer-events: none;
}

.booking-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
  position: relative;
  z-index: 1;
}

.booking-body {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 28px;
}

.booking-body strong { color: var(--text-primary); }

.booking-contact-links {
  margin-bottom: 28px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: color 0.2s;
}

.contact-link:hover { color: var(--gold); }

.booking-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-item {
  padding: 8px 18px;
  background: rgba(26,42,108,0.06);
  border: 1px solid rgba(26,42,108,0.1);
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--indigo-mid);
}

/* Form */
.booking-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}

.booking-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-gold);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--surface);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group textarea { resize: vertical; line-height: 1.6; }

.form-note {
  margin-top: 14px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
}

.privacy-note {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  margin-top: 6px;
}
.privacy-note span { font-size: 0.8rem; }

/* Form success state */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon { font-size: 3.5rem; margin-bottom: 20px; animation: popIn 0.5s var(--ease-out-expo); }

@keyframes popIn {
  from { transform: scale(0); }
  to   { transform: scale(1); }
}

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.form-success p {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--indigo-deep);
  position: relative;
  overflow: hidden;
}

.footer-pattern {
  position: absolute;
  inset: 0;
  background-image: url('images/morocco_pattern_bg.png');
  background-size: 300px;
  opacity: 0.04;
  pointer-events: none;
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 60px) 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.footer-brand { max-width: 280px; }

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255,255,255,0.4);
  margin-top: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.footer-col a {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-made { color: rgba(255,255,255,0.2) !important; }

/* Social icons in footer */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(201,168,76,0.15);
  color: rgba(255,255,255,0.5);
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
}

.social-icon svg { width: 16px; height: 16px; }

.social-icon:hover {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-brand { max-width: 300px; }

/* ============================================================
   SCROLL-REVEAL ANIMATION (applied by JS)
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .cities-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .city-card.featured { grid-column: 1 / 3; }
  .city-card.featured .city-img-wrap { height: 320px; }

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

  .philosophy-inner { grid-template-columns: 1fr; gap: 48px; }
  .philosophy-kanji-bg { display: none; }

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }
  .gallery-item.large {
    grid-row: 1;
    grid-column: 1 / 3;
  }
  .gallery-item.tall { grid-row: auto; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(13,22,64,0.97);
    backdrop-filter: blur(20px);
    padding: 48px 32px;
    gap: 32px;
    align-items: flex-start;
    z-index: 999;
    font-size: 1.3rem;
    animation: slideInRight 0.3s var(--ease-out-expo);
  }
  @keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);   opacity: 1; }
  }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 11vw, 4.5rem); }
  .hero-actions { flex-direction: column; align-items: center; }

  .cities-grid { grid-template-columns: 1fr; }
  .city-card.featured { grid-column: 1; }

  .included-inner { grid-template-columns: 1fr; gap: 48px; }
  .booking-inner  { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }

  .timeline { padding-left: 56px; }
  .timeline-day { left: -56px; }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 200px);
  }
  .gallery-item.large, .gallery-item.tall {
    grid-row: auto;
    grid-column: auto;
  }

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

  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .stat-desc { display: none; }
  .philosophy-stats { gap: 12px; }
}
