/* The Commitment — main stylesheet (shared EN/AR) */
/* =============================================
   UTILITY CSS — Replaces Tailwind CDN
   Generated for The Commitment website
   ============================================= */

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flex */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-around { justify-content: space-around; }
.self-start { align-self: flex-start; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }

/* Gap */
.gap-0 { gap: 0; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-24 { gap: 6rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.left-6 { left: 1.5rem; }
.right-0 { right: 0; }
.right-6 { right: 1.5rem; }
.-left-6 { left: -1.5rem; }
.-right-4 { right: -1rem; }
.-right-6 { right: -1.5rem; }
.-left-4 { left: -1rem; }
.-top-4 { top: -1rem; }
.-bottom-6 { bottom: -1.5rem; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Width */
.w-auto { width: auto; }
.w-px { width: 1px; }
.w-full { width: 100%; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }

/* Height */
.h-px { height: 1px; }
.h-full { height: 100%; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-96 { height: 24rem; }
.min-h-screen { min-height: 100vh; }

/* Max width */
.max-w-xl  { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

/* Padding */
.p-1  { padding: 0.25rem; }
.p-6  { padding: 1.5rem; }
.p-10 { padding: 2.5rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-36 { padding-top: 9rem; padding-bottom: 9rem; }
.pt-16 { padding-top: 4rem; }
.pb-8  { padding-bottom: 2rem; }
.pt-6  { padding-top: 1.5rem; }

/* Text */
.text-xs  { font-size: 0.75rem; line-height: 1rem; }
.text-sm  { font-size: 0.875rem; line-height: 1.25rem; }
.text-lg  { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl  { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.uppercase   { text-transform: uppercase; }
.lowercase   { text-transform: lowercase; }
.leading-relaxed { line-height: 1.625; }
.leading-loose   { line-height: 2; }
.tracking-widest { letter-spacing: 0.25em; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Font weight */
.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }

/* Font family */
.font-display { font-family: var(--font-display); }
.font-heading { font-family: var(--font-heading); }
.font-body    { font-family: var(--font-body); }

/* Colors — text */
.text-white         { color: #fff; }
.text-earth-deep    { color: var(--earth-deep); }
.text-earth-dark    { color: var(--earth-dark); }
.text-earth-mid     { color: var(--earth-mid); }
.text-earth-sage    { color: var(--earth-sage); }
.text-earth-mist    { color: var(--earth-mist); }
.text-earth-cream   { color: var(--earth-cream); }
.text-earth-ivory   { color: var(--earth-ivory); }
.text-gold-warm     { color: var(--gold-warm); }
.text-gold-light    { color: var(--gold-light); }
.text-text-muted    { color: var(--text-muted); }
.text-red-500       { color: #ef4444; }

/* Colors — bg */
.bg-earth-deep    { background-color: var(--earth-deep); }
.bg-earth-dark    { background-color: var(--earth-dark); }
.bg-earth-mid     { background-color: var(--earth-mid); }
.bg-earth-sage    { background-color: var(--earth-sage); }
.bg-earth-mist    { background-color: var(--earth-mist); }
.bg-earth-cream   { background-color: var(--earth-cream); }
.bg-earth-ivory   { background-color: var(--earth-ivory); }
.bg-gold-warm     { background-color: var(--gold-warm); }
.bg-gold-light    { background-color: var(--gold-light); }
.bg-transparent   { background-color: transparent; }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-earth-mist  { --tw-gradient-from: var(--earth-mist); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-transparent   { --tw-gradient-to: transparent; }

/* Border */
.border            { border-width: 1px; border-style: solid; }
.border-b          { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t          { border-top-width: 1px; border-top-style: solid; }
.border-r          { border-right-width: 1px; border-right-style: solid; }
.border-l          { border-left-width: 1px; border-left-style: solid; }
.border-t-0        { border-top-width: 0; }
.border-earth-mist  { border-color: var(--earth-mist); }
.border-gold-warm   { border-color: var(--gold-warm); }
.border-transparent { border-color: transparent; }

/* Space between */
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Transform */
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-y-0     { transform: translateY(0); }

/* Opacity */
.opacity-0  { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }

/* Misc */
.cursor-pointer { cursor: pointer; }
.select-none    { user-select: none; }
.animate-pulse  { animation: pulse 2s cubic-bezier(0.4,0,.6,1) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }
.object-cover { object-fit: cover; }
.object-center { object-position: center; }

/* Hover utilities */
.hover\:text-gold-warm:hover    { color: var(--gold-warm); }
.hover\:text-gold-light:hover   { color: var(--gold-light); }
.hover\:text-earth-mist:hover   { color: var(--earth-mist); }
.hover\:bg-earth-mid:hover      { background-color: var(--earth-mid); }
.hover\:border-earth-sage:hover { border-color: var(--earth-sage); }
.transition-colors { transition: color 0.3s, background-color 0.3s, border-color 0.3s; }

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:flex-row     { flex-direction: row; }
  .md\:grid-cols-2  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3  { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4  { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:items-end    { align-items: flex-end; }
  .md\:py-36        { padding-top: 9rem; padding-bottom: 9rem; }
  .md\:border-b-0   { border-bottom-width: 0; }
  .md\:block        { display: block; }
  .md\:col-span-2   { grid-column: span 2 / span 2; }
}

@media (min-width: 768px) {
  .md\:gap-0        { gap: 0; }
  .md\:gap-24       { gap: 6rem; }
}

@media (max-width: 767px) {
  .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:col-span-2    { grid-column: span 2 / span 2; }
  .lg\:grid-cols-2   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:gap-24        { gap: 6rem; }
  .lg\:p-14          { padding: 3.5rem; }
  .lg\:border-b-0    { border-bottom-width: 0; }
  .lg\:border-r      { border-right-width: 1px; border-right-style: solid; }
  .lg\:border-l      { border-left-width: 1px; border-left-style: solid; }
}


/* ============================================
   THE COMMITMENT — Custom Styles
   Premium Environmental Impact Organization
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Noto+Serif+Arabic:wght@300;400;500;600&family=Cairo:wght@300;400;500;600&display=swap');

/* ---- CSS Variables ---- */
:root {
  --earth-deep:    #1a1f14;
  --earth-dark:    #2c3320;
  --earth-mid:     #4a5c35;
  --earth-sage:    #7a8c5e;
  --earth-moss:    #a8b88a;
  --earth-mist:    #d4dcc8;
  --earth-cream:   #f2ede4;
  --earth-ivory:   #faf8f3;
  --gold-warm:     #c9a84c;
  --gold-light:    #e4c97e;
  --gold-pale:     #f0dfa8;
  --text-primary:  #1a1f14;
  --text-muted:    #5a6650;
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;
  --transition:    cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Arabic font overrides ---- */
[lang="ar"] {
  --font-display: 'Noto Serif Arabic', 'Traditional Arabic', serif;
  --font-heading: 'Noto Serif Arabic', 'Traditional Arabic', serif;
  --font-body:    'Cairo', 'Segoe UI', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--earth-ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body[dir="rtl"] { direction: rtl; text-align: right; }

/* ---- Typography ---- */
.font-display  { font-family: var(--font-display); }
.font-heading  { font-family: var(--font-heading); }
h1, h2, h3 { font-family: var(--font-heading); line-height: 1.15; }
h4, h5, h6  { font-family: var(--font-body); }
[lang="ar"] h1, [lang="ar"] h2, [lang="ar"] h3 { line-height: 1.6; }

/* ---- Custom Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--earth-cream); }
::-webkit-scrollbar-thumb { background: var(--earth-sage); border-radius: 3px; }

/* ============================= LANGUAGE SWITCHER ============================= */
.lang-switcher { display: flex; align-items: center; gap: 0.3rem; }
.lang-btn {
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(242,237,228,0.5); background: none; border: none;
  cursor: pointer; padding: 0.3rem 0.4rem; text-decoration: none;
  transition: color 0.3s;
}
.lang-btn:hover { color: var(--gold-light); }
.lang-btn.active { color: var(--gold-warm); border-bottom: 1px solid var(--gold-warm); }
.lang-divider { color: rgba(242,237,228,0.2); font-size: 0.7rem; }

/* ============================= NAV ============================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.5s var(--transition); padding: 1.5rem 0;
}
#navbar.scrolled {
  background: rgba(26,31,20,0.96); backdrop-filter: blur(16px);
  padding: 1rem 0; border-bottom: 1px solid rgba(201,168,76,0.2);
}

/* Logo with SVG mark */
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-mark { width: 30px; height: auto; flex-shrink: 0; transition: opacity 0.3s; }
.nav-logo:hover .nav-logo-mark { opacity: 0.75; }
.nav-logo-text {
  font-family: var(--font-display); font-size: 1.45rem;
  font-weight: 300; letter-spacing: 0.05em; color: var(--earth-ivory); line-height: 1;
}
[lang="ar"] .nav-logo-text { font-size: 1.15rem; letter-spacing: 0; }
.nav-logo-dot { color: var(--gold-warm); }

.nav-link {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(242,237,228,0.8); text-decoration: none;
  transition: color 0.3s; position: relative;
}
[lang="ar"] .nav-link { letter-spacing: 0; text-transform: none; }
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold-warm);
  transition: right 0.3s var(--transition);
}
[dir="rtl"] .nav-link::after { left: 100%; right: 0; transition: left 0.3s var(--transition); }
.nav-link:hover { color: var(--gold-light); }
.nav-link:hover::after { right: 0; }
[dir="rtl"] .nav-link:hover::after { left: 0; }

.nav-cta {
  background: transparent; border: 1px solid var(--gold-warm); color: var(--gold-light);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.6rem 1.5rem; text-decoration: none; transition: all 0.3s;
}
[lang="ar"] .nav-cta { letter-spacing: 0; text-transform: none; }
.nav-cta:hover { background: var(--gold-warm); color: var(--earth-deep); }

/* Mobile Menu */
#mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--earth-deep); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
#mobile-menu.open { display: flex; }
.mobile-nav-link {
  font-family: var(--font-display); font-size: 2.5rem;
  font-weight: 300; color: var(--earth-cream); text-decoration: none; transition: color 0.3s;
}
[lang="ar"] .mobile-nav-link { font-size: 2rem; }
.mobile-nav-link:hover { color: var(--gold-light); }
.mobile-lang-row { display: flex; gap: 1rem; margin-top: 0.5rem; }
.mobile-lang-btn {
  font-size: 0.85rem; font-weight: 500; color: rgba(242,237,228,0.45);
  text-decoration: none; transition: color 0.3s;
  border-bottom: 1px solid transparent; padding-bottom: 2px;
}
.mobile-lang-btn.active { color: var(--gold-warm); border-bottom-color: var(--gold-warm); }
.mobile-lang-btn:hover { color: var(--gold-light); }

/* ============================= HERO ============================= */
#hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--earth-deep);
}
#hero-video {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  min-width: 100%; min-height: 100%; width: auto; height: auto;
  object-fit: cover; opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(26,31,20,0.3) 0%,rgba(26,31,20,0.5) 60%,rgba(26,31,20,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; }
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-warm);
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
[lang="ar"] .hero-eyebrow { letter-spacing: 0.05em; text-transform: none; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(3.5rem,8vw,7.5rem);
  font-weight: 300; line-height: 1.05; color: var(--earth-ivory);
  margin-bottom: 1.5rem; opacity: 0; animation: fadeUp 1s 0.5s forwards;
}
[lang="ar"] .hero-title { line-height: 1.4; font-size: clamp(2.8rem,7vw,6rem); }
.hero-title em { font-style: italic; color: var(--gold-light); }
[lang="ar"] .hero-title em { font-style: normal; }
.hero-subtitle {
  font-size: 1.05rem; font-weight: 300; color: rgba(242,237,228,0.75);
  max-width: 560px; margin: 0 auto 3rem; line-height: 1.75;
  opacity: 0; animation: fadeUp 1s 0.7s forwards;
}
[lang="ar"] .hero-subtitle { line-height: 2.1; }
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 0.9s forwards;
}

/* ============================= BUTTONS ============================= */
.btn-primary {
  display: inline-block; background: var(--gold-warm); color: var(--earth-deep);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2.5rem; text-decoration: none;
  transition: all 0.35s var(--transition); position: relative; overflow: hidden;
}
[lang="ar"] .btn-primary { letter-spacing: 0; text-transform: none; }
.btn-primary::before {
  content: ''; position: absolute; inset: 0; background: var(--gold-light);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--transition);
}
[dir="rtl"] .btn-primary::before { transform-origin: right; }
.btn-primary:hover::before { transform: scaleX(1); }
.btn-primary span { position: relative; z-index: 1; }
.btn-secondary {
  display: inline-block; background: transparent; color: var(--earth-ivory);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2.5rem; text-decoration: none;
  border: 1px solid rgba(242,237,228,0.4); transition: all 0.35s var(--transition);
}
[lang="ar"] .btn-secondary { letter-spacing: 0; text-transform: none; }
.btn-secondary:hover { border-color: var(--gold-warm); color: var(--gold-light); }
.btn-dark {
  display: inline-block; background: var(--earth-dark); color: var(--earth-cream);
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 1rem 2.5rem; text-decoration: none; transition: all 0.35s var(--transition);
}
[lang="ar"] .btn-dark { letter-spacing: 0; text-transform: none; }
.btn-dark:hover { background: var(--earth-mid); }

/* ============================= SECTION COMMONS ============================= */
.section-label {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: 1rem;
}
[lang="ar"] .section-label { letter-spacing: 0.05em; text-transform: none; }
.section-title {
  font-family: var(--font-heading); font-size: clamp(2.2rem,4vw,3.5rem);
  font-weight: 400; line-height: 1.2; color: var(--earth-deep);
}
[lang="ar"] .section-title { line-height: 1.6; font-size: clamp(1.9rem,3.5vw,3rem); }
.section-title.light { color: var(--earth-ivory); }
.section-title em { font-style: italic; color: var(--earth-mid); }
[lang="ar"] .section-title em { font-style: normal; }
.section-title.light em { color: var(--gold-light); }
.divider-gold { width: 3rem; height: 1px; background: var(--gold-warm); margin: 1.5rem 0; }
.divider-gold.centered { margin: 1.5rem auto; }

/* ============================= STATS ============================= */
.stats-strip { background: var(--earth-dark); padding: 3.5rem 0; }
.stat-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 300;
  color: var(--gold-light); line-height: 1; margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(212,220,200,0.55);
}
[lang="ar"] .stat-label { letter-spacing: 0; text-transform: none; }
.stat-divider { width: 1px; height: 60px; background: rgba(201,168,76,0.2); }

/* ============================= COUNTDOWN ============================= */
.countdown-section { background: var(--earth-deep); position: relative; overflow: hidden; }
.countdown-section::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://picsum.photos/seed/nature3/1920/1080') center/cover no-repeat;
  opacity: 0.08;
}
.countdown-box {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(201,168,76,0.2);
  min-width: 90px; padding: 1.5rem 1rem; text-align: center; backdrop-filter: blur(4px);
}
.countdown-number { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--gold-light); line-height: 1; }
.countdown-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(212,220,200,0.5); margin-top: 0.4rem;
}
[lang="ar"] .countdown-label { letter-spacing: 0; text-transform: none; }
.event-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.3);
  padding: 0.5rem 1.25rem; font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-warm);
}
[lang="ar"] .event-badge { letter-spacing: 0; text-transform: none; }

/* ============================= FEATURE CARDS ============================= */
.feature-card { padding: 2.5rem 2rem; border-right: 1px solid var(--earth-mist); transition: background 0.3s; }
.feature-card:last-child { border-right: none; }
[dir="rtl"] .feature-card { border-right: none; border-left: 1px solid var(--earth-mist); }
[dir="rtl"] .feature-card:last-child { border-left: none; }
.feature-card:hover { background: var(--earth-cream); }
.feature-icon {
  width: 3rem; height: 3rem; border: 1px solid var(--earth-mist);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-warm); margin-bottom: 1.5rem; transition: border-color 0.3s;
}
.feature-card:hover .feature-icon { border-color: var(--gold-warm); }
.feature-title { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 400; color: var(--earth-deep); margin-bottom: 0.75rem; }
.feature-text { font-size: 0.875rem; line-height: 1.7; color: var(--text-muted); }

/* ============================= AUDIENCE CARDS ============================= */
.audience-card { position: relative; overflow: hidden; background: var(--earth-ivory); border: 1px solid var(--earth-mist); }
.audience-card img { width: 100%; height: 300px; object-fit: cover; display: block; transition: transform 0.6s var(--transition); }
.audience-card:hover img { transform: scale(1.04); }
.audience-card-content { padding: 2rem; }
.audience-card-title { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 400; color: var(--earth-deep); margin-bottom: 0.75rem; }
.audience-card-text { font-size: 0.9rem; line-height: 1.75; color: var(--text-muted); }

/* ============================= PACKAGES / TABS ============================= */
.pkg-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--earth-mist); margin-bottom: 0; }
.pkg-tab {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 1rem 2rem; cursor: pointer; color: var(--text-muted);
  border-bottom: 2px solid transparent; transition: all 0.3s;
  background: none; border-top: none; border-left: none; border-right: none;
}
[lang="ar"] .pkg-tab { letter-spacing: 0; text-transform: none; }
.pkg-tab.active { color: var(--earth-mid); border-bottom-color: var(--gold-warm); }
.pkg-tab:hover:not(.active) { color: var(--earth-deep); }
.pkg-panel { display: none; }
.pkg-panel.active { display: grid; }
.pkg-feature-list { list-style: none; padding: 0; margin: 0; }
.pkg-feature-list li {
  display: flex; gap: 0.75rem; align-items: flex-start;
  padding: 0.85rem 0; border-bottom: 1px solid var(--earth-mist);
  font-size: 0.92rem; color: var(--text-muted); line-height: 1.6;
}
[dir="rtl"] .pkg-feature-list li { flex-direction: row-reverse; text-align: right; }
.pkg-feature-list li:last-child { border-bottom: none; }
.pkg-feature-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-warm); margin-top: 2px; }
.pkg-feature-title {
  font-weight: 600; color: var(--earth-deep); display: block; margin-bottom: 0.2rem;
  font-size: 0.82rem; letter-spacing: 0.05em; text-transform: uppercase;
}
[lang="ar"] .pkg-feature-title { letter-spacing: 0; text-transform: none; }

