/* ============================================================
   IDR CoSpace · Stylesheet
   Premium · Olaya · Riyadh
   ============================================================ */

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

/* --- Reset & root tokens ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* Brand palette */
  --navy:        #012C5C;
  --navy-deep:   #001A3D;
  --navy-soft:   #1B4179;
  --gold:        #C9A84C;
  --gold-soft:   #E0C77A;
  --cream:       #FAF8F3;
  --paper:       #FFFFFF;
  --ink:         #0A0F1A;
  --ash:         #5C6473;
  --line:        #E6E2D6;
  --line-soft:   #F0EDE3;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-arabic:  'Tajawal', system-ui, sans-serif;

  /* Spacing scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;
  --shadow: 0 1px 3px rgba(1, 44, 92, 0.06), 0 8px 24px rgba(1, 44, 92, 0.04);
  --shadow-strong: 0 4px 12px rgba(1, 44, 92, 0.08), 0 16px 40px rgba(1, 44, 92, 0.10);
  --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body { font-family: var(--font-arabic); }

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

a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* --- Typography ------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin: 0 0 var(--s-5);
  line-height: 1.15;
}

[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4 {
  font-family: var(--font-arabic);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
}

h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h4 { font-size: 1.125rem; font-family: var(--font-body); font-weight: 600; }

p { margin: 0 0 var(--s-4); color: var(--ash); }
.lead { font-size: 1.125rem; line-height: 1.65; color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-4);
}

[dir="rtl"] .eyebrow { letter-spacing: 0; }

/* --- Layout ----------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--s-6); }
}

.section { padding: var(--s-8) 0; }
.section-tight { padding: var(--s-6) 0; }

@media (min-width: 768px) {
  .section { padding: var(--s-9) 0; }
}

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

[dir="rtl"] .btn { font-family: var(--font-arabic); letter-spacing: 0; }

.btn-primary {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--paper);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: var(--paper);
  color: var(--navy);
  border-color: var(--paper);
}

.btn-large { padding: 1.125rem 2.5rem; font-size: 1rem; }
.btn-small { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* --- Navigation ------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s-4) 0;
  background: transparent;
  transition: all var(--transition);
}

.nav.is-scrolled {
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: var(--s-3) 0;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1;
}

.brand-mark .accent { color: var(--gold); }

.is-scrolled .brand-mark { color: var(--navy); }

.nav-links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--s-6);
}

@media (min-width: 992px) {
  .nav-links { display: flex; }
}

.nav-links a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: var(--s-2) 0;
}

.is-scrolled .nav-links a { color: var(--navy); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--navy);
  padding: 0.5rem 0.875rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.is-scrolled .lang-switch { color: var(--navy); border-color: var(--line); }

.lang-switch:hover { border-color: var(--gold); color: var(--gold); }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 0;
}

@media (min-width: 992px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition);
}

.is-scrolled .menu-toggle span { background: var(--navy); }

.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s-5);
  transform: translateY(-100%);
  transition: transform var(--transition);
}

.mobile-menu.is-open { transform: translateY(0); }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--paper);
  font-weight: 500;
}

[dir="rtl"] .mobile-menu a { font-family: var(--font-arabic); font-weight: 500; }

.mobile-menu a:hover { color: var(--gold); }

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(201, 168, 76, 0.07) 0%, transparent 50%);
  pointer-events: none;
}

.hero::after { display: none; }

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-4);
}

[dir="rtl"] .hero-eyebrow { letter-spacing: 0; }

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 var(--s-5);
  max-width: 18ch;
}

[dir="rtl"] .hero-title {
  font-family: var(--font-arabic);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.hero-sub { display: none; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-7);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px solid var(--line);
  max-width: 720px;
}

.hero-meta-item .num {
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s-2);
}

.hero-meta-item .label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ash);
}

[dir="rtl"] .hero-meta-item .label { letter-spacing: 0; text-transform: none; }

/* --- Trust strip ------------------------------------------ */
.trust {
  background: var(--cream);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line-soft);
}

.trust-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--s-5);
}

@media (min-width: 768px) {
  .trust-row {
    flex-direction: row;
    justify-content: space-between;
    text-align: start;
  }
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  white-space: nowrap;
}

[dir="rtl"] .trust-label { letter-spacing: 0; }

.trust-cities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-2) var(--s-5);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--navy);
}

[dir="rtl"] .trust-cities { font-family: var(--font-arabic); }

.trust-cities span { position: relative; }
.trust-cities span:not(:last-child)::after {
  content: '·';
  margin-inline-start: var(--s-5);
  color: var(--gold);
}

/* --- Section heading -------------------------------------- */
.section-head {
  max-width: 780px;
  margin-bottom: var(--s-7);
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

/* --- Weekly bundle hero feature --------------------------- */
.feature-weekly {
  background: var(--paper);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.feature-weekly::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

[dir="rtl"] .feature-weekly::before { right: auto; left: -20%; }

.feature-weekly-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 992px) {
  .feature-weekly-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-9);
  }
}

.feature-weekly h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.feature-weekly h2 em { color: var(--gold); font-style: italic; }

.feature-weekly p { color: var(--ash); }

.weekly-card {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: var(--s-7);
  border-radius: var(--radius-lg);
  position: relative;
}

.weekly-card-tag {
  position: absolute;
  top: -12px;
  inset-inline-start: var(--s-6);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius);
}

[dir="rtl"] .weekly-card-tag { letter-spacing: 0; }

.weekly-card h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: var(--s-4);
}

.weekly-price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  margin: var(--s-5) 0;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line);
}

.weekly-price .currency {
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
}

.weekly-price .amount {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}

.weekly-price .unit {
  font-size: 0.875rem;
  color: var(--ash);
}

.weekly-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-6);
}

.weekly-features li {
  display: flex;
  gap: var(--s-3);
  padding: var(--s-2) 0;
  font-size: 0.9375rem;
  color: var(--ink);
}

.weekly-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C9A84C'%3E%3Cpath d='M6.5 12L2.5 8l1.4-1.4L6.5 9.2l5.6-5.6L13.5 5l-7 7z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* --- Products grid ---------------------------------------- */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.product-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-strong);
  transform: translateY(-2px);
}

