/* =========================================================
   تشييد وأسس | Tashyeed & Osos
   Design System v1.0 — Luxury Navy + Gold Theme
   ========================================================= */

/* ---------- CSS Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { min-height: 100vh; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Theme Variables ---------- */
:root {
  /* Brand palette (extracted from logo) */
  --c-navy-deep: #0a1428;
  --c-navy: #0f1c33;
  --c-navy-light: #15243d;
  --c-navy-card: #1a2c48;
  --c-gold: #c9a961;
  --c-gold-light: #e6c98a;
  --c-gold-dark: #a88842;
  --c-gold-glow: rgba(201, 169, 97, 0.35);

  --c-white: #ffffff;
  --c-text: #e8eef7;
  --c-text-muted: #b8c5d6;
  --c-text-dim: #8a99b3;
  --c-border: rgba(201, 169, 97, 0.15);
  --c-border-strong: rgba(201, 169, 97, 0.3);
  --c-overlay: rgba(10, 20, 40, 0.85);

  /* Gradients */
  --grad-gold: linear-gradient(135deg, #c9a961 0%, #e6c98a 50%, #a88842 100%);
  --grad-gold-soft: linear-gradient(135deg, rgba(201,169,97,0.18) 0%, rgba(230,201,138,0.08) 100%);
  --grad-dark: linear-gradient(180deg, #0a1428 0%, #0f1c33 100%);
  --grad-radial: radial-gradient(circle at 30% 20%, rgba(201,169,97,0.12) 0%, transparent 50%);
  --grad-hero: linear-gradient(135deg, rgba(10,20,40,0.95) 0%, rgba(15,28,51,0.85) 50%, rgba(10,20,40,0.95) 100%);

  /* Fonts */
  --f-arabic: 'Tajawal', 'Segoe UI', Tahoma, sans-serif;
  --f-english: 'Inter', 'Segoe UI', sans-serif;
  --f-display: 'Cormorant Garamond', 'Tajawal', serif;
  --f-num: Arial, 'Tajawal', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-xxl: 6rem;

  /* Radius */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 4px 12px rgba(0, 0, 0, 0.2);
  --sh-md: 0 8px 24px rgba(0, 0, 0, 0.3);
  --sh-lg: 0 16px 48px rgba(0, 0, 0, 0.4);
  --sh-gold: 0 8px 32px rgba(201, 169, 97, 0.25);
  --sh-gold-strong: 0 0 40px rgba(201, 169, 97, 0.4);
  --sh-inset: inset 0 1px 0 rgba(255, 255, 255, 0.08);

  /* Transitions */
  --t-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --t-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --t-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container: 1200px;
  --container-narrow: 920px;
  --header-h: 84px;
  --header-h-scroll: 68px;
}

/* ---------- Numbers always Arial ---------- */
.num, time, .price, .stat-num, [data-num] {
  font-family: var(--f-num) !important;
  font-feature-settings: 'tnum' on, 'lnum' on;
}

/* ---------- Base ---------- */
html[lang="ar"], html[lang="ar"] body { font-family: var(--f-arabic); }
html[lang="en"], html[lang="en"] body { font-family: var(--f-english); }

body {
  background: var(--c-navy-deep);
  color: var(--c-text);
  font-size: 16px;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: var(--grad-radial);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Selection ---------- */
::selection { background: var(--c-gold); color: var(--c-navy-deep); }
::-moz-selection { background: var(--c-gold); color: var(--c-navy-deep); }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--c-navy-deep); }
::-webkit-scrollbar-thumb { background: var(--grad-gold); border-radius: var(--r-pill); }
::-webkit-scrollbar-thumb:hover { background: var(--c-gold); }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-md); position: relative; z-index: 1; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--space-md); }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.25; color: var(--c-white); letter-spacing: -0.01em; }
.h-display { font-family: var(--f-display); font-weight: 600; letter-spacing: 0.02em; }
html[lang="ar"] .h-display { font-family: var(--f-arabic); font-weight: 800; letter-spacing: -0.02em; }