/* Scrolling Image Strip */
.image-strip-wrapper { overflow: hidden; position: relative; }
.image-strip { display: flex; gap: 1rem; animation: stripScroll 30s linear infinite; width: max-content; }
.image-strip:hover { animation-play-state: paused; }
@keyframes stripScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.image-strip img { width: 240px; height: 160px; object-fit: cover; flex-shrink: 0; }

/* ============================= TESTIMONIALS ============================= */
.testimonial-section { background: var(--earth-deep); }
.testimonial-wrapper { position: relative; min-height: 280px; }
.testimonial-slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none;
  transition: opacity 0.8s var(--transition);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.testimonial-quote {
  font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,2rem);
  font-weight: 300; font-style: italic; color: var(--earth-cream);
  line-height: 1.5; max-width: 700px; margin-bottom: 2rem;
}
[lang="ar"] .testimonial-quote { font-style: normal; line-height: 1.9; }
.testimonial-author {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-warm);
}
[lang="ar"] .testimonial-author { letter-spacing: 0; text-transform: none; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 2rem; }
.testimonial-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--earth-mist);
  cursor: pointer; transition: all 0.3s; opacity: 0.3; border: none;
}
.testimonial-dot.active { opacity: 1 !important; background: var(--gold-warm); transform: scale(1.4); }
.testimonial-nav button {
  width: 2.5rem; height: 2.5rem; border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--earth-mist); cursor: pointer;
  font-size: 0.9rem; transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.testimonial-nav button:hover { background: var(--gold-warm); color: var(--earth-deep); }