.product-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.product-body {
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--s-2);
}

.product-card .product-cap {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-4);
}

[dir="rtl"] .product-card .product-cap { letter-spacing: 0; text-transform: none; }

.product-body > p {
  flex: 1;
  margin-bottom: var(--s-5);
}

.product-rates {
  border-top: 1px solid var(--line);
  padding-top: var(--s-5);
  margin-bottom: var(--s-5);
  display: grid;
  gap: var(--s-3);
}

.product-rate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.9375rem;
}

.product-rate .label { color: var(--ash); }
.product-rate .price {
  font-weight: 600;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
}

.product-rate.featured {
  background: var(--cream);
  margin-inline: calc(var(--s-6) * -1);
  padding: var(--s-3) var(--s-6);
  border-block: 1px solid var(--line-soft);
}

.product-rate.featured .price { color: var(--gold); }

/* --- Pillars (why) ---------------------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-top: var(--s-7);
}

@media (min-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
}

.pillar {
  padding-top: var(--s-5);
  border-top: 2px solid var(--gold);
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  margin-bottom: var(--s-3);
}

[dir="rtl"] .pillar-num { letter-spacing: 0; }

.pillar h3 {
  font-size: 1.375rem;
  margin-bottom: var(--s-3);
}

.pillar p { font-size: 0.9375rem; }

/* --- Rate card -------------------------------------------- */
.rate-card-section { background: var(--cream); }

.rate-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.rate-table-wrap { overflow-x: auto; }

.rate-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  min-width: 640px;
}

.rate-table th, .rate-table td {
  padding: var(--s-4) var(--s-5);
  text-align: start;
  border-bottom: 1px solid var(--line-soft);
}

.rate-table thead th {
  background: var(--navy);
  color: var(--paper);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

[dir="rtl"] .rate-table thead th { letter-spacing: 0; text-transform: none; }

.rate-table tbody tr:hover { background: var(--cream); }
.rate-table tbody tr:last-child td { border-bottom: 0; }

.rate-table td.product-name {
  font-weight: 600;
  color: var(--navy);
}

.rate-table td.price {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--ink);
}

.rate-table td.dash { color: var(--line); }

.rate-card-foot {
  background: var(--cream);
  padding: var(--s-4) var(--s-5);
  font-size: 0.8125rem;
  color: var(--ash);
  border-top: 1px solid var(--line-soft);
}

/* --- How it works ----------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-top: var(--s-7);
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-7); }
}

.step { position: relative; }

.step-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s-4);
  display: block;
}

.step h3 { font-size: 1.25rem; margin-bottom: var(--s-2); }
.step p { font-size: 0.9375rem; margin: 0; }

/* --- Location --------------------------------------------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}

@media (min-width: 992px) {
  .location-grid { grid-template-columns: 1fr 1fr; gap: var(--s-9); }
}

.location-info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3) var(--s-5);
  margin: var(--s-5) 0 var(--s-6);
  padding: var(--s-5) 0;
  border-block: 1px solid var(--line);
}

.location-info dt {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

[dir="rtl"] .location-info dt { letter-spacing: 0; text-transform: none; }

.location-info dd {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink);
}

.location-info dd a:hover { color: var(--gold); }

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 4 / 3;
  background: var(--cream);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- CTA banner ------------------------------------------- */
.cta-banner {
  background: var(--cream);
  color: var(--ink);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(201, 168, 76, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner .container { position: relative; z-index: 2; }

.cta-banner h2 {
  color: var(--navy);
  max-width: 32ch;
  margin-inline: auto;
}

.cta-banner h2 em { color: var(--gold); font-style: italic; }

.cta-banner p {
  color: var(--ash);
  max-width: 540px;
  margin: 0 auto var(--s-6);
  font-size: 1.0625rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s-3);
}

/* --- Footer ----------------------------------------------- */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--s-8) 0 var(--s-5);
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  margin-bottom: var(--s-7);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--s-7); }
}

.footer h4 {
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--s-4);
}

[dir="rtl"] .footer h4 {
  font-family: var(--font-arabic);
  letter-spacing: 0;
  text-transform: none;
}

.footer .brand-mark { color: var(--paper); }

.footer p { color: rgba(255, 255, 255, 0.55); margin-bottom: var(--s-4); }

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  padding: 0.25rem 0;
}

.footer ul a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}
.footer ul a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  align-items: center;
  text-align: center;
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: start; }
}

/* --- WhatsApp floating button ----------------------------- */
.fab-whatsapp {
  position: fixed;
  bottom: var(--s-5);
  inset-inline-end: var(--s-5);
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35), 0 8px 32px rgba(0,0,0,0.12);
  z-index: 90;
  transition: transform var(--transition);
}

.fab-whatsapp:hover { transform: scale(1.08); color: white; }

.fab-whatsapp svg { width: 28px; height: 28px; }

/* --- Utility --------------------------------------------- */
.text-center { text-align: center; }
.no-margin { margin: 0; }

/* --- RTL adjustments ------------------------------------- */
[dir="rtl"] .nav-row { direction: rtl; }
[dir="rtl"] .hero-eyebrow::before { display: inline-block; }

/* --- Responsive niceties ---------------------------------- */
@media (max-width: 480px) {
  .hero-actions .btn { flex: 1; min-width: 100%; }
  .cta-banner-actions .btn { flex: 1; min-width: 100%; }
  .weekly-price .amount { font-size: 3rem; }
  .product-body { padding: var(--s-5); }
  .product-rate.featured { margin-inline: calc(var(--s-5) * -1); padding-inline: var(--s-5); }
}

/* --- Fade-in on scroll ------------------------------------ */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 800ms ease, transform 800ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Accessibility --------------------------------------- */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ============================================================
   MOTION LAYER · GSAP + CSS animation system
   Added: design upgrade pass
   ============================================================ */

/* --- Scroll progress bar ---------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  z-index: 200;
  transition: none;
  transform-origin: left;
}

/* --- Word-reveal (clip-path based) ----------------------- */
.reveal-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  padding-bottom: 0.08em;
}

