@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Tajawal:wght@200;300;400;500;700;800&family=Cormorant:ital,wght@1,300;1,400&display=swap');

:root {
  --abyss: #0A1729;
  --depth: #122847;
  --tide: #1B3A5C;
  --foam: #F4F1EA;
  --sand: #E8DFC9;
  --pearl: #FAF7F0;
  --coral: #C9663D;
  --copper: #B85328;
  --gold: #C9A961;
  --moss: #4A6B5C;
  --slate: #2A3A4D;
  --whisper: rgba(244,241,234,0.7);
  --ink: #0A1729;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--pearl);
  color: var(--ink);
  font-family: 'Tajawal', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body[dir="ltr"] { font-family: 'Cormorant Garamond', serif; font-weight: 400; }

body::before {
  content: '';
  position: fixed; inset: 0; pointer-events: none; z-index: 100; opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ═══════════ NAV ═══════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  padding: 1.2rem 5vw; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(10,23,41,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244,241,234,0.08);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 34px; width: auto; display: block; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  font-size: 0.88rem; color: var(--whisper);
}
.nav-links a { color: var(--whisper); text-decoration: none; transition: color 0.25s ease; position: relative; }
.nav-links a:hover { color: var(--foam); }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 1.5px; background: var(--gold);
}
.nav-actions { display: flex; align-items: center; gap: 1.2rem; }
.lang-toggle {
  background: none; border: 1px solid var(--whisper); color: var(--foam);
  padding: 0.5rem 1.1rem; border-radius: 100px; cursor: pointer;
  font-family: inherit; font-size: 0.78rem; letter-spacing: 0.1em; font-weight: 400;
  transition: all 0.3s ease; text-transform: uppercase;
}
.lang-toggle:hover { background: var(--foam); color: var(--abyss); }
.nav-cta {
  background: var(--coral); color: var(--foam); padding: 0.65rem 1.5rem;
  border-radius: 100px; text-decoration: none; font-weight: 500; font-size: 0.86rem;
  transition: all 0.3s ease; border: none; cursor: pointer; font-family: inherit;
}
.nav-cta:hover { background: var(--copper); transform: translateY(-1px); }
.nav-mobile-toggle {
  display: none; background: none; border: 1px solid var(--whisper); color: var(--foam);
  width: 38px; height: 38px; border-radius: 100px; cursor: pointer; align-items: center; justify-content: center;
}
.nav-mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; z-index: 49;
  background: var(--abyss); border-bottom: 1px solid var(--tide);
  padding: 1.2rem 5vw 1.6rem; flex-direction: column; gap: 1rem;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a { color: var(--whisper); text-decoration: none; font-size: 1rem; padding: 0.4rem 0; }
.nav-mobile-menu a.active { color: var(--gold); }