h1, .h1 { font-size: clamp(2rem, 5vw + 1rem, 4rem); margin-bottom: var(--space-md); }
h2, .h2 { font-size: clamp(1.75rem, 3.5vw + 0.5rem, 2.75rem); margin-bottom: var(--space-md); }
h3, .h3 { font-size: clamp(1.35rem, 2vw + 0.5rem, 1.75rem); margin-bottom: var(--space-sm); }
h4, .h4 { font-size: clamp(1.15rem, 1.5vw + 0.4rem, 1.3rem); }
h5, .h5 { font-size: 1.1rem; }

p { color: var(--c-text-muted); line-height: 1.75; }
.lead { font-size: clamp(1.05rem, 1.2vw + 0.4rem, 1.25rem); color: var(--c-text); line-height: 1.8; }

.text-gold { color: var(--c-gold) !important; }
.text-white { color: var(--c-white) !important; }
.text-muted { color: var(--c-text-muted) !important; }
.text-center { text-align: center; }

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

/* Eyebrow / kicker */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-sm);
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}
html[lang="ar"] .eyebrow { letter-spacing: 0.04em; text-transform: none; font-weight: 700; }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  border-radius: var(--r-pill);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  border: 1px solid transparent;
  min-height: 48px;
}
.btn svg { width: 18px; height: 18px; transition: transform var(--t-base); }
.btn:hover svg { transform: translateX(4px); }
html[dir="rtl"] .btn:hover svg { transform: translateX(-4px); }

.btn-primary {
  background: var(--grad-gold);
  color: var(--c-navy-deep);
  box-shadow: var(--sh-gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #e6c98a 0%, #c9a961 100%);
  opacity: 0;
  transition: opacity var(--t-base);
}
.btn-primary > * { position: relative; z-index: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--sh-gold-strong); }
.btn-primary:hover::before { opacity: 1; }

.btn-outline {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
}
.btn-outline:hover {
  background: var(--c-gold);
  color: var(--c-navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--sh-gold);
}

.btn-ghost {
  background: rgba(201, 169, 97, 0.08);
  color: var(--c-text);
  border-color: var(--c-border);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(201, 169, 97, 0.15); border-color: var(--c-gold); color: var(--c-gold); }

.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }

.btn-lg { padding: 1.1em 2.5em; font-size: 1.05rem; min-height: 56px; }
.btn-sm { padding: 0.7em 1.4em; font-size: 0.88rem; min-height: 40px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  transition: all var(--t-base);
  background: linear-gradient(180deg, rgba(10,20,40,0.4) 0%, rgba(10,20,40,0) 100%);
  backdrop-filter: blur(0px);
}
.site-header.scrolled {
  height: var(--header-h-scroll);
  background: rgba(10, 20, 40, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border);
  box-shadow: var(--sh-md);
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: transform var(--t-base);
}
.brand:hover { transform: scale(1.02); }
.brand img {
  height: 68px;
  width: auto;
  transition: height var(--t-base);
  filter: brightness(0) invert(1);
}
.site-header.scrolled .brand img { height: 56px; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name strong { color: var(--c-white); font-size: 1.05rem; font-weight: 800; }
.brand-name span { color: var(--c-gold); font-size: 0.72rem; letter-spacing: 0.1em; }

.nav-main { display: flex; align-items: center; gap: var(--space-lg); }
.nav-list { display: flex; align-items: center; gap: 0.4rem; }
.nav-link {
  position: relative;
  padding: 0.6em 1em;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-text-muted);
  transition: color var(--t-base);
  border-radius: var(--r-pill);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--grad-gold);
  transition: width var(--t-base), left var(--t-base);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--c-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; left: 20%; }