.reveal-word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}

/* --- Corridor section ------------------------------------- */
.corridor-section {
  background: var(--navy);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}

.corridor-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.corridor-head {
  text-align: center;
  margin-bottom: var(--s-6);
  position: relative;
  z-index: 2;
}

.corridor-head h2 {
  color: var(--paper);
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.corridor-head h2 em { color: var(--gold); font-style: italic; }

.corridor-svg-wrap {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.corridor-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Arc paths */
.arc-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  opacity: 0.55;
}

/* City dot */
.city-dot {
  fill: var(--paper);
  opacity: 0;
  transition: fill 300ms;
}

.city-dot:hover { fill: var(--gold); }

/* City label */
.city-label {
  fill: rgba(255,255,255,0.65);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  text-anchor: middle;
}

/* Riyadh hub */
.hub-outer {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1;
  opacity: 0;
  animation: hub-pulse 2.4s ease-out infinite;
}

.hub-mid {
  fill: rgba(201, 168, 76, 0.25);
  opacity: 0;
}

.hub-core {
  fill: var(--gold);
  opacity: 0;
}

.hub-label {
  fill: var(--gold);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  text-anchor: middle;
}

@keyframes hub-pulse {
  0%   { r: 14; opacity: 0.6; }
  100% { r: 32; opacity: 0; }
}

/* --- Narrower product cards ------------------------------ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  justify-content: center;
  gap: var(--s-5);
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, minmax(0, 320px)); }
}

@media (max-width: 580px) {
  .products-grid { grid-template-columns: minmax(0, 340px); }
}

/* --- Card 3D tilt ---------------------------------------- */
.product-card {
  --rx: 0deg;
  --ry: 0deg;
  transform: perspective(700px) rotateX(var(--rx)) rotateY(var(--ry));
  transition: transform 0.08s linear, box-shadow var(--transition), border-color var(--transition);
  will-change: transform;
}

.product-card.is-tilting {
  transition: none;
  box-shadow: 0 12px 40px rgba(1,44,92,0.14), 0 2px 8px rgba(1,44,92,0.06);
  border-color: var(--gold);
}

/* Card image subtle zoom */
.product-img {
  transition: transform 500ms ease;
}

.product-card:hover .product-img {
  transform: scale(1.03);
}

/* --- Shimmer on featured price row ----------------------- */
.product-rate.featured {
  position: relative;
  overflow: hidden;
}

.product-rate.featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(201,168,76,0.12) 50%, transparent 80%);
  background-size: 200% 100%;
  animation: shimmer 2.8s ease-in-out infinite;
}

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* --- Button pulse on primary CTA ------------------------- */
.btn-gold {
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: translateX(-100%) skewX(-15deg);
  transition: transform 400ms ease;
}

.btn-gold:hover::before {
  transform: translateX(200%) skewX(-15deg);
}

/* --- Price counter ---------------------------------------- */
.count-target {
  display: inline-block;
}

/* --- Staggered step numbers ------------------------------ */
.step-num {
  display: inline-block;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

.step-num.is-visible {
  clip-path: inset(0 0 0% 0);
}

/* --- Pillar border grow ---------------------------------- */
.pillar {
  border-top: 2px solid transparent;
  background-image: linear-gradient(var(--cream), var(--cream)),
    linear-gradient(90deg, var(--gold) var(--border-pct, 0%), var(--line) var(--border-pct, 0%));
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  transition: none;
}

/* Override the old simple border */
[style*="background: var(--cream)"] .pillar,
section[style*="var(--cream)"] .pillar {
  background-image: linear-gradient(var(--cream), var(--cream)),
    linear-gradient(90deg, var(--gold) var(--border-pct, 0%), rgba(0,0,0,0.08) var(--border-pct, 0%));
}

/* --- Scroll-linked parallax placeholder ----------- */
.hero-inner { will-change: transform; }

/* --- Enhanced nav backdrop blur ----------------------- */
.nav.is-scrolled {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.92);
}

/* --- Overrides: remove old generic fade-in on elements
      that now get GSAP treatment ----------------------- */
.gsap-controlled {
  opacity: 0;
}

/* ============================================================
   HERO 2-COLUMN SPLIT + FEATURE CARD
   ============================================================ */

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: center;
  padding-top: calc(var(--s-7) + 72px); /* clear fixed nav */
  padding-bottom: var(--s-7);
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--s-6);
    padding-top: calc(var(--s-6) + 72px);
    padding-bottom: var(--s-6);
  }
}

.hero-content { /* left column — already has all child elements */ }

/* --- Hero feature card (right column) --------------------- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-feature-card {
  background: var(--navy);
  border: 1px solid rgba(201, 168, 76, 0.35);
  border-radius: 12px;
  padding: var(--s-6);
  width: 100%;
  max-width: 360px;
  position: relative;
  box-shadow:
    0 4px 20px rgba(1, 44, 92, 0.10),
    0 20px 60px rgba(1, 44, 92, 0.12),
    inset 0 1px 0 rgba(201, 168, 76, 0.2);
  transform: rotate(1.5deg);
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-feature-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow:
    0 8px 32px rgba(1, 44, 92, 0.14),
    0 32px 80px rgba(1, 44, 92, 0.16),
    inset 0 1px 0 rgba(201, 168, 76, 0.3);
}

/* Decorative corner accent */
.hero-feature-card::before {
  content: '';
  position: absolute;
  top: -1px; right: -1px;
  width: 60px; height: 60px;
  background: conic-gradient(from 225deg, var(--gold) 0deg, transparent 90deg);
  border-radius: 0 12px 0 0;
  opacity: 0.6;
}

/* Floating decorative dots around the card */
.hero-visual::before {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 50%;
  animation: float-ring 4s ease-in-out infinite;
}

.hero-visual::after {
  content: '';
  position: absolute;
  bottom: -30px; left: 10px;
  width: 80px; height: 80px;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 50%;
  animation: float-ring 4s ease-in-out infinite 2s;
}

@keyframes float-ring {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50%       { transform: translateY(-8px) scale(1.05); opacity: 0.7; }
}