/* Breadcrumb */
.breadcrumb {
  max-width: 1280px; margin: 0 auto; padding: 6.5rem 5vw 0;
  font-size: 0.82rem; color: var(--whisper);
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.breadcrumb a { color: var(--whisper); text-decoration: none; transition: color 0.2s ease; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span.sep { opacity: 0.4; }
.breadcrumb span.current { color: var(--gold); }

/* ═══════════ BUTTONS ═══════════ */
.btn-primary, .btn-ghost {
  padding: 1rem 2.1rem; border-radius: 100px; font-family: inherit; font-size: 0.92rem;
  font-weight: 500; cursor: pointer; transition: all 0.3s ease; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.7rem; border: 1px solid transparent;
}
.btn-primary { background: var(--coral); color: var(--foam); }
.btn-primary:hover { background: var(--copper); transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(201,102,61,0.4); }
.btn-ghost { background: transparent; color: var(--foam); border-color: var(--whisper); }
.btn-ghost:hover { background: var(--foam); color: var(--abyss); border-color: var(--foam); }
.btn-arrow { transition: transform 0.3s ease; display: inline-block; }
[dir="rtl"] .btn-arrow { transform: scaleX(-1); }
.btn-primary:hover .btn-arrow { transform: translateX(4px); }
[dir="rtl"] .btn-primary:hover .btn-arrow { transform: scaleX(-1) translateX(4px); }
.btn-dark { background: var(--abyss); color: var(--foam); }
.btn-dark:hover { background: var(--depth); transform: translateY(-2px); }

/* ═══════════ HERO (home) ═══════════ */
.hero {
  min-height: 100vh; position: relative; background: var(--abyss); color: var(--foam);
  overflow: hidden; display: flex; flex-direction: column; justify-content: center; padding: 9rem 5vw 10rem;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; opacity: 0.55; }
.hero-bg svg { width: 100%; height: 100%; position: absolute; inset: 0; }
.hero-glow {
  position: absolute; top: -10%; right: -10%; width: 60%; height: 60%;
  background: radial-gradient(circle, rgba(201,102,61,0.15), transparent 60%); z-index: 2; pointer-events: none;
}
[dir="ltr"] .hero-glow { right: auto; left: -10%; }
.hero-content { position: relative; z-index: 5; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.75rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 2rem; font-weight: 500;
  font-family: 'Tajawal', sans-serif; opacity: 0; animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.2s forwards;
}
.hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(3rem, 8.5vw, 7rem);
  line-height: 0.95; letter-spacing: -0.02em; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.4s forwards;
}
[dir="rtl"] .hero h1 { font-family: 'Tajawal', sans-serif; font-weight: 200; }
.hero h1 em { font-style: italic; color: var(--gold); font-weight: 400; }
[dir="rtl"] .hero h1 em { font-style: normal; font-weight: 500; color: var(--gold); }
.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem); max-width: 580px; color: var(--whisper);
  margin-bottom: 3rem; font-weight: 300; line-height: 1.7;
  opacity: 0; animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 0.8s forwards;
}
.hero-stats {
  position: absolute; bottom: 3rem; left: 5vw; right: 5vw; display: flex; justify-content: space-between;
  gap: 2rem; z-index: 5; opacity: 0; animation: fadeUp 1.1s cubic-bezier(0.16,1,0.3,1) 1.2s forwards;
  border-top: 1px solid rgba(244,241,234,0.15); padding-top: 2rem; max-width: 1200px; margin: 0 auto;
}
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; color: var(--gold); line-height: 1; margin-bottom: 0.4rem; }
.hero-stat-label { font-size: 0.75rem; color: var(--whisper); letter-spacing: 0.15em; text-transform: uppercase; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.compass { position: absolute; top: 50%; left: 8%; transform: translateY(-50%); width: 280px; height: 280px; opacity: 0.12; z-index: 2; animation: rotate 90s linear infinite; }
[dir="rtl"] .compass { left: auto; right: 8%; }
@keyframes rotate { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

/* ═══════════ PAGE HEADER (inner pages) ═══════════ */
.page-header {
  background: var(--abyss); color: var(--foam); position: relative; overflow: hidden;
  padding: 8.5rem 5vw 4rem;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 85% 20%, rgba(201,169,97,0.1), transparent 55%);
  pointer-events: none;
}
.page-header-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 2; }
.page-header .section-tag { color: var(--gold); }
.page-header .section-tag::before { background: var(--gold); }
.page-header h1 {
  font-family: 'Tajawal', sans-serif; font-weight: 200; font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  color: var(--foam); line-height: 1.05; margin-bottom: 1.2rem; letter-spacing: -0.01em;
}
[dir="ltr"] .page-header h1 { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.page-header h1 em { font-style: normal; font-weight: 500; color: var(--gold); }
[dir="ltr"] .page-header h1 em { font-style: italic; font-weight: 400; }
.page-header p { font-size: 1.08rem; color: var(--whisper); max-width: 640px; line-height: 1.75; }

/* ═══════════ SECTION FRAMEWORK ═══════════ */
section { padding: 6rem 5vw; position: relative; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.7rem; font-size: 0.7rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 1.5rem;
}
.section-tag::before { content: ''; width: 22px; height: 1px; background: var(--coral); }
.section-title {
  font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05; letter-spacing: -0.015em; max-width: 800px; margin-bottom: 1.5rem;
}
[dir="rtl"] .section-title { font-family: 'Tajawal', sans-serif; font-weight: 200; }
.section-title em { font-style: italic; color: var(--coral); }
[dir="rtl"] .section-title em { font-style: normal; color: var(--coral); font-weight: 500; }
.section-intro { max-width: 600px; font-size: 1.08rem; color: var(--slate); margin-bottom: 3rem; line-height: 1.75; }
.page-header .section-intro { color: var(--whisper); }

/* ═══════════ EXPERIENCE (how it works) ═══════════ */
.experience { background: var(--pearl); position: relative; }
.exp-decoration {
  position: absolute; top: 5rem; left: 5vw; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 8rem; color: var(--sand); opacity: 0.5; z-index: 1; pointer-events: none; font-weight: 300;
}
[dir="rtl"] .exp-decoration { left: auto; right: 5vw; }
.exp-content { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--sand); border: 1px solid var(--sand); margin-top: 2rem; }
.exp-card { background: var(--pearl); padding: 3rem 2.5rem; transition: all 0.5s ease; position: relative; }
.exp-card:hover { background: var(--foam); }
.exp-num { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.95rem; color: var(--coral); margin-bottom: 1.8rem; display: block; font-weight: 500; }
.exp-icon {
  width: 56px; height: 56px; margin-bottom: 1.8rem; display: flex; align-items: center; justify-content: center;
  background: var(--abyss); border-radius: 50%; transition: all 0.4s ease;
}
.exp-card:hover .exp-icon { background: var(--coral); transform: rotate(-8deg); }
.exp-icon svg { width: 26px; height: 26px; stroke: var(--gold); }
.exp-card:hover .exp-icon svg { stroke: var(--foam); }
.exp-title { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.6rem; margin-bottom: 1rem; letter-spacing: -0.01em; }
[dir="rtl"] .exp-title { font-family: 'Tajawal', sans-serif; font-weight: 500; font-size: 1.4rem; }
.exp-desc { color: var(--slate); font-size: 0.95rem; line-height: 1.7; }