.header-actions { display: flex; align-items: center; gap: 0.7rem; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.5em 0.9em;
  border: 1px solid var(--c-border);
  border-radius: var(--r-pill);
  color: var(--c-text-muted);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--t-base);
}
.lang-switch:hover { color: var(--c-gold); border-color: var(--c-gold); }
.lang-switch svg { width: 14px; height: 14px; }

/* Mobile menu trigger */
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  color: var(--c-gold);
  transition: all var(--t-base);
}
.menu-toggle:hover { background: rgba(201, 169, 97, 0.1); }
.menu-toggle svg { width: 22px; height: 22px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 40, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-md) var(--space-md);
}
html[dir="rtl"] .mobile-nav { transform: translateX(-100%); }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--c-gold);
}
html[dir="rtl"] .mobile-nav-close { right: auto; left: var(--space-md); }
.mobile-nav-close svg { width: 28px; height: 28px; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 3rem; }
.mobile-nav-list .nav-link {
  font-size: 1.5rem;
  padding: 1rem;
  border-bottom: 1px solid var(--c-border);
  border-radius: 0;
}
.mobile-nav-list .nav-link::after { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xxl);
  overflow: hidden;
  background: var(--grad-dark);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,169,97,0.18) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201,169,97,0.08) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,169,97,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,169,97,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw + 1rem, 4.2rem);
  line-height: 1.15;
  margin-bottom: var(--space-md);
}
.hero-title .gold-text { display: block; margin-top: 0.2em; }
.hero-sub {
  font-size: clamp(1.05rem, 1vw + 0.6rem, 1.25rem);
  color: var(--c-text-muted);
  margin-bottom: var(--space-lg);
  max-width: 560px;
  line-height: 1.85;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: var(--space-lg); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-border);
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-size: clamp(1.5rem, 1.5vw + 0.8rem, 2.2rem);
  font-weight: 800;
  color: var(--c-gold);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--c-text-dim); letter-spacing: 0.04em; }

/* Hero visual (3D card stack) */
.hero-visual {
  position: relative;
  height: 540px;
}
.hero-card {
  position: absolute;
  background: linear-gradient(135deg, rgba(21,36,61,0.95) 0%, rgba(15,28,51,0.85) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 1.8rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--sh-lg);
}
.hero-card-1 { top: 5%; left: 5%; width: 62%; transform: rotate(-3deg); animation: float-1 8s ease-in-out infinite; }
.hero-card-2 { top: 30%; right: 0; width: 55%; transform: rotate(2deg); animation: float-2 9s ease-in-out infinite; }
.hero-card-3 { bottom: 5%; left: 15%; width: 60%; transform: rotate(-1deg); animation: float-3 10s ease-in-out infinite; }

.hero-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--grad-gold-soft);
  border: 1px solid var(--c-border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.9rem;
}
.hero-card-icon svg { width: 24px; height: 24px; color: var(--c-gold); }
.hero-card h4 { color: var(--c-white); margin-bottom: 0.3rem; font-size: 1.05rem; }
.hero-card p { font-size: 0.86rem; color: var(--c-text-dim); }

@keyframes float-1 { 0%, 100% { transform: rotate(-3deg) translateY(0); } 50% { transform: rotate(-3deg) translateY(-12px); } }
@keyframes float-2 { 0%, 100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-10px); } }
@keyframes float-3 { 0%, 100% { transform: rotate(-1deg) translateY(0); } 50% { transform: rotate(-1deg) translateY(-14px); } }

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--c-text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  animation: bounce-soft 2s ease-in-out infinite;
}
.scroll-cue svg { width: 16px; height: 16px; }
@keyframes bounce-soft { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* =========================================================
   SECTION (generic)
   ========================================================= */
.section { padding: var(--space-xxl) 0; position: relative; }
.section-sm { padding: var(--space-xl) 0; }
.section-alt { background: var(--c-navy); }

.section-head { text-align: center; max-width: 760px; margin: 0 auto var(--space-xl); }
.section-head .eyebrow { justify-content: center; }
.section-head .eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--c-gold);
}