/* ============================= IMPACT CARDS ============================= */
.impact-card { background: var(--earth-ivory); border: 1px solid var(--earth-mist); overflow: hidden; transition: box-shadow 0.3s, transform 0.3s; }
.impact-card:hover { box-shadow: 0 20px 60px rgba(26,31,20,0.1); transform: translateY(-4px); }
.impact-card img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s var(--transition); }
.impact-card:hover img { transform: scale(1.04); }
.impact-tag { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-warm); }
[lang="ar"] .impact-tag { letter-spacing: 0; text-transform: none; }
.impact-card-title { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 400; color: var(--earth-deep); line-height: 1.3; margin: 0.5rem 0 0.75rem; }

/* ============================= CONTACT FORM ============================= */
.contact-section { background: var(--earth-cream); }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
[lang="ar"] .form-label { letter-spacing: 0; text-transform: none; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.875rem 1rem; border: 1px solid var(--earth-mist);
  background: var(--earth-ivory); font-family: var(--font-body); font-size: 0.9rem;
  color: var(--text-primary); outline: none; transition: border-color 0.3s;
  border-radius: 0; appearance: none; text-align: inherit;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--earth-sage); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none; background: rgba(122,140,94,0.1); border: 1px solid var(--earth-sage);
  padding: 1.5rem; text-align: center; color: var(--earth-mid); font-size: 0.95rem;
}

/* ============================= PHOTO GRID ============================= */
.photo-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0.4rem; }
.photo-grid-item { overflow: hidden; }
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--transition), opacity 0.4s; display: block; }
.photo-grid-item:hover img { transform: scale(1.05); opacity: 0.85; }
.photo-grid-item:nth-child(1) { grid-column: span 2; height: 320px; }
.photo-grid-item:nth-child(2) { height: 320px; }
.photo-grid-item:nth-child(3), .photo-grid-item:nth-child(4), .photo-grid-item:nth-child(5) { height: 220px; }
@media (max-width: 768px) {
  .photo-grid { grid-template-columns: repeat(2,1fr); }
  .photo-grid-item:nth-child(1) { grid-column: span 2; height: 220px; }
  .photo-grid-item:nth-child(n) { height: 160px; }
}

/* ============================= FOOTER ============================= */
footer { background: var(--earth-deep); border-top: 1px solid rgba(201,168,76,0.15); }
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300; color: var(--earth-cream); letter-spacing: 0.05em; display: flex; align-items: center; gap: 0.5rem; }
[lang="ar"] .footer-logo { letter-spacing: 0; font-size: 1.5rem; }
.footer-logo-mark { width: 26px; height: auto; }
.footer-heading { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-warm); margin-bottom: 1.25rem; }
[lang="ar"] .footer-heading { letter-spacing: 0; text-transform: none; }
.footer-link { display: block; font-size: 0.875rem; color: rgba(212,220,200,0.6); text-decoration: none; margin-bottom: 0.6rem; transition: color 0.3s; }
.footer-link:hover { color: var(--earth-mist); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; }

