/* ============================================================
   Mogador Reisen — Main Stylesheet
   Design: Luxury Moroccan Tourism
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --primary:      #0B2D5C;
  --primary-dark: #071e3d;
  --primary-mid:  #164180;
  --gold:         #C89B3C;
  --gold-light:   #e0b85a;
  --gold-pale:    #fdf4e3;
  --red:          #C1272D;
  --bg:           #FFFFFF;
  --light:        #F8F9FB;
  --light2:       #EFF2F7;
  --text:         #1F2937;
  --text-muted:   #6B7280;
  --text-light:   #9CA3AF;
  --border:       #E5E7EB;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow:       0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:    0 20px 60px rgba(0,0,0,.12);
  --shadow-xl:    0 32px 80px rgba(0,0,0,.18);
  --radius-sm:    6px;
  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --transition:   all .3s cubic-bezier(.4,0,.2,1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --max-width:    1280px;
  --container-px: clamp(1rem, 5vw, 2.5rem);
  --nav-height:   80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.8;
}

/* ── Section Spacing ── */
.section { padding-block: clamp(4rem, 8vw, 7rem); }
.section-sm { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section-lg { padding-block: clamp(5rem, 10vw, 9rem); }

/* ── Section Header ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-header .label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  max-width: 600px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Gold Divider ── */
.gold-divider {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(11,45,92,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(11,45,92,.4);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(200,155,60,.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,155,60,.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1ebe5c;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,.5);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .6rem 1.2rem; font-size: .85rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
}

.nav-logo-text { line-height: 1.1; }

.nav-logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.nav-logo-sub {
  display: block;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(200,155,60,.08);
}

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
}

.nav-phone:hover { color: var(--gold); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(11,45,92,.06);
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: #fff;
  transform: translateX(-100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-close {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--text);
  transition: var(--transition);
}

.mobile-nav-close:hover { background: var(--primary); color: #fff; }

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  flex: 1;
}

.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: var(--gold-pale);
  color: var(--primary);
}

.mobile-nav-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,45,92,.88) 0%,
    rgba(11,45,92,.65) 60%,
    rgba(7,30,61,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--container-px);
  padding-block: calc(var(--nav-height) + 3rem) 4rem;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,155,60,.15);
  border: 1px solid rgba(200,155,60,.4);
  color: var(--gold-light);
  padding: .45rem 1rem;
  border-radius: 100px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: #fff;
  max-width: 720px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}

.hero-stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  margin-top: .3rem;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.6);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.6), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 3.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200,155,60,.15) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C89B3C' fill-opacity='0.05'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 { color: #fff; margin-bottom: .75rem; }

.page-hero .lead { color: rgba(255,255,255,.8); max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}

.breadcrumb a,
.breadcrumb span {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
}

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

.breadcrumb .sep { color: rgba(255,255,255,.35); }
.breadcrumb .current { color: var(--gold-light); font-weight: 600; }

/* ============================================================
   CARDS — Services
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform .3s ease;
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

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

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold-pale), #fef9ee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: var(--primary);
}

.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.service-card .card-link {
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}

.service-card:hover .card-link { gap: .75rem; }

/* ============================================================
   CARDS — Destinations
   ============================================================ */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.destination-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: var(--transition);
}

.destination-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }

.destination-card-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}

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

.destination-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,45,92,.9) 0%, rgba(11,45,92,.2) 60%, transparent 100%);
  transition: var(--transition);
}

.destination-card:hover .destination-card-overlay {
  background: linear-gradient(to top, rgba(11,45,92,.92) 0%, rgba(11,45,92,.4) 70%, rgba(11,45,92,.1) 100%);
}

.destination-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  transform: translateY(0);
  transition: var(--transition);
}

.destination-card-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: .5rem;
  display: block;
}

.destination-card h3 {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: .5rem;
}

.destination-card p {
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.destination-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.destination-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition) .05s;
}