/* Card tag */
.hfc-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 0.35rem 0.75rem;
  border-radius: 3px;
  margin-bottom: var(--s-5);
}

[dir="rtl"] .hfc-tag { letter-spacing: 0; text-transform: none; }

.hfc-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--navy);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.5); opacity: 0.6; }
}

/* Card title */
.hfc-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--paper);
  margin: 0 0 var(--s-4);
  line-height: 1.2;
}

[dir="rtl"] .hfc-title { font-family: var(--font-arabic); font-weight: 700; }

/* Card price */
.hfc-price {
  display: flex;
  align-items: baseline;
  gap: var(--s-2);
  padding: var(--s-4) 0;
  border-block: 1px solid rgba(255,255,255,0.08);
  margin-bottom: var(--s-5);
}

.hfc-currency {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gold);
}

.hfc-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--paper);
  line-height: 1;
  letter-spacing: -0.02em;
}

[dir="rtl"] .hfc-amount { font-family: var(--font-arabic); }

.hfc-unit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* Feature list */
.hfc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--s-5);
  display: grid;
  gap: var(--s-2);
}

.hfc-list li {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
}

.hfc-list li::before {
  content: '';
  flex-shrink: 0;
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14' fill='%23C9A84C'%3E%3Cpath d='M5.5 10.5L2 7l1.2-1.2L5.5 8.1l5.3-5.3L12 4 5.5 10.5z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.hfc-note {
  margin: var(--s-4) 0 0;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
  letter-spacing: 0.04em;
}

[dir="rtl"] .hfc-note { letter-spacing: 0; }

/* ============================================================
   CORRIDOR WORLD MAP — updated geometry
   ============================================================ */

.corridor-section {
  padding: var(--s-7) 0 var(--s-8);
}

.corridor-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Country/continent fills */
.land {
  fill: rgba(255,255,255,0.06);
  stroke: rgba(255,255,255,0.12);
  stroke-width: 0.6;
  stroke-linejoin: round;
}

.land:hover {
  fill: rgba(255,255,255,0.09);
}

/* Graticule (lat/lon reference lines) */
.graticule {
  fill: none;
  stroke: rgba(255,255,255,0.04);
  stroke-width: 0.5;
}

/* Arc paths on world map */
.arc-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.5;
  stroke-linecap: round;
  opacity: 0.7;
}

/* City dots */
.city-dot {
  cursor: pointer;
  transition: r 200ms, fill 200ms;
}

/* Hub pulse ring */
.hub-outer {
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.2;
}

.hub-mid {
  fill: rgba(201, 168, 76, 0.3);
}

.hub-core {
  fill: var(--gold);
}

.hub-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  fill: var(--gold);
  text-anchor: middle;
  opacity: 0;
}

.city-label {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  fill: rgba(255,255,255,0.7);
  text-anchor: middle;
  opacity: 0;
}

/* Mobile: shrink corridor */
@media (max-width: 640px) {
  .corridor-svg-wrap { overflow-x: auto; }
  .corridor-svg { min-width: 600px; }
}

/* ============================================================
   CORRIDOR — world map SVG specific styles
   ============================================================ */

/* Ensure svg fills container cleanly */
.corridor-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Hub pulse ring — CSS keyframe on the hub-group inner circle */
.hub-group circle:first-child {
  animation: hub-pulse 2.2s ease-out infinite;
  transform-origin: center;
}

@keyframes hub-pulse {
  0%   { r: 26; opacity: 0.06; }
  60%  { r: 38; opacity: 0; }
  100% { r: 38; opacity: 0; }
}

/* City dot hover */
.city-dot-group { cursor: default; }
.city-dot-group circle:nth-child(2) {
  transition: r 200ms ease;
}
.city-dot-group:hover circle:nth-child(2) { r: 6; }

/* Mobile scroll for wide map */
@media (max-width: 640px) {
  .corridor-svg-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .corridor-svg {
    min-width: 700px;
  }
}

/* ============================================================
   D3 WORLD MAP — corridor map container
   ============================================================ */

.corridor-map-wrap {
  width: 100%;
  min-height: 300px;
  position: relative;
}

.corridor-map-wrap svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Loading state */
.map-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* Fallback if atlas fails */
.map-fallback {
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.875rem;
  letter-spacing: 0.08em;
  padding: var(--s-7) 0;
}

/* D3 SVG is injected, replace the .corridor-svg styles */
#corridor-map .corridor-svg {
  overflow: visible;
}

/* Country hover */
#corridor-map .countries path { transition: fill 200ms; }
#corridor-map .countries path:hover { fill: rgba(255,255,255,0.12) !important; }

/* City dot hover */
#corridor-map .city-dot-group { cursor: default; }

/* Mobile: allow horizontal scroll if map is wide */
@media (max-width: 600px) {
  .corridor-map-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #corridor-map .corridor-svg {
    min-width: 580px;
  }
}

/* ============================================================
   BRAND LOGO
   ============================================================ */

/* Nav logo — sized to sit comfortably in the navbar */
.brand-logo {
  display: block;
  height: 36px;
  width: auto;
  object-fit: contain;
}

/* Footer logo — same image but inverted to white on navy */
.brand-logo--footer {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

/* Mobile: slightly smaller */
@media (max-width: 480px) {
  .brand-logo          { height: 30px; }
  .brand-logo--footer  { height: 26px; }
}

/* ============================================================
   AUDIT SPRINT · COS-01 through COS-06
   ============================================================ */

/* ── COS-01: Hero rebuild — SAR 600 as H1 claim ─────────────── */

.hero-claim {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 var(--s-4);
}

[dir="rtl"] .hero-claim {
  font-family: var(--font-arabic);
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-claim-number {
  display: block;
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--navy);
}

[dir="rtl"] .hero-claim-number {
  font-size: clamp(4rem, 10vw, 7.5rem);
}

.hero-claim-em {
  color: var(--gold);
  font-style: normal;
}

/* Gold editorial rule above hero claim */
.hero-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--s-5);
}

/* Hero sub — single line below claim */
.hero-sub-claim {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--ash);
  line-height: 1.55;
  margin: 0 0 var(--s-6);
  max-width: 420px;
}