/* =========================================================
   CARDS
   ========================================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}
.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, rgba(21,36,61,0.7) 0%, rgba(15,28,51,0.5) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--grad-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
html[dir="rtl"] .card::before { transform-origin: right; }
.card:hover {
  transform: translateY(-6px);
  border-color: var(--c-border-strong);
  box-shadow: var(--sh-lg);
}
.card:hover::before { transform: scaleX(1); }

.card-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: var(--grad-gold-soft);
  border: 1px solid var(--c-border-strong);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-sm);
  transition: all var(--t-base);
}
.card-icon svg { width: 28px; height: 28px; color: var(--c-gold); }
.card:hover .card-icon { background: var(--grad-gold); transform: scale(1.08) rotate(-5deg); }
.card:hover .card-icon svg { color: var(--c-navy-deep); }

.card h3, .card h4 { margin-bottom: 0.6rem; }
.card p { font-size: 0.94rem; }

/* Service detail block */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xxl);
}
.service-block:nth-child(even) { direction: rtl; }
html[dir="rtl"] .service-block:nth-child(even) { direction: ltr; }
.service-block:nth-child(even) > * { direction: ltr; }
html[dir="rtl"] .service-block:nth-child(even) > * { direction: rtl; }
.service-visual {
  height: 360px;
  border-radius: var(--r-lg);
  background: var(--grad-gold-soft);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(201,169,97,0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(201,169,97,0.15) 0%, transparent 50%);
}
.service-visual svg {
  width: 140px; height: 140px;
  color: var(--c-gold);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(201,169,97,0.4));
}
.service-feature-list { list-style: none; padding: 0; margin-top: var(--space-md); }
.service-feature-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.7em 0;
  color: var(--c-text);
  font-size: 0.98rem;
}
.service-feature-list li svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--c-gold);
  margin-top: 2px;
}

/* =========================================================
   VALUES / FEATURES
   ========================================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.value-item {
  text-align: center;
  padding: var(--space-md);
}
.value-icon {
  width: 72px; height: 72px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  background: var(--grad-gold-soft);
  border: 1px solid var(--c-border-strong);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: all var(--t-base);
}
.value-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  opacity: 0;
  transition: opacity var(--t-base);
}
.value-icon svg { width: 32px; height: 32px; color: var(--c-gold); }
.value-item:hover .value-icon { transform: scale(1.1); }
.value-item:hover .value-icon::before { opacity: 1; }

/* =========================================================
   PACKAGES
   ========================================================= */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}
.pkg-card {
  background: linear-gradient(180deg, rgba(21,36,61,0.85) 0%, rgba(15,28,51,0.7) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--t-base);
  overflow: hidden;
}
.pkg-card:hover {
  transform: translateY(-8px);
  border-color: var(--c-border-strong);
  box-shadow: var(--sh-lg);
}
.pkg-card.featured {
  border-color: var(--c-gold);
  background: linear-gradient(180deg, rgba(201,169,97,0.08) 0%, rgba(21,36,61,0.85) 30%);
  transform: scale(1.04);
  box-shadow: var(--sh-gold);
  z-index: 2;
}
.pkg-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.pkg-badge {
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--grad-gold);
  color: var(--c-navy-deep);
  padding: 0.4em 1em;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: 0 var(--r-lg) 0 var(--r-md);
}
html[dir="rtl"] .pkg-badge { right: auto; left: -1px; border-radius: var(--r-lg) 0 var(--r-md) 0; }

.pkg-name {
  font-size: 1.1rem;
  color: var(--c-gold);
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.pkg-tagline {
  font-size: 0.86rem;
  color: var(--c-text-dim);
  margin-bottom: var(--space-md);
  min-height: 2.6em;
}
.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 0.3em;
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--c-border);
}
.pkg-price .price {
  font-size: clamp(1.8rem, 2vw + 0.6rem, 2.4rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
}
.pkg-price .currency {
  font-size: 0.95rem;
  color: var(--c-gold);
  font-weight: 700;
}
.pkg-price .period {
  font-size: 0.82rem;
  color: var(--c-text-dim);
  margin-inline-start: 0.4em;
}

.pkg-features { list-style: none; padding: 0; margin: 0 0 var(--space-md); flex: 1; }
.pkg-features li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  padding: 0.55em 0;
  font-size: 0.92rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}