.destination-card:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FLEET SECTION
   ============================================================ */

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.fleet-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.fleet-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(200,155,60,.15);
  transform: translateY(-4px);
}

.fleet-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--light) 0%, var(--light2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.fleet-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
}

.fleet-card-body { padding: 1.5rem; }

.fleet-card-capacity {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: .78rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}

.fleet-card h3 { font-size: 1.1rem; margin-bottom: .5rem; }

.fleet-card p { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.fleet-tag {
  font-size: .72rem;
  font-weight: 600;
  padding: .25rem .6rem;
  background: var(--light);
  border-radius: 100px;
  color: var(--text-muted);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.why-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold-light);
}

.why-card h4 { color: var(--primary); margin-bottom: .4rem; font-size: 1.05rem; }
.why-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-pale);
}

.stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: .9rem;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author-name {
  font-weight: 700;
  font-size: .9rem;
  color: var(--primary);
}

.testimonial-author-detail {
  font-size: .78rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list { max-width: 800px; margin-inline: auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: #fff;
  transition: var(--transition);
}

.faq-question:hover { background: var(--light); }
.faq-item.open .faq-question { background: var(--primary); }

.faq-question-text {
  font-weight: 600;
  font-size: .95rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.open .faq-question-text { color: #fff; }

.faq-toggle {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.open .faq-toggle {
  background: rgba(255,255,255,.2);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  background: #fff;
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   BOOKING FORM
   ============================================================ */

.booking-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,155,60,.12) 0%, transparent 70%);
  pointer-events: none;
}

.booking-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,155,60,.08) 0%, transparent 70%);
  pointer-events: none;
}

.booking-form-wrapper {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.form-field { display: flex; flex-direction: column; gap: .4rem; }

.form-field label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: .85rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  color: var(--text);
  background: var(--light);
  transition: var(--transition);
  width: 100%;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(11,45,92,.08);
}

.form-field textarea { resize: vertical; min-height: 100px; }

.form-field.full { grid-column: 1 / -1; }

.form-submit {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-card-icon.blue { background: rgba(11,45,92,.08); color: var(--primary); }
.contact-card-icon.gold { background: var(--gold-pale); color: var(--gold); }
.contact-card-icon.green { background: rgba(37,211,102,.1); color: #1ebe5c; }
.contact-card-icon.red { background: rgba(193,39,45,.08); color: var(--red); }

.contact-card-label { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.contact-card-value { font-size: 1rem; font-weight: 700; color: var(--primary); }
.contact-card-sub { font-size: .82rem; color: var(--text-muted); }

/* ============================================================
   PRICE TABLE
   ============================================================ */

.price-table-wrapper { overflow-x: auto; }

.price-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: .88rem;
}

.price-table thead {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: #fff;
}

.price-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.price-table td {
  padding: .9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.price-table tbody tr:nth-child(even) { background: var(--light); }
.price-table tbody tr:hover { background: var(--gold-pale); }
.price-table tbody tr:last-child td { border-bottom: none; }

.price-table .price { font-weight: 700; color: var(--primary); }
.price-table .price-gold { color: var(--gold); font-weight: 700; }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,155,60,.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 { color: #fff; margin-bottom: .75rem; }
.cta-banner p { color: rgba(255,255,255,.8); max-width: 500px; margin-inline: auto; margin-bottom: 2rem; }
.cta-banner-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   FLOATING ELEMENTS
   ============================================================ */

.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 35px rgba(37,211,102,.7);
}

@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.5); }
  50% { box-shadow: 0 4px 35px rgba(37,211,102,.8), 0 0 0 10px rgba(37,211,102,.1); }
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem .85rem;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip { opacity: 1; }

/* Mobile Sticky Bar */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: .75rem 1rem;
  gap: .75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}

.sticky-mobile-bar a { flex: 1; justify-content: center; border-radius: var(--radius); padding: .85rem; font-size: .9rem; }

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,.8);
  padding-top: clamp(3rem, 6vw, 5rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.footer-logo-sub {
  display: block;
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.footer-brand p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.65); margin-bottom: 1.5rem; }