[dir="rtl"] .hero-sub-claim { max-width: 100%; }

/* ── COS-03: Sticky concierge bar ─────────────────────────────── */

.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 110;
  background: var(--navy-deep);
  border-top: 1px solid rgba(201,168,76,0.25);
  display: flex;
  gap: 0;
  transform: translateY(100%);
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(1,44,92,0.18);
}

.sticky-bar.is-visible { transform: translateY(0); }

.sticky-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

[dir="rtl"] .sticky-bar-btn { font-family: var(--font-arabic); letter-spacing: 0; }

.sticky-bar-btn--book {
  background: var(--gold);
  color: var(--navy);
}

.sticky-bar-btn--book:hover {
  background: #d4b35a;
  color: var(--navy);
}

.sticky-bar-btn--wa {
  background: transparent;
  color: rgba(255,255,255,0.88);
  border-inline-start: 1px solid rgba(255,255,255,0.1);
}

.sticky-bar-btn--wa:hover {
  background: rgba(37,211,102,0.12);
  color: #25D366;
}

.sticky-bar-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hide old floating button — replaced by sticky bar */
.fab-whatsapp { display: none !important; }

/* ── COS-04: City tile carousel ───────────────────────────────── */

.corridor-tiles-wrap {
  position: relative;
  margin-top: var(--s-6);
  overflow: hidden;
}

.corridor-tiles {
  display: flex;
  gap: var(--s-4);
  cursor: grab;
  user-select: none;
  will-change: transform;
  padding-bottom: var(--s-3);
}

.corridor-tiles:active { cursor: grabbing; }

.corridor-tile {
  flex-shrink: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: var(--s-5) var(--s-6);
  min-width: 200px;
  max-width: 220px;
  position: relative;
  transition: border-color 250ms, background 250ms, transform 250ms;
  overflow: hidden;
}

.corridor-tile:hover {
  border-color: rgba(201,168,76,0.6);
  background: rgba(255,255,255,0.07);
  transform: translateY(-2px);
}

/* Hover reveal overlay — covers tile content with a navy background */
.corridor-tile::after {
  content: attr(data-practice);
  position: absolute;
  inset: 0;
  background: rgba(1, 26, 61, 0.96);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold-soft);
  padding: var(--s-4);
  text-align: center;
  line-height: 1.45;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.corridor-tile:hover::after { opacity: 1; }

/* Hide tile text on hover so ::after is the only thing visible */
.corridor-tile:hover .corridor-tile-city,
.corridor-tile:hover .corridor-tile-desc {
  opacity: 0;
  transition: opacity 180ms ease;
}

.corridor-tile-city {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--paper);
  display: block;
  margin-bottom: var(--s-2);
  line-height: 1.1;
  transition: opacity 180ms ease;
}

[dir="rtl"] .corridor-tile-city { font-family: var(--font-arabic); font-weight: 600; }

.corridor-tile-desc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: opacity 180ms ease;
}

[dir="rtl"] .corridor-tile-desc { letter-spacing: 0; text-transform: none; }

.corridor-tile--hub {
  border-color: rgba(201,168,76,0.55);
  background: rgba(201,168,76,0.07);
}

.corridor-tile--hub .corridor-tile-city { color: var(--gold); }

/* Fade edges */
.corridor-tiles-wrap::before,
.corridor-tiles-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: var(--s-3);
  width: 64px;
  z-index: 2;
  pointer-events: none;
}

.corridor-tiles-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.corridor-tiles-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

/* ── COS-05: Arabic per-direction typography ──────────────────── */