.pkg-features li svg {
  flex-shrink: 0;
  width: 18px; height: 18px;
  color: var(--c-gold);
  margin-top: 3px;
}
.pkg-features li.disabled { color: var(--c-text-dim); opacity: 0.5; }
.pkg-features li.disabled svg { color: var(--c-text-dim); }

.pkg-cta { margin-top: auto; }
.pkg-cta .btn { width: 100%; }

/* Custom package slider */
.custom-pkg {
  background: linear-gradient(135deg, rgba(21,36,61,0.95) 0%, rgba(15,28,51,0.85) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
  position: relative;
  overflow: hidden;
}
.custom-pkg::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(201,169,97,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.custom-pkg-head {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.custom-pkg-budget {
  background: var(--grad-gold);
  color: var(--c-navy-deep);
  padding: 0.6em 1.4em;
  border-radius: var(--r-pill);
  font-weight: 800;
  font-size: 1.15rem;
  box-shadow: var(--sh-gold);
}
.custom-pkg-budget .num { font-family: var(--f-num); }

.budget-slider {
  position: relative;
  margin: var(--space-lg) 0;
}
.budget-slider input[type="range"] {
  width: 100%;
  height: 8px;
  background: linear-gradient(to right, var(--c-gold) 0%, var(--c-gold) 0%, var(--c-navy-card) 0%, var(--c-navy-card) 100%);
  border-radius: var(--r-pill);
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
}
html[dir="rtl"] .budget-slider input[type="range"] {
  direction: rtl;
}
.budget-slider input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  border: 3px solid var(--c-navy-deep);
  box-shadow: var(--sh-gold-strong);
  cursor: grab;
  transition: transform var(--t-fast);
}
.budget-slider input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.budget-slider input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.25); }
.budget-slider input[type="range"]::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  border: 3px solid var(--c-navy-deep);
  cursor: grab;
}
.budget-slider-labels {
  display: flex; justify-content: space-between;
  font-size: 0.82rem; color: var(--c-text-dim);
  margin-top: 0.6rem;
}
.budget-slider-labels span:first-child { color: var(--c-text-muted); }
.budget-slider-labels span:last-child { color: var(--c-text-muted); }

.budget-tier {
  display: inline-block;
  padding: 0.4em 1em;
  border-radius: var(--r-pill);
  background: var(--grad-gold-soft);
  border: 1px solid var(--c-border-strong);
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: var(--space-md);
}

.custom-pkg-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.75rem;
}
.custom-pkg-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.9em 1em;
  background: rgba(21, 36, 61, 0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
  font-size: 0.92rem;
}
.custom-pkg-feature.active {
  background: rgba(201, 169, 97, 0.08);
  border-color: var(--c-border-strong);
  color: var(--c-white);
}
.custom-pkg-feature.active svg { color: var(--c-gold); }
.custom-pkg-feature.inactive { opacity: 0.35; }
.custom-pkg-feature svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--c-text-dim); transition: color var(--t-base); }