/* Extended how-it-works page: detail rows */
.hiw-detail { background: var(--foam); max-width: 1200px; margin: 0 auto; }
.hiw-row {
  display: grid; grid-template-columns: 0.9fr 1.6fr; gap: 3rem; padding: 3.5rem 0;
  border-bottom: 1px solid var(--sand); align-items: start;
}
.hiw-row:last-child { border-bottom: none; }
.hiw-row-left { position: sticky; top: 100px; }
.hiw-row-num { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--coral); font-style: italic; margin-bottom: 1rem; }
.hiw-row-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 500; }
[dir="rtl"] .hiw-row-title { font-family: 'Tajawal', sans-serif; font-weight: 500; font-size: 1.7rem; }
.hiw-row-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--abyss); display: flex; align-items: center; justify-content: center; margin-bottom: 1.3rem; }
.hiw-row-icon svg { width: 28px; height: 28px; stroke: var(--gold); }
.hiw-points { display: flex; flex-direction: column; gap: 1.4rem; }
.hiw-point { display: flex; gap: 1rem; align-items: flex-start; }
.hiw-point-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); margin-top: 0.5rem; flex-shrink: 0; }
.hiw-point-text { font-size: 1rem; color: var(--slate); line-height: 1.7; }
.hiw-point-text b { color: var(--ink); font-weight: 600; }
@media (max-width: 800px) {
  .hiw-row { grid-template-columns: 1fr; gap: 1.2rem; }
  .hiw-row-left { position: static; }
}