[dir="rtl"] body {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

[dir="rtl"] p { color: var(--ash); }

[dir="rtl"] .hero-claim-number {
  font-family: var(--font-arabic);
  font-weight: 700;
}

/* Arabic courtesy line — only shown on AR page */
.courtesy-line {
  display: none;
}

[dir="rtl"] .courtesy-line {
  display: block;
  font-family: var(--font-arabic);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: var(--s-3);
  letter-spacing: 0;
}

/* ── Mid-page CTA card (after rate section) ───────────────────── */

.midpage-cta {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: var(--s-5) var(--s-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  margin-top: var(--s-6);
  flex-wrap: wrap;
}

.midpage-cta p {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
}

.midpage-cta p em {
  font-style: normal;
  color: var(--ash);
  font-weight: 400;
}

/* ── Trust line ───────────────────────────────────────────────── */

.trust-line {
  font-size: 0.8125rem;
  color: var(--ash);
  text-align: center;
  margin-top: var(--s-4);
  letter-spacing: 0.04em;
}

.trust-line::before {
  content: '● ';
  color: var(--gold);
  font-size: 0.5rem;
  vertical-align: middle;
}

/* ── FAQ section ──────────────────────────────────────────────── */

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

@media (min-width: 768px) {
  .faq-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
}

.faq-item {
  border-top: 1px solid var(--line);
  padding-top: var(--s-4);
}

.faq-item h4 {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 var(--s-2);
  line-height: 1.35;
}

[dir="rtl"] .faq-item h4 { font-family: var(--font-arabic); }

.faq-item p {
  font-size: 0.875rem;
  margin: 0;
  line-height: 1.6;
}

/* ── Address claim line ───────────────────────────────────────── */

.address-claim {
  font-size: 0.8125rem;
  color: var(--ash);
  margin-top: var(--s-3);
  letter-spacing: 0.04em;
}

[dir="rtl"] .address-claim { letter-spacing: 0; }

.address-claim strong { color: var(--navy); font-weight: 500; }

/* ── H1 hover tracking (motion) ───────────────────────────────── */

.hero-claim { transition: letter-spacing 400ms ease; }
.hero-claim:hover { letter-spacing: -0.01em; }

/* Body padding for sticky bar so content isn't hidden under it */
body { padding-bottom: 60px; }

@media (min-width: 992px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .sticky-bar.is-visible { display: none; }
}

/* ============================================================
   RESPONSIVE PASS — mobile-first, tablet + mobile fixes
   Breakpoints: 480px (mobile-sm), 640px (mobile-lg),
                768px (tablet), 1024px (desktop)
   ============================================================ */

/* ── Universal mobile-safe resets ───────────────────────────── */
*  { box-sizing: border-box; }
img { max-width: 100%; height: auto; }

@media (max-width: 767px) {
  /* Tighter base spacing on mobile */
  :root {
    --s-8:  3rem;
    --s-9:  4rem;
    --s-10: 5rem;
  }

  .section { padding: var(--s-7) 0; }

  /* Container gets more breathing room on narrow screens */
  .container { padding: 0 var(--s-4); }

  /* ── Nav ─────────────────────────────────────────────────── */
  .nav-cta .btn-small { font-size: 0.8125rem; padding: 0.5rem 0.875rem; }
  .lang-switch { font-size: 0.75rem; padding: 0.4rem 0.7rem; }

  /* ── Hero ─────────────────────────────────────────────────── */
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: var(--s-5);
    padding-top: calc(var(--s-5) + 64px);
    padding-bottom: var(--s-5);
  }

  .hero-claim-number { font-size: clamp(3.5rem, 16vw, 5.5rem); line-height: 0.9; }
  .hero-claim        { font-size: clamp(2rem, 8vw, 3rem); }
  [dir="rtl"] .hero-claim-number { font-size: clamp(3rem, 14vw, 5rem); }

  .hero-sub-claim { font-size: 0.9375rem; max-width: 100%; }

  /* Feature card fills width on mobile */
  .hero-feature-card {
    max-width: 100%;
    transform: none;
    padding: var(--s-5);
  }
  .hero-feature-card:hover { transform: none; }
  .hero-visual::before, .hero-visual::after { display: none; } /* hide decorative rings */

  .hfc-amount { font-size: 2.5rem; }

  .hero-actions {
    flex-direction: column;
    gap: var(--s-3);
  }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-3);
    padding-top: var(--s-4);
  }
  .hero-meta-item .num   { font-size: 1.25rem; }
  .hero-meta-item .label { font-size: 0.6875rem; }

  /* ── Corridor section ────────────────────────────────────── */
  .corridor-head { text-align: center; }
  .corridor-head h2 { font-size: 1.25rem; }

  #corridor-map { min-height: 200px; }

  /* Tile carousel stays horizontal-scroll on mobile */
  .corridor-tiles-wrap {
    margin-inline: calc(var(--s-4) * -1); /* bleed to edge */
    padding-inline: var(--s-4);
  }

  .trust-line { font-size: 0.75rem; text-align: center; padding: 0 var(--s-4); }

  /* ── Weekly bundle ────────────────────────────────────────── */
  .feature-weekly-grid {
    grid-template-columns: 1fr !important;
    gap: var(--s-6);
  }

  .weekly-price .amount { font-size: 3rem; }

  /* ── Products ────────────────────────────────────────────── */
  .products-grid {
    grid-template-columns: 1fr !important;
    max-width: 480px;
    margin-inline: auto;
  }

  .product-img { aspect-ratio: 16 / 7; }

  /* ── Why pillars ─────────────────────────────────────────── */
  .pillars-grid { grid-template-columns: 1fr !important; gap: var(--s-5); }

  .pillar { padding-top: var(--s-4); }

  /* ── Rate card ───────────────────────────────────────────── */
  .rate-card-section .section-head h2 { font-size: clamp(1.25rem, 5vw, 1.75rem); }

  .rate-table { font-size: 0.8125rem; min-width: 520px; }
  .rate-table th, .rate-table td { padding: var(--s-3) var(--s-4); }

  /* Mid-page CTA stacks on mobile */
  .midpage-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s-4);
  }
  .midpage-cta .btn { width: 100%; justify-content: center; }

  /* ── Steps ───────────────────────────────────────────────── */
  .steps { grid-template-columns: 1fr !important; gap: var(--s-5); }
  .step-num { font-size: 3rem; }

  /* ── FAQ ─────────────────────────────────────────────────── */
  .faq-grid { grid-template-columns: 1fr !important; }
  .faq-item h4 { font-size: 0.9375rem; }

  /* ── Location ─────────────────────────────────────────────── */
  .location-grid {
    grid-template-columns: 1fr !important;
    gap: var(--s-5);
  }
  .location-info dl { gap: var(--s-2) var(--s-4); }
  .map-wrap { aspect-ratio: 4 / 3; }

  /* ── CTA banner ──────────────────────────────────────────── */
  .cta-banner h2 { font-size: clamp(1.375rem, 5vw, 2rem); }
  .cta-banner-actions {
    flex-direction: column;
    gap: var(--s-3);
    align-items: stretch;
  }
  .cta-banner-actions .btn { width: 100%; justify-content: center; }

  /* ── Footer ──────────────────────────────────────────────── */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: var(--s-5);
    text-align: center;
  }
  .footer-bottom { flex-direction: column; gap: var(--s-2); text-align: center; }

  /* ── Sticky bar: always visible on mobile (no scroll trigger) */
  .sticky-bar { transform: none !important; }

  /* Body padding for sticky bar */
  body { padding-bottom: 64px; }
}

/* ── Tablet (768–1023px) ─────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1023px) {

  /* Hero: 2-col but reduced gap on tablet */
  .hero-inner {
    gap: var(--s-6);
    padding-top: calc(var(--s-6) + 72px);
  }

  .hero-claim-number { font-size: clamp(3.5rem, 8vw, 5.5rem); }
  .hero-claim        { font-size: clamp(1.75rem, 4vw, 2.5rem); }

  .hero-feature-card { padding: var(--s-5); max-width: 320px; }
  .hfc-amount        { font-size: 2.5rem; }

  /* Products: 2-col on tablet */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 100%;
    justify-content: stretch;
  }
  /* 3rd card spans full width on tablet 2-col grid */
  .product-card:last-child { grid-column: 1 / -1; max-width: 380px; margin-inline: auto; }

  /* Pillars: 2-col on tablet, last one full if odd */
  .pillars-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Steps: 3-col still works at tablet, reduce gap */
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }

  /* FAQ: 2-col */
  .faq-grid { grid-template-columns: repeat(2, 1fr) !important; }

  /* Location: single col on tablet */
  .location-grid { grid-template-columns: 1fr !important; }
  .map-wrap { aspect-ratio: 16 / 7; }

  /* Footer: 2-col on tablet */
  .footer-grid { grid-template-columns: 1fr 1fr !important; }

  /* Sticky bar on tablet too */
  .sticky-bar { display: flex !important; transform: none !important; }
  body { padding-bottom: 64px; }
}