.footer-social {
  display: flex;
  gap: .5rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: .75rem;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.footer-links { display: flex; flex-direction: column; gap: .5rem; }

.footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a:hover { color: var(--gold-light); transform: translateX(3px); }

.footer-contact-item {
  display: flex;
  gap: .75rem;
  margin-bottom: .75rem;
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--gold-light);
}

.footer-contact-text { font-size: .85rem; color: rgba(255,255,255,.7); }
.footer-contact-text strong { color: #fff; display: block; font-size: .82rem; margin-bottom: .15rem; }

.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.4); margin: 0; }

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  transition: var(--transition);
}

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

/* ============================================================
   UTILITY & HELPER CLASSES
   ============================================================ */

.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); }
.bg-gradient { background: linear-gradient(135deg, var(--light) 0%, #fff 100%); }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--text-muted); }
.text-white { color: #fff; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .3rem .75rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 700;
}

.badge-gold { background: var(--gold-pale); color: var(--gold); }
.badge-blue { background: rgba(11,45,92,.08); color: var(--primary); }
.badge-green { background: rgba(37,211,102,.1); color: #1ebe5c; }

.highlight-box {
  background: var(--gold-pale);
  border: 1px solid rgba(200,155,60,.3);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}

.info-box {
  background: rgba(11,45,92,.05);
  border: 1px solid rgba(11,45,92,.12);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
}

/* Route badge for transfer pages */
.route-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .6rem 1.25rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--primary);
}

.route-badge .arrow { color: var(--gold); font-size: 1rem; }

/* ── Features list ── */
.features-list { display: flex; flex-direction: column; gap: .6rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text);
}
.feature-item .icon { color: var(--gold); flex-shrink: 0; margin-top: .15rem; }
.feature-item.white { color: rgba(255,255,255,.85); }
.feature-item.white .icon { color: var(--gold-light); }

/* ── Two-col layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.reverse .col-img { order: -1; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
  .two-col.reverse .col-img { order: 0; }
}

.col-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 768px) {
  :root { --nav-height: 70px; }

  .hero-stats { gap: 1.5rem; }

  .services-grid,
  .destinations-grid,
  .fleet-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

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

  .floating-whatsapp { bottom: 5.5rem; }

  .sticky-mobile-bar { display: flex; }
  body { padding-bottom: 80px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .cta-banner-actions { flex-direction: column; }
  .cta-banner-actions .btn { justify-content: center; }
  .destinations-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

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

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

.animate-fade-up {
  opacity: 0;
  animation: fadeInUp .7s ease forwards;
}

.animate-fade-up.delay-1 { animation-delay: .15s; }
.animate-fade-up.delay-2 { animation-delay: .3s; }
.animate-fade-up.delay-3 { animation-delay: .45s; }
.animate-fade-up.delay-4 { animation-delay: .6s; }

/* Intersection Observer Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   PAGE SPECIFIC — Circuits
   ============================================================ */

.circuit-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.circuit-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.circuit-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.circuit-card-duration {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(11,45,92,.85);
  color: var(--gold-light);
  padding: .4rem .9rem;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 700;
}

.circuit-card-body { padding: 1.5rem; }

.circuit-cities {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: .75rem 0 1rem;
}

.circuit-city-tag {
  font-size: .72rem;
  padding: .25rem .6rem;
  background: var(--light);
  border-radius: 100px;
  color: var(--text-muted);
  font-weight: 600;
}

/* Day timeline */
.day-timeline { display: flex; flex-direction: column; gap: 0; }

.day-item {
  display: flex;
  gap: 1.5rem;
  position: relative;
  padding-bottom: 2rem;
}

.day-item:last-child { padding-bottom: 0; }

.day-item::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}

.day-item:last-child::before { display: none; }