/* ═══════════ CATALOG (equipment listing) ═══════════ */
.catalog { background: var(--abyss); color: var(--foam); position: relative; overflow: hidden; }
.catalog::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(201,169,97,0.08), transparent 50%), radial-gradient(ellipse at 10% 90%, rgba(201,102,61,0.06), transparent 50%);
  pointer-events: none;
}
.catalog .section-title { color: var(--foam); }
.catalog .section-intro { color: var(--whisper); margin-bottom: 1.4rem; }
.catalog-inner { max-width: 1280px; margin: 0 auto; position: relative; }
.catalog-stats { display: flex; gap: 2.2rem; margin-bottom: 2.4rem; flex-wrap: wrap; }
.catalog-stat { display: flex; align-items: baseline; gap: 0.5rem; }
.catalog-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 600; color: var(--gold); }
.catalog-stat-label { font-size: 0.85rem; color: var(--whisper); }
.catalog-controls { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.catalog-search { position: relative; max-width: 420px; }
.catalog-search input {
  width: 100%; padding: 0.85rem 1.2rem; padding-right: 2.8rem; border-radius: 100px; border: 1px solid var(--tide);
  background: var(--depth); color: var(--foam); font-family: 'Tajawal', sans-serif; font-size: 0.92rem;
  outline: none; transition: border-color 0.3s ease;
}
[dir="rtl"] .catalog-search input { padding-right: 1.2rem; padding-left: 2.8rem; }
.catalog-search input:focus { border-color: var(--gold); }
.catalog-search input::placeholder { color: rgba(244,241,234,0.45); }
.catalog-search svg { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; stroke: var(--whisper); pointer-events: none; }
[dir="rtl"] .catalog-search svg { left: auto; right: 1rem; }
.cat-filters { display: flex; gap: 0.55rem; flex-wrap: wrap; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.5rem 1rem; border-radius: 100px;
  border: 1px solid var(--tide); background: transparent; color: var(--whisper); font-family: 'Tajawal', sans-serif;
  font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: all 0.25s ease; white-space: nowrap; text-decoration: none;
}
.cat-pill svg { width: 14px; height: 14px; stroke: currentColor; flex-shrink: 0; }
.cat-pill .cnt { font-size: 0.72rem; opacity: 0.65; font-family: Arial, sans-serif; }
.cat-pill:hover { border-color: var(--gold); color: var(--foam); }
.cat-pill.active { background: var(--gold); border-color: var(--gold); color: var(--abyss); font-weight: 700; }
.equipment-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.1rem; }
.eq-card {
  background: var(--depth); border: 1px solid var(--tide); border-radius: 8px; padding: 1.3rem 1.3rem 1.1rem;
  transition: all 0.35s ease; text-decoration: none; color: inherit; display: block;
  opacity: 0; transform: translateY(10px); animation: eqIn 0.5s ease forwards;
}
@keyframes eqIn { to { opacity: 1; transform: translateY(0); } }
.eq-card:hover { border-color: var(--eq-color, var(--gold)); transform: translateY(-4px); box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4); }
.eq-card-head { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.85rem; }
.eq-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--eq-color, var(--coral)); }
.eq-icon svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.eq-cat-label { font-size: 0.66rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--eq-color, var(--gold)); font-weight: 700; }
.eq-name { font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; font-weight: 600; color: var(--foam); line-height: 1.25; }
[dir="rtl"] .eq-name { font-family: 'Tajawal', sans-serif; font-weight: 600; font-size: 1.06rem; }
.eq-use { font-size: 0.83rem; color: var(--whisper); line-height: 1.55; margin-bottom: 0.7rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em; }
.eq-specs { font-size: 0.74rem; color: rgba(244,241,234,0.55); margin-bottom: 0.9rem; padding-bottom: 0.9rem; border-bottom: 1px solid var(--tide); line-height: 1.5; }
.eq-footer { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.eq-license { font-size: 0.66rem; color: var(--whisper); background: rgba(244,241,234,0.06); border: 1px solid var(--tide); padding: 0.28rem 0.6rem; border-radius: 100px; max-width: 62%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.eq-price { text-align: left; flex-shrink: 0; }
[dir="rtl"] .eq-price { text-align: right; }
.eq-price-val { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.05rem; color: var(--gold); white-space: nowrap; }
[dir="rtl"] .eq-price-val { font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 0.92rem; }
.eq-price-unit { font-size: 0.66rem; color: var(--whisper); }
.catalog-empty { text-align: center; padding: 3rem 1rem; color: var(--whisper); font-size: 0.95rem; display: none; }
.catalog-note { text-align: center; color: var(--whisper); font-style: italic; font-size: 0.92rem; margin-top: 2.2rem; font-family: 'Cormorant Garamond', serif; }
[dir="rtl"] .catalog-note { font-family: 'Tajawal', sans-serif; font-style: normal; }

.regulatory-note {
  display: flex; gap: 0.9rem; background: rgba(201,169,97,0.07); border: 1px solid rgba(201,169,97,0.25);
  border-radius: 8px; padding: 1.1rem 1.3rem; margin-bottom: 2rem; align-items: flex-start;
}
.regulatory-note svg { width: 20px; height: 20px; stroke: var(--gold); flex-shrink: 0; margin-top: 0.15rem; }
.regulatory-note p { font-size: 0.86rem; color: var(--whisper); line-height: 1.7; margin: 0; }
.regulatory-note b { color: var(--gold); font-weight: 600; }

/* ═══════════ EQUIPMENT DETAIL PAGE ═══════════ */
.eq-detail-hero { background: var(--abyss); color: var(--foam); padding: 2rem 5vw 4rem; position: relative; overflow: hidden; }
.eq-detail-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, var(--eq-color-glow, rgba(201,169,97,0.1)), transparent 55%);
  pointer-events: none;
}
.eq-detail-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.eq-detail-top { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1.6rem; }
.eq-detail-icon { width: 68px; height: 68px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; background: var(--eq-color, var(--coral)); }
.eq-detail-icon svg { width: 32px; height: 32px; stroke: #fff; fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.eq-detail-cat { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--eq-color, var(--gold)); font-weight: 700; margin-bottom: 0.4rem; }
.eq-detail-title { font-family: 'Tajawal', sans-serif; font-weight: 300; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--foam); line-height: 1.1; }
[dir="ltr"] .eq-detail-title { font-family: 'Cormorant Garamond', serif; font-weight: 400; font-style: italic; }
.eq-detail-title-en { font-size: 1rem; color: var(--whisper); font-style: italic; margin-top: 0.3rem; }
.eq-detail-use { font-size: 1.1rem; color: var(--whisper); max-width: 700px; line-height: 1.8; margin-bottom: 2rem; }