/* ── Extra-small screens (< 375px) ─────────────────────────── */
@media (max-width: 374px) {
  .hero-claim-number { font-size: 3rem; }
  .hero-claim        { font-size: 1.75rem; }
  [dir="rtl"] .hero-claim-number { font-size: 2.5rem; }

  .hfc-amount        { font-size: 2rem; }
  .weekly-price .amount { font-size: 2.25rem; }

  .hero-meta { grid-template-columns: 1fr 1fr; }
  .hero-meta-item:last-child { grid-column: 1 / -1; text-align: center; }

  .nav-cta .btn-small { display: none; } /* Let mobile menu handle it */

  .sticky-bar-btn { font-size: 0.875rem; padding: var(--s-3) var(--s-4); }
}

/* ── Corridor D3 map — force height on small screens ─────────── */
@media (max-width: 767px) {
  #corridor-map svg { min-width: 320px; }
  .corridor-map-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
}

/* ── Nav: ensure logo doesn't overflow on small screens ──────── */
@media (max-width: 380px) {
  .brand-logo { height: 28px; }
  .lang-switch { display: none; } /* hidden on very small; AR/EN switch in mobile menu */
}

/* ── Prevent horizontal overflow globally ────────────────────── */
html, body { max-width: 100%; overflow-x: hidden; }

/* ── RTL-specific mobile adjustments ─────────────────────────── */
@media (max-width: 767px) {
  [dir="rtl"] .hero-actions { flex-direction: column; }
  [dir="rtl"] .hero-actions .btn { width: 100%; }
  [dir="rtl"] .midpage-cta { align-items: flex-end; }
  [dir="rtl"] .footer-grid { text-align: center; }
  [dir="rtl"] .location-info dl { grid-template-columns: auto 1fr; }
}


/* ── Orthographic Globe (mobile map) ─────────────────────────── */

.corridor-svg--globe {
  display: block;
  margin: 0 auto;
  max-width: 360px;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Remove horizontal scroll on mobile corridor map */
@media (max-width: 767px) {
  .corridor-map-wrap {
    overflow: visible;
    min-height: 0;
  }
  #corridor-map svg {
    min-width: 0;
    overflow: visible;
  }
}

/* City label below the globe */
.globe-city-label {
  display: block;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  min-height: 1.8em;
  margin-top: var(--s-3);
  transition: color 300ms ease, opacity 300ms ease;
}

[dir="rtl"] .globe-city-label {
  font-family: var(--font-arabic);
  letter-spacing: 0;
  text-transform: none;
}

.globe-city-label.active {
  color: var(--gold);
}

/* ============================================================
   SPOKE-AND-HUB MAP — mobile-only, Option A
   ============================================================ */

/* Desktop: show D3 world map, hide spoke diagram */
#corridor-map    { display: block; }
.spoke-hub-wrap  { display: none; }

/* Mobile: hide D3 world map, show spoke diagram */
@media (max-width: 767px) {
  #corridor-map    { display: none; }
  .spoke-hub-wrap  { display: block; }
}

/* Wrapper sizing */
.spoke-hub-wrap {
  width: 100%;
  max-width: 420px;
  margin: var(--s-5) auto var(--s-4);
  position: relative;
  user-select: none;
}

.spoke-hub-wrap svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* ── SVG element classes (set by JS) ── */

/* Spokes */
.sh-spoke {
  stroke: rgba(201, 168, 76, 0.55);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: var(--spoke-len, 120) var(--spoke-len, 120);
  stroke-dashoffset: var(--spoke-len, 120);
  fill: none;
  transition: stroke-opacity 200ms;
}

.sh-spoke.is-drawn { stroke-dashoffset: 0; }
.sh-spoke:hover    { stroke-opacity: 1; stroke: var(--gold); }

/* City dot outer ring */
.sh-city-ring {
  fill: none;
  stroke: rgba(201, 168, 76, 0.3);
  stroke-width: 1;
  opacity: 0;
  transition: all 200ms;
}

/* City dot fill */
.sh-city-dot {
  fill: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: transform 200ms, opacity 200ms;
  transform-origin: inherit;
}

.sh-city-group:hover .sh-city-dot  { fill: var(--gold); transform: scale(1.5); }
.sh-city-group:hover .sh-city-ring { stroke-opacity: 1; }

/* City label */
.sh-city-label {
  fill: rgba(255, 255, 255, 0.80);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: fill 200ms;
}

[dir="rtl"] .sh-city-label {
  font-family: 'Tajawal', system-ui, sans-serif;
  font-size: 12px;
  text-transform: none;
  letter-spacing: 0;
}

.sh-city-group:hover .sh-city-label { fill: var(--gold-soft); }

/* Corridor badge (appears on hover above/below city) */
.sh-badge {
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms;
}

.sh-badge rect {
  fill: rgba(1, 44, 92, 0.92);
  rx: 3;
}

.sh-badge text {
  fill: rgba(255, 255, 255, 0.65);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.sh-city-group:hover .sh-badge { opacity: 1; }

/* Hub rings */
.sh-hub-ring-outer {
  fill: none;
  stroke: rgba(201, 168, 76, 0.18);
  stroke-width: 1;
  opacity: 0;
  animation: hub-breathe 3s ease-in-out infinite;
}

.sh-hub-ring-mid {
  fill: rgba(201, 168, 76, 0.1);
  opacity: 0;
}

.sh-hub-core {
  fill: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.6));
  opacity: 0;
}

.sh-hub-label {
  fill: var(--gold);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-anchor: middle;
  opacity: 0;
}