.day-number {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold-light);
}

.day-content h4 { color: var(--primary); margin-bottom: .4rem; font-size: 1rem; }
.day-content p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   EXCURSIONS
   ============================================================ */

.excursion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}

.excursion-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.excursion-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.excursion-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.excursion-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--gold-light);
  padding: .3rem .8rem;
  border-radius: 100px;
  font-size: .76rem;
  font-weight: 700;
}

.excursion-card-body { padding: 1.5rem; }
.excursion-card h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.excursion-card p { font-size: .88rem; color: var(--text-muted); margin-bottom: 1rem; }

.excursion-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.meta-tag {
  font-size: .76rem;
  font-weight: 600;
  padding: .28rem .65rem;
  border-radius: 100px;
  background: var(--light);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.value-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--gold);
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-pale), #fef4d9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  transform: scale(1.1) rotate(10deg);
}

.value-card h4 { margin-bottom: .5rem; }
.value-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ============================================================
   GOOGLE MAP
   ============================================================ */

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   TRANSFER PAGE SPECIFIC
   ============================================================ */

.transfer-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.transfer-info-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.transfer-info-icon { font-size: 1.8rem; margin-bottom: .5rem; }
.transfer-info-value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}
.transfer-info-label { font-size: .78rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }

/* ── Loading overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--primary);
  z-index: 9999;
  opacity: 1;
  transition: opacity .5s ease;
  pointer-events: none;
}

body.loaded::before { opacity: 0; }

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
  .navbar, .floating-whatsapp, .sticky-mobile-bar { display: none !important; }
  .hero { min-height: auto; padding-top: 2rem; }
  .page-hero { background: var(--light) !important; }
  .page-hero * { color: var(--text) !important; }
}

/* ============================================================
   MODERN DESIGN ENHANCEMENTS
   Premium upgrades: glass nav, gradient text, premium cards
   ============================================================ */

/* ── Glassmorphism navbar when scrolled ── */
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-bottom: 1px solid rgba(11, 45, 92, 0.07);
  box-shadow: 0 2px 40px rgba(0, 0, 0, .06) !important;
}

/* ── Nav link hover underline ── */
.nav-links a {
  overflow: hidden;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform .25s ease;
  transform-origin: right;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ── Hero richer overlay with Moroccan red accent ── */
.hero-overlay {
  background: linear-gradient(
    155deg,
    rgba(7, 30, 61, .96) 0%,
    rgba(11, 45, 92, .82) 40%,
    rgba(11, 45, 92, .60) 70%,
    rgba(22, 65, 128, .70) 100%
  ) !important;
}

/* Hero mesh glow accent */
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(200, 155, 60, .10) 0%, transparent 45%),
    radial-gradient(ellipse at 15% 75%, rgba(193, 39, 45, .07) 0%, transparent 40%);
  animation: hero-mesh 14s ease-in-out infinite alternate;
}
@keyframes hero-mesh {
  0%   { opacity: .6; transform: scale(1); }
  100% { opacity: 1;  transform: scale(1.04); }
}

/* ── Hero stats glass panel ── */
.hero-stats {
  display: inline-flex !important;
  flex-wrap: wrap;
  gap: 0 !important;
  background: rgba(255, 255, 255, .07) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .13) !important;
  border-radius: var(--radius-lg) !important;
  padding: 1.25rem 1.5rem !important;
  width: auto !important;
  margin-top: 2rem;
}
.hero-stats > div {
  padding: 0 1.75rem;
  border-right: 1px solid rgba(255, 255, 255, .12);
}
.hero-stats > div:first-child { padding-left: 0; }
.hero-stats > div:last-child  { padding-right: 0; border-right: none; }

@media (max-width: 640px) {
  .hero-stats { display: flex !important; flex-wrap: wrap; gap: 1.5rem !important; padding: 1rem !important; }
  .hero-stats > div { padding: 0; border-right: none; }
}