/* =========================================================
   TIMELINE
   ========================================================= */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-md) 0;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, var(--c-gold) 10%, var(--c-gold) 90%, transparent);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-md);
  align-items: center;
  margin-bottom: var(--space-lg);
}
.timeline-item:nth-child(even) { direction: rtl; }
html[dir="rtl"] .timeline-item:nth-child(even) { direction: ltr; }
.timeline-content {
  background: linear-gradient(180deg, rgba(21,36,61,0.85) 0%, rgba(15,28,51,0.7) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  text-align: start;
}
.timeline-item:nth-child(even) .timeline-content { direction: ltr; }
html[dir="rtl"] .timeline-item:nth-child(even) .timeline-content { direction: rtl; }
.timeline-year {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--c-navy-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--sh-gold);
  flex-shrink: 0;
  font-family: var(--f-num);
}
.timeline-item h4 { margin-bottom: 0.4rem; }

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
}
.contact-channels { display: grid; gap: 0.9rem; }
.channel {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 1.3rem;
  background: linear-gradient(135deg, rgba(21,36,61,0.7) 0%, rgba(15,28,51,0.5) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  transition: all var(--t-base);
}
.channel:hover {
  transform: translateX(4px);
  border-color: var(--c-gold);
  background: rgba(201, 169, 97, 0.05);
}
html[dir="rtl"] .channel:hover { transform: translateX(-4px); }
.channel-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--grad-gold-soft);
  border: 1px solid var(--c-border-strong);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel-icon svg { width: 22px; height: 22px; color: var(--c-gold); }
.channel-info { display: flex; flex-direction: column; gap: 0.1rem; flex: 1; min-width: 0; }
.channel-label { font-size: 0.82rem; color: var(--c-text-dim); }
.channel-value { color: var(--c-white); font-weight: 600; font-size: 0.95rem; word-break: break-all; }

.contact-form {
  background: linear-gradient(135deg, rgba(21,36,61,0.7) 0%, rgba(15,28,51,0.5) 100%);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
}
.form-row { display: grid; gap: var(--space-md); margin-bottom: var(--space-md); }
.form-row-2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field label { font-size: 0.88rem; color: var(--c-text-muted); font-weight: 600; }
.field input, .field textarea, .field select {
  padding: 0.9em 1.1em;
  background: rgba(10, 20, 40, 0.6);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  color: var(--c-white);
  font-size: 0.96rem;
  transition: all var(--t-base);
  font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--c-gold);
  background: rgba(10, 20, 40, 0.85);
  box-shadow: 0 0 0 3px var(--c-gold-glow);
}
.field textarea { min-height: 140px; resize: vertical; }
.honeypot { position: absolute; left: -9999px; }
.form-msg { padding: 1em; border-radius: var(--r-md); margin-top: var(--space-sm); display: none; }
.form-msg.success { background: rgba(34, 197, 94, 0.1); border: 1px solid rgba(34, 197, 94, 0.3); color: #4ade80; display: block; }
.form-msg.error { background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.3); color: #f87171; display: block; }

/* =========================================================
   FAQ
   ========================================================= */
.faq-list { display: grid; gap: 0.7rem; max-width: 860px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  background: rgba(21, 36, 61, 0.5);
  overflow: hidden;
  transition: border-color var(--t-base);
}
.faq-item.open { border-color: var(--c-border-strong); }
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.1em 1.3em;
  text-align: start;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-white);
  transition: color var(--t-base);
}
.faq-q:hover { color: var(--c-gold); }
.faq-q svg {
  width: 20px; height: 20px;
  color: var(--c-gold);
  transition: transform var(--t-base);
  flex-shrink: 0;
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow);
}
.faq-a > div { padding: 0 1.3em 1.3em; color: var(--c-text-muted); line-height: 1.85; }
.faq-item.open .faq-a { max-height: 500px; }

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.marquee {
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(201,169,97,0.05), transparent);
  border-block: 1px solid var(--c-border);
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: var(--space-lg);
  animation: scroll-x 30s linear infinite;
  white-space: nowrap;
  padding-inline-end: var(--space-lg);
}
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
html[dir="rtl"] .marquee-track { animation-name: scroll-x-rtl; }
@keyframes scroll-x-rtl { from { transform: translateX(0); } to { transform: translateX(50%); } }
.marquee-item {
  display: inline-flex; align-items: center; gap: 0.7rem;
  color: var(--c-gold);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.marquee-item::after {
  content: '';
  width: 6px; height: 6px;
  background: var(--c-gold);
  border-radius: 50%;
  margin-inline-start: var(--space-lg);
}

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  border-radius: var(--r-xl);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--c-border-strong);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201,169,97,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201,169,97,0.1) 0%, transparent 50%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { max-width: 600px; margin: 0 auto var(--space-md); font-size: 1.08rem; }
.cta-band .btn-group { display: inline-flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--c-navy-deep);
  border-top: 1px solid var(--c-border);
  padding: var(--space-xl) 0 var(--space-md);
  margin-top: var(--space-xxl);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 1px;
  background: var(--grad-gold);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}
.footer-brand img {
  height: 96px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-tagline { color: var(--c-text-muted); font-size: 0.95rem; margin-bottom: var(--space-md); max-width: 320px; }
.footer-col h5 {
  color: var(--c-gold);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  font-weight: 800;
}
html[lang="ar"] .footer-col h5 { letter-spacing: 0.02em; text-transform: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a {
  color: var(--c-text-muted);
  font-size: 0.92rem;
  transition: color var(--t-base);
  display: inline-flex; align-items: center; gap: 0.4em;
}
.footer-col a:hover { color: var(--c-gold); }
.footer-col a:hover::before { width: 12px; }
.footer-col a::before {
  content: '';
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width var(--t-base);
}

.footer-bottom {
  border-top: 1px solid var(--c-border);
  padding-top: var(--space-md);
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.85rem; color: var(--c-text-dim); }
.footer-bottom .footer-credit {
  font-size: 0.62rem;
  opacity: 0.55;
}
.footer-bottom .footer-credit a { color: var(--c-gold); }
.social-links { display: flex; gap: 0.6rem; }
.social-links a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  transition: all var(--t-base);
}
.social-links a:hover {
  background: var(--c-gold);
  color: var(--c-navy-deep);
  border-color: var(--c-gold);
  transform: translateY(-2px);
}
.social-links svg { width: 18px; height: 18px; }

/* =========================================================
   LEGAL / PAGE HEADER
   ========================================================= */
.page-header {
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  background: var(--grad-dark);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(201,169,97,0.15) 0%, transparent 50%);
}
.page-header > * { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); }
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  color: var(--c-text-dim);
  font-size: 0.88rem;
  margin-bottom: var(--space-md);
}
.breadcrumb a { color: var(--c-text-muted); transition: color var(--t-base); }
.breadcrumb a:hover { color: var(--c-gold); }
.breadcrumb svg { width: 14px; height: 14px; }

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: var(--space-xl) 0;
}
.legal-content h2 {
  color: var(--c-gold);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
  padding-block-end: 0.4em;
  border-bottom: 1px solid var(--c-border);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: var(--space-md); margin-bottom: 0.6em; font-size: 1.15rem; }
.legal-content p { margin-bottom: 1em; }
.legal-content ul { margin: 0.8em 0 1em; padding-inline-start: 1.5em; }
.legal-content ul li { color: var(--c-text-muted); margin-bottom: 0.5em; list-style: disc; }
.legal-content strong { color: var(--c-white); }
.legal-meta {
  background: rgba(21, 36, 61, 0.5);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--space-md);
  margin-bottom: var(--space-lg);
  font-size: 0.92rem;
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  z-index: 90;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: all var(--t-base);
  animation: pulse-wa 2.5s infinite;
}
html[dir="rtl"] .fab-whatsapp { left: 1.5rem; }
html[dir="ltr"] .fab-whatsapp { right: 1.5rem; }
.fab-whatsapp svg { width: 28px; height: 28px; }
.fab-whatsapp:hover { transform: scale(1.1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 14px rgba(37, 211, 102, 0.12); }
}

/* =========================================================
   ANIMATIONS — Reveal on scroll
   ========================================================= */