.eq-detail-body { background: var(--pearl); }
.eq-detail-grid { max-width: 1100px; margin: 0 auto; padding: 4rem 5vw; display: grid; grid-template-columns: 1.5fr 1fr; gap: 3rem; }
.eq-detail-main h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; }
[dir="rtl"] .eq-detail-main h2 { font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 1.25rem; }
.eq-detail-main p { color: var(--slate); font-size: 1rem; line-height: 1.85; margin-bottom: 2.2rem; }
.spec-table { width: 100%; border-collapse: collapse; margin-bottom: 2.2rem; }
.spec-table tr { border-bottom: 1px solid var(--sand); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td { padding: 0.9rem 0; font-size: 0.94rem; }
.spec-table td:first-child { color: var(--moss); font-weight: 500; width: 40%; }
.spec-table td:last-child { color: var(--ink); font-weight: 400; }

.eq-detail-side { display: flex; flex-direction: column; gap: 1.2rem; }
.side-card { background: var(--foam); border: 1px solid var(--sand); border-radius: 8px; padding: 1.6rem; }
.side-card-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); font-weight: 600; margin-bottom: 0.7rem; }
.side-price { font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 600; color: var(--ink); }
[dir="rtl"] .side-price { font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 1.7rem; }
.side-price-unit { font-size: 0.85rem; color: var(--slate); margin-top: 0.2rem; }
.side-card .btn-primary { width: 100%; justify-content: center; margin-top: 1.2rem; }
.side-license { font-size: 0.92rem; color: var(--ink); line-height: 1.6; }
.side-mfr { font-size: 0.92rem; color: var(--slate); line-height: 1.6; }
.side-note {
  display: flex; gap: 0.7rem; background: rgba(201,102,61,0.06); border: 1px solid rgba(201,102,61,0.2);
  border-radius: 6px; padding: 0.9rem 1rem; font-size: 0.85rem; color: var(--slate); line-height: 1.6;
}
.side-note svg { width: 16px; height: 16px; stroke: var(--coral); flex-shrink: 0; margin-top: 0.15rem; }

.related-section { max-width: 1100px; margin: 0 auto; padding: 0 5vw 5rem; }
.related-section h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 1.5rem; }
[dir="rtl"] .related-section h3 { font-family: 'Tajawal', sans-serif; font-weight: 700; font-size: 1.2rem; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1rem; }
.related-card {
  background: var(--foam); border: 1px solid var(--sand); border-radius: 8px; padding: 1.2rem;
  text-decoration: none; color: inherit; transition: all 0.3s ease; display: block;
}
.related-card:hover { border-color: var(--coral); transform: translateY(-3px); }
.related-card-name { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: 1.05rem; color: var(--ink); margin-bottom: 0.4rem; }
[dir="rtl"] .related-card-name { font-family: 'Tajawal', sans-serif; font-weight: 600; font-size: 0.98rem; }
.related-card-price { font-size: 0.85rem; color: var(--coral); font-weight: 600; }

@media (max-width: 800px) {
  .eq-detail-grid { grid-template-columns: 1fr; }
}

/* ═══════════ DESTINATIONS / COVERAGE ═══════════ */
.destinations { background: var(--pearl); }
.destinations-inner { max-width: 1200px; margin: 0 auto; }
.dest-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 2rem; }
.dest-card { position: relative; height: 360px; border-radius: 6px; overflow: hidden; transition: transform 0.5s ease; }
.dest-card:hover { transform: scale(0.98); }
.dest-card:nth-child(1) { background: linear-gradient(135deg, #1B3A5C, #0A1729); }
.dest-card:nth-child(2) { background: linear-gradient(135deg, #B85328, #C9663D); }
.dest-card:nth-child(3) { background: linear-gradient(135deg, #4A6B5C, #2A3A4D); }
.dest-card:nth-child(4) { background: linear-gradient(135deg, #C9A961, #B85328); }
.dest-svg { position: absolute; inset: 0; opacity: 0.5; }
.dest-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 2.5rem; color: var(--foam); z-index: 2; }
.dest-tag { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; opacity: 0.85; margin-bottom: 0.7rem; }
.dest-name { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 400; margin-bottom: 0.4rem; letter-spacing: -0.01em; }
[dir="rtl"] .dest-name { font-family: 'Tajawal', sans-serif; font-weight: 400; font-size: 2rem; }
.dest-desc { font-size: 0.95rem; opacity: 0.85; max-width: 420px; line-height: 1.6; }

/* ═══════════ WAITLIST ═══════════ */
.waitlist { background: var(--abyss); color: var(--foam); position: relative; overflow: hidden; text-align: center; }
.waitlist::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 50%, rgba(201,169,97,0.08), transparent 60%); }
.waitlist-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.waitlist .section-tag { color: var(--gold); justify-content: center; }
.waitlist .section-tag::before { background: var(--gold); }
.waitlist .section-title { color: var(--foam); margin-left: auto; margin-right: auto; }
.waitlist-sub { color: var(--whisper); font-size: 1.1rem; max-width: 540px; margin: 0 auto 3rem; line-height: 1.75; }
.waitlist-form { display: flex; gap: 0.6rem; max-width: 500px; margin: 0 auto 2rem; flex-wrap: wrap; }
.waitlist-input {
  flex: 1; min-width: 200px; padding: 1.2rem 1.6rem; border-radius: 100px; border: 1px solid var(--tide);
  background: var(--depth); color: var(--foam); font-family: inherit; font-size: 0.95rem; outline: none; transition: all 0.3s ease;
}
.waitlist-input:focus { border-color: var(--gold); }
.waitlist-input::placeholder { color: rgba(244,241,234,0.5); }
.waitlist-role { display: flex; gap: 0.5rem; justify-content: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.role-btn {
  padding: 0.6rem 1.4rem; border-radius: 100px; background: transparent; border: 1px solid var(--tide);
  color: var(--whisper); cursor: pointer; font-family: inherit; font-size: 0.85rem; transition: all 0.3s ease;
}
.role-btn.active, .role-btn:hover { background: var(--foam); color: var(--abyss); border-color: var(--foam); }
.waitlist-success { display: none; padding: 2.5rem; border: 1px solid var(--gold); border-radius: 8px; background: rgba(201,169,97,0.06); margin-top: 1rem; }
.waitlist-success.show { display: block; animation: fadeUp 0.7s ease; }
.waitlist-success-title { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--gold); margin-bottom: 0.6rem; font-style: italic; font-weight: 400; }
[dir="rtl"] .waitlist-success-title { font-family: 'Tajawal', sans-serif; font-style: normal; font-weight: 500; }
.waitlist-success-msg { color: var(--whisper); font-size: 0.98rem; }

/* ═══════════ FOOTER ═══════════ */
.footer { background: var(--ink); color: var(--whisper); padding: 5rem 5vw 2rem; border-top: 1px solid var(--tide); }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand img { height: 34px; width: auto; margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; max-width: 320px; }
.footer-col h4 { color: var(--foam); font-size: 0.78rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 1.5rem; font-weight: 500; }
.footer-col a, .footer-col span { display: block; color: var(--whisper); text-decoration: none; margin-bottom: 0.8rem; font-size: 0.9rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 2rem; border-top: 1px solid var(--tide);
  display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; letter-spacing: 0.1em; flex-wrap: wrap; gap: 1rem;
}

/* ═══════════ MISC PAGE BLOCKS ═══════════ */
.plain-section { background: var(--pearl); }
.stat-row { display: flex; gap: 3rem; flex-wrap: wrap; margin-top: 1rem; }

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .compass { display: none; }
  .hero { padding: 7rem 5vw 8rem; }
  .hero-stats { position: relative; bottom: auto; margin-top: 4rem; flex-wrap: wrap; justify-content: flex-start; gap: 2.5rem; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .equipment-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .dest-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .eq-detail-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
}
@media (max-width: 640px) {
  section { padding: 5rem 5vw; }
  .page-header { padding: 7rem 5vw 3rem; }
  .nav { padding: 1rem 5vw; }
  .nav-actions { gap: 0.7rem; }
  .nav-cta { padding: 0.55rem 1.1rem; font-size: 0.8rem; }
  .lang-toggle { padding: 0.4rem 0.9rem; font-size: 0.7rem; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 4rem); }
  .exp-decoration { font-size: 4rem; }
  .exp-grid { grid-template-columns: 1fr; }
  .equipment-grid { grid-template-columns: 1fr; }
  .catalog-search { max-width: 100%; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { width: 100%; flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .breadcrumb { padding-top: 5.5rem; font-size: 0.75rem; }
}

.reveal { opacity: 1; transform: translateY(0); transition: opacity 1s cubic-bezier(0.16,1,0.3,1), transform 1s cubic-bezier(0.16,1,0.3,1); }
html.js-loaded .reveal:not(.visible) { opacity: 0; transform: translateY(40px); }
html.js-loaded .reveal.visible { opacity: 1; transform: translateY(0); }