/* ── Hero badge glow ── */
.hero-badge {
  background: rgba(200, 155, 60, .18) !important;
  border: 1px solid rgba(200, 155, 60, .55) !important;
  box-shadow: 0 0 30px rgba(200, 155, 60, .12),
              inset 0 1px 0 rgba(255, 255, 255, .10) !important;
  backdrop-filter: blur(8px);
}

/* ── Section label chips ── */
.label,
.section-header .label {
  display: inline-flex !important;
  align-items: center;
  background: rgba(200, 155, 60, .09) !important;
  border: 1px solid rgba(200, 155, 60, .3) !important;
  padding: .35rem 1.1rem !important;
  border-radius: 100px !important;
  font-size: .72rem !important;
  letter-spacing: .14em !important;
  font-weight: 700 !important;
}

/* ── Gold divider glow ── */
.gold-divider {
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent) !important;
  height: 2px !important;
  width: 80px !important;
  box-shadow: 0 0 12px rgba(200, 155, 60, .35) !important;
}

/* ── Gradient heading text on section headers ── */
.section-header h2 {
  background: linear-gradient(135deg, var(--primary-dark) 20%, var(--primary-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Service card with image on top ── */
.service-card:has(.service-card-img) { padding: 0; }
.service-card-img {
  height: 210px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.07); }
.service-card-body { padding: 1.5rem; }

.service-card:hover {
  box-shadow: 0 20px 56px rgba(11, 45, 92, .13),
              0 0 0 1px rgba(200, 155, 60, .18) !important;
}

/* ── Destination cards 3-column layout ── */
.destinations-grid {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.75rem !important;
}
@media (max-width: 900px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 580px) {
  .destinations-grid { grid-template-columns: 1fr !important; }
}

/* ── Fleet card premium ── */
.fleet-card-img {
  height: 200px !important;
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary-mid) 100%) !important;
}
.fleet-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(200, 155, 60, .28) 0%, transparent 65%);
}
.fleet-card-img::after {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)) !important;
}
.fleet-card:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 12px 48px rgba(200, 155, 60, .14) !important;
}

/* ── Why icons warm gold ── */
.why-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--primary-dark) !important;
  box-shadow: 0 8px 24px rgba(200, 155, 60, .28) !important;
}

/* ── Testimonial card lift ── */
.testimonial-card {
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 20px 56px rgba(11, 45, 92, .10) !important;
  transform: translateY(-4px);
  border-color: rgba(200, 155, 60, .28) !important;
}

/* ── FAQ open state richer gradient ── */
.faq-item.open .faq-question {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid)) !important;
}
.faq-item {
  box-shadow: 0 2px 8px rgba(0, 0, 0, .04) !important;
}

/* ── CTA banner deeper gradient ── */
.cta-banner {
  background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 45%, #1a4a8a 100%) !important;
  box-shadow: 0 24px 72px rgba(11, 45, 92, .22) !important;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -35%;
  right: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(200, 155, 60, .11) 0%, transparent 70%);
  pointer-events: none;
}

/* ── Page hero richer gradient ── */
.page-hero {
  background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 55%, var(--primary-mid) 100%) !important;
  padding-top: calc(var(--nav-height) + 4rem) !important;
  padding-bottom: 4.5rem !important;
}

/* ── Booking section ── */
.booking-section {
  background: linear-gradient(155deg, var(--primary-dark) 0%, var(--primary) 40%, #1a4a8a 100%) !important;
}
.booking-form-wrapper {
  border-radius: 24px !important;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .18) !important;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(200, 155, 60, .10) !important;
}

/* ── Footer gradient ── */
.footer {
  background: linear-gradient(160deg, #060f22 0%, #071e3d 45%, #0b2348 100%) !important;
}

/* ── Floating WhatsApp enlarged ── */
.floating-whatsapp {
  width: 62px !important;
  height: 62px !important;
  bottom: 2.5rem !important;
  right: 2.5rem !important;
}
@keyframes pulse-whatsapp {
  0%, 100% { box-shadow: 0 8px 28px rgba(37, 211, 102, .45); }
  50%       { box-shadow: 0 8px 40px rgba(37, 211, 102, .7),
                           0 0 0 10px rgba(37, 211, 102, .08); }
}

/* ── Sticky mobile bar glass ── */
.sticky-mobile-bar {
  background: rgba(255, 255, 255, .95) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border-top: 1px solid rgba(11, 45, 92, .08) !important;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, .07) !important;
}

/* ── Reveal animation smoother ── */
.reveal {
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1),
              transform .8s cubic-bezier(.4, 0, .2, 1) !important;
}
.reveal.delay-1 { transition-delay: .1s !important; }
.reveal.delay-2 { transition-delay: .2s !important; }
.reveal.delay-3 { transition-delay: .3s !important; }
.reveal.delay-4 { transition-delay: .4s !important; }

/* ── Value / about page icons ── */
.value-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%) !important;
  color: var(--gold-light) !important;
  box-shadow: 0 8px 24px rgba(11, 45, 92, .20) !important;
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%) !important;
  color: var(--primary-dark) !important;
}

/* ── Transfer info card hover ── */
.transfer-info-card {
  background: linear-gradient(135deg, #fff 0%, var(--light) 100%) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05) !important;
  transition: var(--transition);
}
.transfer-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold) !important;
  box-shadow: 0 12px 40px rgba(11, 45, 92, .09) !important;
}

/* ── Price table header ── */
.price-table thead {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 100%) !important;
}
.price-table tbody tr:hover { background: rgba(200, 155, 60, .07) !important; }

/* ── Circuit card ── */
.circuit-card:hover {
  box-shadow: 0 24px 72px rgba(11, 45, 92, .14),
              0 0 0 1px rgba(200, 155, 60, .18) !important;
}

/* ── Excursion card ── */
.excursion-card:hover {
  box-shadow: 0 20px 56px rgba(11, 45, 92, .12),
              0 0 0 1px rgba(200, 155, 60, .15) !important;
}
.excursion-card-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 45, 92, .4) 0%, transparent 55%);
  pointer-events: none;
}

/* ── Contact card ── */
.contact-card:hover {
  border-color: var(--gold) !important;
  box-shadow: 0 8px 32px rgba(200, 155, 60, .10) !important;
}

/* ── Highlight box left accent ── */
.highlight-box {
  background: linear-gradient(135deg, var(--gold-pale), rgba(200, 155, 60, .04)) !important;
  border-left: 4px solid var(--gold) !important;
  border-radius: 0 var(--radius) var(--radius) 0 !important;
}

/* ── Route badge ── */
.route-badge {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid)) !important;
  color: #fff !important;
  border: none !important;
  padding: .75rem 1.5rem !important;
  font-size: .95rem !important;
  box-shadow: 0 4px 20px rgba(11, 45, 92, .28) !important;
}
.route-badge .arrow { color: var(--gold-light) !important; }

/* ── Two-col more generous gap ── */
.two-col { gap: 4.5rem !important; }

/* ── Col image rounded ── */
.col-img {
  border-radius: 22px !important;
}

/* ── Moroccan decorative star pattern on page hero ── */
.page-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23C89B3C' fill-opacity='0.06'%3E%3Cpolygon points='40,0 47,28 80,28 55,45 64,75 40,58 16,75 25,45 0,28 33,28'/%3E%3C/g%3E%3C/svg%3E");
  opacity: .7;
}

/* ── Loading overlay faster ── */
body::before {
  transition: opacity .35s ease, visibility .35s ease !important;
}

/* ── Fleet car photo (real img tag inside fleet-card-img) ── */
.fleet-card-img {
  position: relative;
}
.fleet-car-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}
/* Remove the radial glow overlay when showing a real photo */
.fleet-card-img:has(.fleet-car-photo)::before {
  display: none;
}