/* ============================= SCROLL ANIMATIONS ============================= */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================= KEYFRAMES ============================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse-dot { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.4); opacity: 0.7; } }
.live-dot { display: inline-block; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse-dot 1.5s infinite; vertical-align: middle; margin-right: 6px; }
[dir="rtl"] .live-dot { margin-right: 0; margin-left: 6px; }

/* ============================= UTILS ============================= */
.text-gold { color: var(--gold-warm); }
.text-sage { color: var(--earth-sage); }
.parallax-img { will-change: transform; }
.hamburger { cursor: pointer; width: 26px; }
.hamburger span { display: block; height: 1.5px; background: var(--earth-ivory); margin-bottom: 6px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
#progress-bar { position: fixed; top: 0; left: 0; height: 2px; background: linear-gradient(to right,var(--gold-warm),var(--gold-light)); z-index: 2000; transition: width 0.1s linear; }
#back-to-top { position: fixed; bottom: 2rem; right: 2rem; width: 3rem; height: 3rem; background: var(--earth-dark); border: 1px solid rgba(201,168,76,0.3); color: var(--gold-light); display: none; align-items: center; justify-content: center; cursor: pointer; z-index: 500; font-size: 1.2rem; transition: all 0.3s; }
[dir="rtl"] #back-to-top { right: auto; left: 2rem; }
#back-to-top.visible { display: flex; }
#back-to-top:hover { background: var(--gold-warm); color: var(--earth-deep); }

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1024px) { .audience-card img { height: 380px; } }
@media (max-width: 768px) {
  .section-title { font-size: 2rem; }
  [lang="ar"] .section-title { font-size: 1.7rem; }
  .hero-title { font-size: 3rem; }
  [lang="ar"] .hero-title { font-size: 2.4rem; }
  .countdown-number { font-size: 2.5rem; }
  .countdown-box { min-width: 75px; padding: 1rem; }
  .stat-number { font-size: 2.5rem; }
  .nav-desktop { display: none; }
  .nav-hamburger { display: block; }
  .feature-card { border-right: none; border-bottom: 1px solid var(--earth-mist); }
  [dir="rtl"] .feature-card { border-left: none; border-bottom: 1px solid var(--earth-mist); }
}
@media (min-width: 769px) { .nav-hamburger { display: none; } .nav-desktop { display: flex; } }

/* ============================= FAQ ============================= */
.faq-section { background: var(--earth-cream); }
.faq-list { border-top: 1px solid var(--earth-mist); }
.faq-item { border-bottom: 1px solid var(--earth-mist); }
.faq-item summary {
  cursor: pointer; list-style: none; padding: 1.5rem 0;
  font-family: var(--font-heading); font-size: 1.12rem; font-weight: 400;
  color: var(--earth-deep); display: flex; justify-content: space-between;
  align-items: center; gap: 1.25rem; transition: color 0.25s var(--transition);
}
.faq-item summary:hover { color: var(--earth-mid); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--font-display); font-size: 1.7rem; line-height: 1;
  color: var(--gold-warm); transition: transform 0.3s var(--transition); flex-shrink: 0;
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-answer {
  padding: 0 0 1.6rem; color: var(--text-muted);
  line-height: 1.8; font-size: 1rem; max-width: 64ch;
}
.faq-item[open] .faq-answer { animation: faqReveal 0.4s var(--transition); }
@keyframes faqReveal { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
[dir="rtl"] .faq-item summary { text-align: right; }
@media (max-width: 640px) { .faq-item summary { font-size: 1.02rem; padding: 1.25rem 0; } }