[data-anim] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[data-anim="fade-up"] { transform: translateY(30px); }
[data-anim="fade-down"] { transform: translateY(-30px); }
[data-anim="fade-left"] { transform: translateX(30px); }
[data-anim="fade-right"] { transform: translateX(-30px); }
[data-anim="zoom-in"] { transform: scale(0.92); }
[data-anim].in-view { opacity: 1; transform: translate(0) scale(1); }

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* =========================================================
   COOKIE BAR
   ========================================================= */
.cookie-bar {
  position: fixed;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(15, 28, 51, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-lg);
  padding: 1.2rem;
  z-index: 80;
  transform: translateY(150%);
  transition: transform var(--t-slow);
  box-shadow: var(--sh-lg);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p { font-size: 0.88rem; margin-bottom: 0.8rem; }
.cookie-bar .btn-group { display: flex; gap: 0.6rem; }
.cookie-bar .btn { flex: 1; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  :root { --space-xxl: 5rem; }
  .hero-grid { gap: var(--space-lg); }
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card.featured { transform: scale(1); }
  .pkg-card.featured:hover { transform: translateY(-8px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid-3, .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  :root { --space-xxl: 4rem; --space-xl: 3rem; }
  .nav-list, .lang-switch { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero { min-height: auto; padding: calc(var(--header-h) + var(--space-lg)) 0 var(--space-xl); }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-stats { max-width: 480px; margin: 0 auto; }
  .hero-visual { display: none; }
  .scroll-cue { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: var(--space-md); }
  .service-block:nth-child(even) { direction: inherit; }
  .service-visual { height: 280px; }
  .timeline::before { left: 30px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: var(--space-sm); }
  .timeline-item:nth-child(even) { direction: inherit; }
  .timeline-year { width: 60px; height: 60px; font-size: 0.95rem; }
  .timeline-content { grid-column: 2; }
  html[dir="rtl"] .timeline::before { left: auto; right: 30px; }
  html[dir="rtl"] .timeline-item { grid-template-columns: 1fr 60px; }
  html[dir="rtl"] .timeline-content { grid-column: 1; }
  html[dir="rtl"] .timeline-year { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .footer-brand { grid-column: 1 / -1; text-align: center; }
  .footer-brand img { margin: 0 auto 1rem; }
  .footer-tagline { margin-inline: auto; }
}

@media (max-width: 640px) {
  :root { --space-xxl: 3rem; --space-xl: 2rem; --space-lg: 1.6rem; }
  body { font-size: 15px; }
  .container { padding: 0 1rem; }
  .packages-grid, .form-row-2, .cards-grid-3, .cards-grid-4 { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 0.8rem; text-align: center; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; }
  .contact-form { padding: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-bottom { flex-direction: column; }
  .custom-pkg { padding: var(--space-md); }
  .custom-pkg-head { flex-direction: column; align-items: flex-start; }
  .cta-band { padding: var(--space-lg) var(--space-md); }
  .cta-band .btn-group { flex-direction: column; width: 100%; }
  .cta-band .btn { width: 100%; }
  .fab-whatsapp { width: 50px; height: 50px; bottom: 1rem; }
  html[dir="rtl"] .fab-whatsapp { left: 1rem; }
  html[dir="ltr"] .fab-whatsapp { right: 1rem; }
  .cookie-bar { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; padding: 1rem; }
  .pkg-card.featured { transform: scale(1); }
  .brand-name { display: none; }
}

@media (max-width: 480px) {
  .brand img { height: 44px; }
  h1, .h1 { font-size: 1.8rem; }
  h2, .h2 { font-size: 1.5rem; }
  .btn-lg { padding: 1em 1.6em; font-size: 1rem; }
}

@media (max-width: 380px) {
  .container { padding: 0 0.8rem; }
  body { font-size: 14px; }
}

/* Safe-area for iOS */
@supports (padding: max(0px)) {
  .site-header, .container { padding-inline: max(var(--space-md), env(safe-area-inset-left), env(safe-area-inset-right)); }
  .fab-whatsapp { bottom: max(1.5rem, env(safe-area-inset-bottom)); }
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-anim] { opacity: 1 !important; transform: none !important; }
}