[dir="rtl"] .sh-hub-label {
  font-family: 'Tajawal', system-ui, sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

/* Pulse ring animation */
@keyframes hub-breathe {
  0%, 100% { r: 26; opacity: 0.5; }
  50%       { r: 36; opacity: 0; }
}

/* City group cursor */
.sh-city-group { cursor: default; }

/* ============================================================
   BOOKING MODAL — IDR CoSpace
   ============================================================ */

/* ── Overlay ─────────────────────────────────────────────────── */
.bm-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: rgba(1, 15, 40, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
  padding: 0;
}

.bm-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

/* ── Card ─────────────────────────────────────────────────────── */
.bm-card {
  background: var(--paper);
  width: 100%;
  max-height: 92dvh;
  overflow-y: auto;
  border-radius: 16px 16px 0 0;
  padding: var(--s-6) var(--s-5) calc(var(--s-6) + env(safe-area-inset-bottom));
  transform: translateY(40px);
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.bm-overlay.is-open .bm-card {
  transform: translateY(0);
}

@media (min-width: 640px) {
  .bm-overlay {
    align-items: center;
    padding: var(--s-5);
  }
  .bm-card {
    max-width: 480px;
    border-radius: 12px;
    max-height: 90dvh;
    padding: var(--s-7);
  }
}

/* Drag handle on mobile */
.bm-handle {
  width: 40px;
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin: 0 auto var(--s-5);
}

@media (min-width: 640px) { .bm-handle { display: none; } }

/* ── Header ───────────────────────────────────────────────────── */
.bm-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--line-soft);
}

.bm-header-text { flex: 1; }

.bm-tag {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(201,168,76,0.18);
  padding: 0.25rem 0.625rem;
  border-radius: 3px;
  margin-bottom: var(--s-2);
}

[dir="rtl"] .bm-tag { letter-spacing: 0; text-transform: none; }

.bm-title {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 var(--s-2);
  line-height: 1.2;
}

[dir="rtl"] .bm-title { font-family: var(--font-arabic); font-weight: 700; }

.bm-desc {
  font-size: 0.875rem;
  color: var(--ash);
  margin: 0;
  line-height: 1.5;
}

/* Close button */
.bm-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--line-soft);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ash);
  font-size: 1.125rem;
  line-height: 1;
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
  margin-top: 2px;
}

.bm-close:hover { background: var(--navy); color: var(--paper); }

/* ── Sections ─────────────────────────────────────────────────── */
.bm-section {
  margin-bottom: var(--s-5);
}

.bm-section[hidden] { display: none; }

.bm-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--s-3);
}

[dir="rtl"] .bm-label { letter-spacing: 0; text-transform: none; }

/* ── Button groups (duration, hours, pax, arrival) ─────────────── */
.bm-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.bm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  transition: all 200ms ease;
  white-space: nowrap;
  line-height: 1.3;
}

[dir="rtl"] .bm-btn { font-family: var(--font-arabic); }

.bm-btn:hover { border-color: var(--navy); background: var(--cream); }

.bm-btn.is-active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  color: var(--navy);
  font-weight: 600;
}

/* ── Time slots ───────────────────────────────────────────────── */
.bm-slots {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
}

.bm-slot {
  padding: 0.4rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  border: 1.5px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--navy);
  cursor: pointer;
  transition: all 180ms ease;
  letter-spacing: 0.02em;
}

[dir="rtl"] .bm-slot { font-family: var(--font-arabic); }

.bm-slot:hover { border-color: var(--navy); }

.bm-slot.is-active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
  font-weight: 600;
}

/* ── Inputs ───────────────────────────────────────────────────── */
.bm-input {
  display: block;
  width: 100%;
  padding: 0.6875rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--navy);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 6px;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 180ms ease;
  line-height: 1.4;
}

[dir="rtl"] .bm-input { font-family: var(--font-arabic); text-align: right; }

.bm-input:focus { outline: none; border-color: var(--navy); }
.bm-input:focus-visible { box-shadow: 0 0 0 3px rgba(201,168,76,0.25); }

.bm-input::placeholder { color: var(--line); }

textarea.bm-input { resize: none; min-height: 72px; }

/* Date field — hide browser chrome clutter on mobile */
input[type="date"].bm-input::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
}

/* ── Validation error ─────────────────────────────────────────── */
.bm-error {
  font-size: 0.8125rem;
  color: #C0392B;
  margin-top: var(--s-2);
  display: none;
}
.bm-error.is-visible { display: block; }

/* Weekend warning */
.bm-weekend-warn {
  font-size: 0.8125rem;
  color: #C0392B;
  margin-top: var(--s-2);
  display: none;
}
.bm-weekend-warn.is-visible { display: block; }

/* ── Price estimate ───────────────────────────────────────────── */
.bm-estimate {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: var(--s-4) var(--s-5);
  margin-bottom: var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.bm-estimate-left { flex: 1; }

.bm-estimate-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: var(--s-1);
}

[dir="rtl"] .bm-estimate-label { letter-spacing: 0; text-transform: none; }

.bm-estimate-price {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 2px;
}

[dir="rtl"] .bm-estimate-price { font-family: var(--font-arabic); }

.bm-estimate-vat {
  font-size: 0.8125rem;
  color: var(--ash);
}

.bm-estimate-surcharge {
  font-size: 0.8125rem;
  color: var(--ash);
  margin-top: 2px;
}

/* ── Submit button ────────────────────────────────────────────── */
.bm-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  width: 100%;
  padding: 1rem var(--s-5);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  background: #25D366;
  color: #fff;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 200ms, transform 120ms;
  margin-bottom: var(--s-3);
}

[dir="rtl"] .bm-submit { font-family: var(--font-arabic); }

.bm-submit:hover  { background: #1ebe5d; }
.bm-submit:active { transform: scale(0.985); }

.bm-submit svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ── Footer note ─────────────────────────────────────────────── */
.bm-note {
  font-size: 0.75rem;
  color: var(--ash);
  text-align: center;
  margin: 0;
  line-height: 1.5;
}

[dir="rtl"] .bm-note { font-family: var(--font-arabic); }

/* ── Scrollbar in modal ───────────────────────────────────────── */
.bm-card::-webkit-scrollbar { width: 4px; }
.bm-card::-webkit-scrollbar-track { background: transparent; }
.bm-card::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }
