/*
 * wasl-theme.css — WASL Agency WordPress Theme
 * Exact replication of React index.css + Tailwind utilities
 * Source: /home/ubuntu/wasl-agency/client/src/index.css
 * Design: "السدو الرقمي" — Neo-Arabian Luxury
 * Colors: Deep Black #0A0A0A + Crimson #9B0000 + Gold #C9A96E + Cream #F5F0E8
 * Fonts: Noto Naskh Arabic (headings) + Tajawal (body)
 * Direction: RTL Arabic
 */

/* ═══════════════════════════════════════════════════════
   1. CSS VARIABLES — exact from React :root
   ═══════════════════════════════════════════════════════ */
:root {
  --wasl-black:          #0A0A0A;
  --wasl-crimson:        #9B0000;
  --wasl-crimson-light:  #C0000A;
  --wasl-crimson-bright: #D4001A;
  --wasl-gold:           #C9A96E;
  --wasl-gold-light:     #E2C48A;
  --wasl-gold-dark:      #A8884A;
  --wasl-cream:          #F5F0E8;
  --wasl-cream-dark:     #E8E0D0;
  --ease-out:            cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out:         cubic-bezier(0.77, 0, 0.175, 1);
}

/* ═══════════════════════════════════════════════════════
   2. RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  direction: rtl;
  scroll-behavior: smooth;
  font-size: 16px;
}

body.wasl-body, body.wasl-site {
  background-color: var(--wasl-black);
  color: var(--wasl-cream);
  font-family: 'Tajawal', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Naskh Arabic', serif;
  color: var(--wasl-cream);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* ═══════════════════════════════════════════════════════
   3. LAYOUT UTILITIES
   ═══════════════════════════════════════════════════════ */
.wasl-container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 640px) {
  .wasl-container { padding-left: 2rem; padding-right: 2rem; }
}
@media (min-width: 1024px) {
  .wasl-container { padding-left: 3rem; padding-right: 3rem; }
}

/* Sadu background SVG — absolute fill */
.sadu-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   4. KEYFRAME ANIMATIONS — exact from React
   ═══════════════════════════════════════════════════════ */
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes pulseGold {
  0%, 100% { box-shadow: 0 0 10px rgba(201,169,110,0.2); }
  50%       { box-shadow: 0 0 30px rgba(201,169,110,0.5), 0 0 60px rgba(201,169,110,0.2); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

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

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

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

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

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════
   5. SCROLL REVEAL — exact from React
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay:   0ms; }
.stagger > *:nth-child(2) { transition-delay:  80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }

/* ═══════════════════════════════════════════════════════
   6. TYPOGRAPHY UTILITIES
   ═══════════════════════════════════════════════════════ */
.text-gold-gradient {
  background: linear-gradient(135deg, var(--wasl-gold-light) 0%, var(--wasl-gold) 50%, var(--wasl-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-crimson-gradient {
  background: linear-gradient(135deg, #C0392B 0%, var(--wasl-crimson) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shimmer-text {
  background: linear-gradient(90deg,
    var(--wasl-gold-dark) 0%,
    var(--wasl-gold-light) 30%,
    var(--wasl-gold) 50%,
    var(--wasl-gold-light) 70%,
    var(--wasl-gold-dark) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.animate-bounce {
  animation: bounce 1.5s ease-in-out infinite;
}

.pulse-gold {
  animation: pulseGold 3s ease-in-out infinite;
}

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════
   7. GLASS CARDS — exact from React
   ═══════════════════════════════════════════════════════ */
.glass-gold {
  background: linear-gradient(135deg, rgba(155,0,0,0.08) 0%, rgba(201,169,110,0.04) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201,169,110,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), inset 0 1px 0 rgba(201,169,110,0.15);
}

.glass-crimson {
  background: linear-gradient(135deg, rgba(155,0,0,0.3) 0%, rgba(155,0,0,0.12) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(155,0,0,0.5);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(155,0,0,0.15);
}

/* ═══════════════════════════════════════════════════════
   8. BUTTONS — exact from React
   ═══════════════════════════════════════════════════════ */
.btn-gold {
  background: linear-gradient(135deg, var(--wasl-gold-light) 0%, var(--wasl-gold) 50%, var(--wasl-gold-dark) 100%);
  color: var(--wasl-black);
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  padding: 0.875rem 2.5rem;
  border-radius: 4px;
  border: none;
  transition: all 200ms var(--ease-out);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.05em;
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 400ms ease;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover {
  box-shadow: 0 0 30px rgba(201,169,110,0.4), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  color: var(--wasl-black);
}
.btn-gold:active { transform: scale(0.97) translateY(0); }

.btn-outline-gold {
  background: transparent;
  color: var(--wasl-gold);
  font-family: 'Tajawal', sans-serif;
  font-weight: 600;
  padding: 0.875rem 2.5rem;
  border-radius: 4px;
  border: 1px solid var(--wasl-gold);
  transition: all 200ms var(--ease-out);
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: rgba(201,169,110,0.1);
  box-shadow: 0 0 20px rgba(201,169,110,0.2);
  transform: translateY(-2px);
  color: var(--wasl-gold);
}
.btn-outline-gold:active { transform: scale(0.97); }

/* ═══════════════════════════════════════════════════════
   9. SECTION HEADER — exact from React
   ═══════════════════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.section-ornament::before,
.section-ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--wasl-gold), transparent);
}

.section-header h2 {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--wasl-cream);
  margin-bottom: 1rem;
}

.section-header p {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.65);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════════════
   10. GOLD DIVIDER — exact from React
   ═══════════════════════════════════════════════════════ */
.gold-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--wasl-gold-dark) 20%, var(--wasl-gold) 50%, var(--wasl-gold-dark) 80%, transparent 100%);
  position: relative;
}
.gold-divider::after {
  content: '✦';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--wasl-gold);
  font-size: 0.75rem;
  background: var(--wasl-black);
  padding: 0 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   11. SADU CORNER FRAME — exact from SaduCornerFrame.tsx
   ═══════════════════════════════════════════════════════ */
.sadu-corner-frame {
  position: relative;
}
.sadu-corner-frame .corner-tr,
.sadu-corner-frame .corner-bl {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
}
.sadu-corner-frame .corner-tr {
  top: 0;
  right: 0;
}
.sadu-corner-frame .corner-bl {
  bottom: 0;
  left: 0;
}

/* ═══════════════════════════════════════════════════════
   12. SADU DIVIDER — exact from SaduDivider component
   ═══════════════════════════════════════════════════════ */
.sadu-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 60px;
}

/* ═══════════════════════════════════════════════════════
   13. STAT NUMBER — exact from React
   ═══════════════════════════════════════════════════════ */
.stat-number {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--wasl-gold-light), var(--wasl-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════
   14. WASL INPUT — exact from React
   ═══════════════════════════════════════════════════════ */
.wasl-input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,169,110,0.2);
  color: var(--wasl-cream);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.95rem;
  padding: 0.875rem 1.25rem;
  border-radius: 4px;
  width: 100%;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  outline: none;
  direction: rtl;
}
.wasl-input[dir="ltr"] { direction: ltr; text-align: left; }
.wasl-input:focus {
  border-color: rgba(201,169,110,0.6);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.wasl-input::placeholder { color: rgba(245,240,232,0.35); }
.wasl-input option { background: #1a0a0a; color: var(--wasl-cream); }

/* ═══════════════════════════════════════════════════════
   15. NAVBAR — exact from Navbar.tsx
   ═══════════════════════════════════════════════════════ */
#wasl-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  /* High z-index ensures navbar stays above WP admin bar and all WP UI */
  z-index: 99999;
  transition: background 300ms ease, backdrop-filter 300ms ease, border-bottom 300ms ease;
  background: transparent;
}

#wasl-navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

/* ─── WordPress Admin Bar Offset ─────────────────────────────────────────────
   When logged in as admin, WordPress adds #wpadminbar (32px on desktop,
   46px on mobile ≤782px). We must push our fixed navbar down to avoid
   the ticker being hidden behind the admin bar.
   ─────────────────────────────────────────────────────────────────────────── */
.admin-bar #wasl-navbar {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  .admin-bar #wasl-navbar {
    top: 46px !important;
  }
}

/* ─── Ticker bar ─────────────────────────────────────────────────────────────
   Exact from Navbar.tsx: hidden md:block py-1.5 text-xs overflow-hidden
   React: {!scrolled && <div className="hidden md:block py-1.5 ...">}
   ─────────────────────────────────────────────────────────────────────────── */
/* ─── Ticker visibility — single source of truth ────────────────────────────
   React: className="hidden md:block" = display:none on mobile, display:block on desktop
   React: {!scrolled && ...} = element removed from DOM when scrolled
   WordPress: we replicate with CSS + JS class toggle (single system, no duplication)
   ─────────────────────────────────────────────────────────────────────────── */

/* Base: hidden on mobile (matches React "hidden" = display:none) */
#wasl-ticker {
  display: none;
  padding: 0.375rem 0;
  overflow: hidden;
  background: linear-gradient(90deg, #8B0000 0%, #0A0A0A 50%, #8B0000 100%);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  /* Smooth hide/show transition */
  transition: opacity 300ms cubic-bezier(0.23,1,0.32,1);
  opacity: 1;
}

/* Desktop: visible (matches React "md:block" = display:block at ≥768px) */
@media (min-width: 768px) {
  #wasl-ticker {
    display: block;
  }
}

/* Scrolled state: JS adds .hidden-ticker when scrollY > 50 */
/* This replicates React: {!scrolled && ...} which removes element from DOM */
#wasl-ticker.hidden-ticker {
  display: none !important;
}

/* ─── Ticker animation track ─────────────────────────────────────────────────
   Exact from React index.css .ticker-track
   direction:ltr forces flex to start from left edge so translateX(-50%)
   works correctly even in RTL page context — same visual as React
   ─────────────────────────────────────────────────────────────────────────── */
.ticker-track {
  animation: ticker 30s linear infinite;
  display: flex;
  width: max-content;
  white-space: nowrap;
  align-items: center;
  direction: ltr; /* ensure correct scroll direction in RTL context */
}
.ticker-track:hover { animation-play-state: paused; }

/* ─── Each ticker item ───────────────────────────────────────────────────────
   Exact from React: span.flex.items-center.gap-6.px-4
   color: rgba(201,169,110,0.8), font: Tajawal 0.75rem
   ─────────────────────────────────────────────────────────────────────────── */
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;        /* gap-6 = 24px */
  padding: 0 1rem;    /* px-4 = 16px */
  color: rgba(201,169,110,0.8);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.75rem; /* text-xs = 12px */
  line-height: 1;
  direction: rtl;     /* restore RTL for Arabic text inside each item */
}
.ticker-sep {
  color: #C9A96E;
  flex-shrink: 0;
}

/* Nav main row */
.nav-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.nav-logo-hex {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wasl-gold), var(--wasl-gold-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-out);
}
.nav-logo:hover .nav-logo-hex { transform: rotate(30deg); }
.nav-logo-hex span {
  color: var(--wasl-black);
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1rem;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--wasl-gold);
  line-height: 1;
}
.nav-logo-en {
  font-family: 'Tajawal', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  color: rgba(201,169,110,0.6);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

/* Desktop nav links */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-link {
  color: rgba(245,240,232,0.8);
  font-family: 'Tajawal', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 200ms ease;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--wasl-gold);
  transition: width 250ms var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--wasl-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; right: auto; left: 0; }

/* Desktop CTA */
.nav-cta {
  display: none;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .nav-cta { display: flex; }
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(201,169,110,0.7);
  font-family: 'Tajawal', sans-serif;
  direction: ltr;
  text-decoration: none;
  transition: color 200ms ease;
}
.nav-phone:hover { color: var(--wasl-gold); }
.nav-phone svg { width: 14px; height: 14px; }

/* Mobile toggle */
.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 4px;
  color: var(--wasl-gold);
  border: 1px solid rgba(201,169,110,0.3);
  background: transparent;
  cursor: pointer;
  transition: background 200ms ease;
}
.nav-toggle:hover { background: rgba(201,169,110,0.08); }
@media (min-width: 1024px) {
  .nav-toggle { display: none; }
}

/* Mobile menu */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms var(--ease-out), border-top 300ms ease;
  background: rgba(10,10,10,0.97);
  border-top: none;
}
#mobile-menu.open {
  max-height: 500px;
  border-top: 1px solid rgba(201,169,110,0.15);
}
@media (min-width: 1024px) {
  #mobile-menu { display: none; }
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 0;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 4px;
  text-align: right;
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.8);
  font-size: 1rem;
  transition: background 200ms ease, color 200ms ease;
  text-decoration: none;
}
.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(201,169,110,0.08);
  color: var(--wasl-gold);
}

.mobile-menu-cta {
  padding-top: 1rem;
  border-top: 1px solid rgba(201,169,110,0.1);
  margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   16. WHATSAPP FLOAT BUTTON — exact from React
   ═══════════════════════════════════════════════════════ */
#wasl-wa-float {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
  text-decoration: none;
}
#wasl-wa-float svg { width: 28px; height: 28px; }
#wasl-wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37,211,102,0.6);
}

/* ═══════════════════════════════════════════════════════
   17. HERO SECTION — exact from HeroSection.tsx
   ═══════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--wasl-black);
}

/* Background image container (parallax via JS) */
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55);
}

/* Sadu pattern overlay */
.hero-sadu {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Gradient overlays — exact from React */
.hero-overlay-1 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(10,10,10,0.2) 0%, rgba(10,10,10,0.05) 40%, rgba(10,10,10,0.75) 100%);
  pointer-events: none;
}
.hero-overlay-2 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 75% 50%, rgba(180,0,10,0.35) 0%, rgba(139,0,0,0.15) 40%, transparent 70%);
  pointer-events: none;
}
.hero-overlay-3 {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 20% 80%, rgba(155,0,0,0.2) 0%, transparent 50%);
  pointer-events: none;
}

/* Content */
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-inner {
  max-width: 56rem;
  margin-right: auto;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: 100ms;
}
.hero-badge.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  background: rgba(201,169,110,0.1);
  border: 1px solid rgba(201,169,110,0.3);
  color: var(--wasl-gold);
  font-family: 'Tajawal', sans-serif;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseGold 2s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(74,222,128,0.6);
}

/* H1 */
.hero-h1 {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.15;
  color: var(--wasl-cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: 200ms;
}
.hero-h1.visible { opacity: 1; transform: translateY(0); }

/* Subtitle */
.hero-sub {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(245,240,232,0.75);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: 300ms;
}
.hero-sub.visible { opacity: 1; transform: translateY(0); }

/* CTA buttons */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: 400ms;
}
.hero-cta.visible { opacity: 1; transform: translateY(0); }

/* Stats */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  transition-delay: 500ms;
}
.hero-stats.visible { opacity: 1; transform: translateY(0); }

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-stat-num {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--wasl-gold-light), var(--wasl-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  color: rgba(245,240,232,0.6);
  font-family: 'Tajawal', sans-serif;
  font-size: 0.9rem;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(201,169,110,0.6);
  text-decoration: none;
  transition: color 200ms ease;
}
.hero-scroll:hover { color: var(--wasl-gold); }
.hero-scroll span {
  font-family: 'Tajawal', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Bottom fade */
.hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  z-index: 5;
  background: linear-gradient(to bottom, transparent, var(--wasl-black));
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   18. ABOUT SECTION — exact from AboutSection.tsx
   ═══════════════════════════════════════════════════════ */
#about {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--wasl-black);
}

/* Crimson glow top-left */
.about-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(155,0,0,0.22) 0%, transparent 70%);
  transform: translate(-30%, -30%);
}

/* 2-col grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; }
}

/* Image column */
.about-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(201,169,110,0.2);
  aspect-ratio: 4/3;
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
}

/* Image overlay text */
.about-img-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(10,10,10,0.9) 0%, transparent 60%);
}
.about-img-title {
  font-family: 'Noto Naskh Arabic', serif;
  font-size: 1.5rem;
  color: var(--wasl-gold);
  font-weight: 700;
}
.about-img-sub {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.7);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

/* Corner decorations on image */
.about-corner-tr {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  border-top: 2px solid rgba(201,169,110,0.6);
  border-right: 2px solid rgba(201,169,110,0.6);
}
.about-corner-bl {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  border-bottom: 2px solid rgba(201,169,110,0.6);
  border-left: 2px solid rgba(201,169,110,0.6);
}

/* Text column */
.about-text-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.about-text-header h3 {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--wasl-cream);
  margin-bottom: 1rem;
}
.about-text-header p {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.7);
  line-height: 1.9;
  font-size: 1rem;
}

/* Feature items */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 4px;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.1);
  opacity: 0;
  transform: translateX(15px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}
.about-feature-item.visible { opacity: 1; transform: translateX(0); }
.about-feature-icon { font-size: 1.4rem; flex-shrink: 0; }
.about-feature-title {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  color: var(--wasl-gold);
  font-size: 0.95rem;
}
.about-feature-desc {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.6);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}

/* Stats grid */
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: 4px;
}
.stat-card-label {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  color: var(--wasl-cream);
  margin-top: 0.5rem;
  font-size: 1rem;
}
.stat-card-sub {
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.7);
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════
   19. SERVICES SECTION — exact from ServicesSection.tsx
   ═══════════════════════════════════════════════════════ */
#services {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0A0A0A 0%, #100404 50%, #0A0A0A 100%);
}

/* Gold glow top-right */
.services-glow {
  position: absolute;
  top: 0;
  right: 25%;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Service card */
.service-card {
  border-radius: 8px;
  padding: 1.75rem;
  transition: transform 300ms var(--ease-out), box-shadow 300ms ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(201,169,110,0.1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  font-size: 1.6rem;
}

.service-title {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--wasl-cream);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-feature-dot {
  color: var(--wasl-gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.service-feature-text {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.75);
  font-size: 0.85rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--wasl-gold);
  font-family: 'Tajawal', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: gap 200ms ease;
}
.service-link:hover { gap: 0.75rem; color: var(--wasl-gold); }

/* ═══════════════════════════════════════════════════════
   20. PRICING SECTION — exact from PricingSection.tsx
   ═══════════════════════════════════════════════════════ */
#pricing {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: linear-gradient(180deg, #0A0A0A 0%, #0d0203 50%, #0A0A0A 100%);
}

/* Crimson ambient glow center-top */
.pricing-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(155,0,0,0.14) 0%, transparent 70%);
}

/* Packages grid */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto 6rem;
  align-items: end; /* featured card scale(1.04) pushes it up — matches React original */
}
@media (min-width: 768px) {
  .packages-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Package card */
.pkg-card {
  position: relative;
  border-radius: 8px;
  padding: 2rem;
  background: linear-gradient(160deg, rgba(201,169,110,0.06) 0%, rgba(10,10,10,0.8) 100%);
  border: 1px solid rgba(201,169,110,0.15);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform 700ms var(--ease-out), opacity 700ms var(--ease-out);
}

.pkg-card-featured {
  background: linear-gradient(160deg, rgba(155,0,0,0.28) 0%, rgba(10,10,10,0.9) 60%, rgba(201,169,110,0.08) 100%);
  border: 1px solid rgba(201,169,110,0.45);
  box-shadow: 0 0 60px rgba(155,0,0,0.22), 0 0 30px rgba(201,169,110,0.1), 0 20px 60px rgba(0,0,0,0.5);
  transform: scale(1.04);
}
@media (max-width: 767px) {
  .pkg-card-featured { transform: scale(1); }
}

/* Featured badge */
.pkg-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--wasl-gold), var(--wasl-gold-dark));
  color: var(--wasl-black);
  font-family: 'Tajawal', sans-serif;
}

.pkg-tier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}
.pkg-tier-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1.6rem;
}
.pkg-tier-en {
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}
.pkg-tagline {
  font-family: 'Noto Naskh Arabic', serif;
  color: rgba(245,240,232,0.55);
  font-size: 0.88rem;
  font-style: italic;
}

.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pkg-price-num {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1;
}
.pkg-price-currency {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  color: var(--wasl-gold);
  font-size: 0.95rem;
}
.pkg-price-period {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.4);
  font-size: 0.75rem;
}

.pkg-services {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.pkg-service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.pkg-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.pkg-check svg { width: 10px; height: 10px; }
.pkg-service-text {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.82);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Individual services grid */
.individual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .individual-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .individual-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.individual-card {
  position: relative;
  border-radius: 8px;
  padding: 1.5rem;
  background: rgba(201,169,110,0.04);
  border: 1px solid rgba(201,169,110,0.12);
  transition: border-color 300ms ease, box-shadow 300ms ease;
  cursor: pointer;
}
.individual-card:hover {
  border-color: rgba(201,169,110,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.individual-card-hover {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(155,0,0,0.12), rgba(201,169,110,0.06));
}
.individual-card:hover .individual-card-hover { opacity: 1; }

.individual-card-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.individual-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  font-size: 1.4rem;
  background: rgba(155,0,0,0.2);
  border: 1px solid rgba(155,0,0,0.35);
  transition: transform 300ms var(--ease-out);
}
.individual-card:hover .individual-icon { transform: scale(1.1); }

.individual-title {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  color: var(--wasl-cream);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.individual-desc {
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.6);
  font-size: 0.78rem;
}

.individual-footer {
  position: relative;
  z-index: 10;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.individual-price-label {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.3);
  font-size: 0.75rem;
}
.individual-cta-label {
  font-family: 'Tajawal', sans-serif;
  font-weight: 600;
  color: rgba(201,169,110,0.5);
  font-size: 0.78rem;
  transition: color 200ms ease;
}
.individual-card:hover .individual-cta-label { color: var(--wasl-gold); }

.pricing-note {
  text-align: center;
  margin-top: 3rem;
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.4);
  font-size: 0.82rem;
}

/* ═══════════════════════════════════════════════════════
   21. CONTACT SECTION — exact from ContactSection.tsx
   ═══════════════════════════════════════════════════════ */
#contact {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
  background: var(--wasl-black);
}

/* Background image */
.contact-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.contact-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.15);
}

/* Gradient overlay */
.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(139,0,0,0.2) 0%, transparent 50%, rgba(10,10,10,0.8) 100%);
  pointer-events: none;
}

/* 2-col grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

/* Form card */
.contact-form-card {
  border-radius: 8px;
  padding: 2rem;
  border: 1px solid rgba(201,169,110,0.2);
}

.contact-form-title {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--wasl-cream);
  margin-bottom: 1.5rem;
}

.contact-form-label {
  display: block;
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.8);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 480px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}

.contact-form-field {
  margin-bottom: 1rem;
}

/* Success state */
.contact-success {
  text-align: center;
  padding: 3rem 1rem;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 8px;
}
.contact-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.contact-success-title {
  font-family: 'Tajawal', sans-serif;
  color: var(--wasl-gold);
  font-size: 1.1rem;
  font-weight: 700;
}
.contact-success-sub {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.6);
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Contact info items */
.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 8px;
  background: rgba(201,169,110,0.05);
  border: 1px solid rgba(201,169,110,0.12);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(139,0,0,0.3);
  color: var(--wasl-gold);
  border: 1px solid rgba(201,169,110,0.2);
}
.contact-info-icon svg { width: 22px; height: 22px; }

.contact-info-label {
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.7);
  font-size: 0.8rem;
  margin-bottom: 0.2rem;
}

.contact-info-value {
  font-family: 'Tajawal', sans-serif;
  color: var(--wasl-cream);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: color 200ms ease;
}
.contact-info-value:hover { color: var(--wasl-gold); }

/* WhatsApp CTA */
.contact-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: transform 200ms var(--ease-out), box-shadow 200ms ease;
  animation: pulseGold 3s ease-in-out infinite;
}
.contact-wa-btn svg { width: 24px; height: 24px; }
.contact-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  color: #fff;
}

/* Working hours */
.contact-hours {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 8px;
  text-align: center;
  background: rgba(201,169,110,0.05);
  border: 1px solid rgba(201,169,110,0.12);
}
.contact-hours-label {
  display: block;
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.7);
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
}
.contact-hours-time {
  display: block;
  font-family: 'Noto Naskh Arabic', serif;
  color: var(--wasl-cream);
  font-weight: 700;
  font-size: 1.05rem;
}
.contact-hours-days {
  display: block;
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.75);
  font-size: 0.88rem;
  margin-top: 0.3rem;
}

/* ═══════════════════════════════════════════════════════
   22. FOOTER — exact from Footer.tsx
   ═══════════════════════════════════════════════════════ */
#wasl-footer {
  position: relative;
  overflow: hidden;
  background: #060606;
}

/* Footer grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* Footer logo */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.footer-logo-hex {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wasl-gold), var(--wasl-gold-dark));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  flex-shrink: 0;
}
.footer-logo-hex span {
  color: var(--wasl-black);
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1.2rem;
}
.footer-logo-ar {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--wasl-gold);
  line-height: 1;
}
.footer-logo-en {
  font-family: 'Tajawal', sans-serif;
  font-weight: 300;
  font-size: 0.7rem;
  color: rgba(201,169,110,0.5);
  letter-spacing: 0.2em;
  margin-top: 2px;
}

/* Footer description */
.footer-desc {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.55);
  line-height: 1.9;
  font-size: 0.9rem;
  max-width: 320px;
  margin-bottom: 1rem;
}

/* Working hours box */
.footer-hours-box {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.25rem;
  background: rgba(201,169,110,0.06);
  border: 1px solid rgba(201,169,110,0.15);
}
.footer-hours-label {
  font-family: 'Tajawal', sans-serif;
  color: rgba(201,169,110,0.7);
  font-size: 0.75rem;
}
.footer-hours-time {
  font-family: 'Noto Naskh Arabic', serif;
  color: var(--wasl-cream);
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-hours-days {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.5);
  font-size: 0.78rem;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.2);
  color: rgba(201,169,110,0.7);
  transition: background 200ms ease, color 200ms ease;
  text-decoration: none;
}
.footer-social-btn svg { width: 18px; height: 18px; }
.footer-social-btn:hover {
  background: rgba(201,169,110,0.15);
  color: var(--wasl-gold);
}

/* Footer column title */
.footer-col-title {
  font-family: 'Noto Naskh Arabic', serif;
  font-weight: 700;
  color: var(--wasl-gold);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

/* Footer links */
.footer-link {
  display: block;
  text-align: right;
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.55);
  font-size: 0.9rem;
  margin-bottom: 0.625rem;
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-link:hover { color: var(--wasl-gold); }

/* Bottom bar */
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(201,169,110,0.1);
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; }
}

.footer-copyright {
  font-family: 'Tajawal', sans-serif;
  color: rgba(245,240,232,0.35);
  font-size: 0.8rem;
}

.footer-flags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-flags span {
  font-size: 1.1rem;
  opacity: 0.7;
  transition: opacity 200ms ease;
}
.footer-flags span:hover { opacity: 1; }

/* ═══════════════════════════════════════════════════════
   23. RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════ */
@media (max-width: 767px) {
  #hero { min-height: 100svh; }
  .hero-content { padding-top: 7rem; padding-bottom: 4rem; }
  .hero-h1 { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-num { font-size: 1.6rem; }
  .hero-scroll { display: none; }

  #about, #services, #pricing, #contact { padding: 4rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  .packages-grid { gap: 1.5rem; }
  .pkg-card-featured { transform: scale(1); }

  .contact-form-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   24. REDUCED MOTION
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right,
  .hero-badge, .hero-h1, .hero-sub, .hero-cta, .hero-stats,
  .about-feature-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .ticker-track { animation: none !important; }
  .animate-bounce { animation: none !important; }
  .pulse-gold { animation: none !important; }
  .float-anim { animation: none !important; }
  .shimmer-text { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════
   25. SCROLLBAR STYLING
   ═══════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--wasl-black); }
::-webkit-scrollbar-thumb {
  background: rgba(201,169,110,0.3);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(201,169,110,0.5); }

/* ═══════════════════════════════════════════════════════
   26. SELECTION COLOR
   ═══════════════════════════════════════════════════════ */
::selection {
  background: rgba(201,169,110,0.3);
  color: var(--wasl-cream);
}
