/* ============================================================
   AuraStation | أوراستيشن — Brand CSS
   Premium Creative & Strategic Production
   Brand Palette: Deep Black / Gold / Warm Off-White / Slate
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  /* Brand Colors */
  --clr-bg:          #0a0a0b;
  --clr-bg-2:        #0f0f11;
  --clr-bg-card:     #111115;
  --clr-bg-card-h:   #161619;
  --clr-border:      rgba(212, 175, 55, 0.15);
  --clr-border-h:    rgba(212, 175, 55, 0.4);

  --clr-gold:        #D4AF37;
  --clr-gold-light:  #F0D060;
  --clr-gold-dark:   #A88B20;
  --clr-gold-muted:  rgba(212, 175, 55, 0.2);

  --clr-white:       #F5F0E8;
  --clr-white-2:     #E8E0D0;
  --clr-muted:       #888888;
  --clr-muted-light: #AAAAAA;

  /* Typography */
  --font-ar:  'Tajawal', sans-serif;
  --font-en:  'Playfair Display', serif;
  --font-ui:  'Inter', sans-serif;

  /* Spacing */
  --section-pad: 120px;
  --container:   1240px;

  /* Transitions */
  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur-fast: 0.25s;
  --dur-med:  0.4s;
  --dur-slow: 0.7s;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-ar);
  background: var(--clr-bg);
  color: var(--clr-white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; transition: color var(--dur-fast) var(--ease); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── Selection ──────────────────────────────────────────────── */
::selection {
  background: var(--clr-gold);
  color: var(--clr-bg);
}

/* ── Scrollbar ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--clr-bg-2); }
::-webkit-scrollbar-thumb { background: var(--clr-gold-dark); border-radius: 10px; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ── Gradient Text ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 50%, var(--clr-gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Section Labels ─────────────────────────────────────────── */
.section-label {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section-title {
  font-family: var(--font-ar);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--clr-white);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--clr-muted-light);
  line-height: 1.8;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
  color: var(--clr-bg);
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,175,55,0.35); }
.btn-primary i { font-size: 0.9rem; position: relative; z-index: 1; }
.btn-primary span, .btn-primary > *:not(i) { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  border: 1.5px solid var(--clr-border-h);
  color: var(--clr-white-2);
  font-family: var(--font-ar);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all var(--dur-med) var(--ease);
}
.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: var(--clr-gold-muted);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 48px; font-size: 1.1rem; }
.btn-full  { width: 100%; justify-content: center; }

/* ── Preloader ──────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

/* ═══════════════════════════════════════════════════════════════
   LOGO IMAGES — transparent PNGs, background-removed, original brand
   logo-ar-transparent.png  → white Arabic logo on transparent bg
   logo-icon-transparent.png → A icon with gold dot, transparent bg
   logo-en-transparent.png  → white English logo on transparent bg
═══════════════════════════════════════════════════════════════ */

/* Base shared rule for all logo images */
.logo-img {
  display: block;
  width: auto;
  object-fit: contain;
  /* keep original proportions, no distortion */
  flex-shrink: 0;
}

/* ── Navbar logo ─────────────────────────────────────────────── */
.logo-img--nav {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  transition: filter var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav-logo:hover .logo-img--nav {
  filter: drop-shadow(0 0 7px rgba(212,175,55,0.5));
  opacity: 0.88;
}

/* ── Preloader logo ──────────────────────────────────────────── */
.logo-img--preloader {
  height: 80px;
  filter: drop-shadow(0 0 20px rgba(212,175,55,0.3));
}

/* ── Hero logo ───────────────────────────────────────────────── */
.logo-img--hero {
  height: 110px;
  width: auto;
  display: block;
  margin: 0 auto;   /* center horizontally */
  filter: drop-shadow(0 0 32px rgba(212,175,55,0.25));
  transition: filter var(--dur-med) var(--ease);
}
.hero-logo-wrap:hover .logo-img--hero {
  filter: drop-shadow(0 0 52px rgba(212,175,55,0.5));
}

/* ── Footer logo ─────────────────────────────────────────────── */
.logo-img--footer {
  height: 56px;
  opacity: 0.9;
  transition: opacity var(--dur-fast) var(--ease);
}
.logo-img--footer:hover { opacity: 1; }

/* ── About section emblem icon ───────────────────────────────── */
.emblem-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  /* white A on dark card bg — no filter needed */
}

/* ── Preloader block ─────────────────────────────────────────── */
.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 32px;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-gold-dark), var(--clr-gold-light));
  border-radius: 2px;
  animation: fillBar 1.8s var(--ease) forwards;
}
@keyframes fillBar {
  0%   { width: 0%; }
  100% { width: 100%; }
}

/* ── Custom Cursor (desktop only) ──────────────────────────── */
@media (pointer: fine) {
  .cursor-dot, .cursor-ring {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: opacity 0.3s;
  }
  .cursor-dot {
    width: 7px; height: 7px;
    background: var(--clr-gold);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(212,175,55,0.6);
    transition: transform 0.15s var(--ease), width 0.25s, height 0.25s, border-color 0.25s;
  }
  .cursor-ring.hovering {
    width: 56px; height: 56px;
    border-color: var(--clr-gold);
  }
  body { cursor: none; }
  a, button, [role="button"] { cursor: none; }
}

/* ── Navbar ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  transition: background var(--dur-med) var(--ease),
              border-color var(--dur-med) var(--ease),
              padding var(--dur-med) var(--ease);
}
#navbar.scrolled {
  background: rgba(10, 10, 11, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--clr-border);
  padding: 0 40px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  height: 76px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--clr-muted-light);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--dur-med) var(--ease);
}
.nav-links a:hover { color: var(--clr-white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 10px 22px !important;
  border: 1.5px solid var(--clr-border-h) !important;
  border-radius: 5px;
  color: var(--clr-gold) !important;
  font-weight: 600 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--clr-gold-muted) !important; border-color: var(--clr-gold) !important; }

/* ── Language Switcher ──────────────────────────────────────── */
.lang-switcher .lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border: 1px solid var(--clr-border-h);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-muted-light);
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
}
.lang-switcher .lang-btn:hover {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
  background: var(--clr-gold-muted);
}
.lang-icon { font-size: 0.85rem; }
.lang-btn-mobile {
  color: var(--clr-gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 26px; height: 1.5px;
  background: var(--clr-white);
  transition: all var(--dur-fast) var(--ease);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(10,10,11,0.97);
  backdrop-filter: blur(20px);
  padding: 24px 32px;
  border-bottom: 1px solid var(--clr-border);
  z-index: 999;
  transform: translateY(-10px);
  opacity: 0;
  transition: all var(--dur-med) var(--ease);
}
.mobile-menu.open { display: block; transform: translateY(0); opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 20px; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--clr-white-2);
  display: block;
  padding: 8px 0;
  border-bottom: 1px solid var(--clr-border);
}
.mobile-menu a:hover { color: var(--clr-gold); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 32px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}
.glow-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.glow-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.08) 0%, transparent 70%);
  bottom: 100px; right: 10%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  border: 1px solid var(--clr-border-h);
  border-radius: 100px;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 36px;
  background: rgba(212,175,55,0.05);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-gold);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(212,175,55,0); }
}

/* ── Hero Logo Wrap ─────────────────────────────────────────── */
.hero-logo-wrap {
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-ar);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 28px;
}
.title-line {
  font-size: clamp(2.8rem, 6vw, 5rem);
  display: block;
}
.title-sub {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--clr-muted-light);
  font-weight: 400;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--clr-muted-light);
  line-height: 1.9;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 72px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-en);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-plus {
  font-size: 1.8rem;
  color: var(--clr-gold);
  font-weight: 300;
}
.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--clr-muted);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px; height: 52px;
  background: var(--clr-border);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-indicator span {
  display: block;
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--clr-gold), transparent);
  animation: scrollLine 2s ease infinite;
}
.scroll-indicator p {
  font-size: 0.7rem;
  color: var(--clr-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-ui);
  writing-mode: unset;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Ticker ─────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: var(--clr-gold-muted);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: tickerMove 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-muted-light);
}
.ticker-dot { color: var(--clr-gold) !important; font-size: 0.6rem !important; }
@keyframes tickerMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── About Section ──────────────────────────────────────────── */
.about-section { background: var(--clr-bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.about-frame {
  position: relative;
  aspect-ratio: 1;
  max-width: 420px;
  margin: 0 auto;
}
.frame-inner {
  width: 100%; height: 100%;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  background: var(--clr-bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.frame-inner::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(212,175,55,0.3), transparent 50%, rgba(212,175,55,0.1));
  z-index: -1;
}

.about-emblem { position: relative; }
.emblem-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid;
  border-radius: 50%;
}
.ring-1 { width: 180px; height: 180px; border-color: rgba(212,175,55,0.3); animation: spinSlow 12s linear infinite; }
.ring-2 { width: 130px; height: 130px; border-color: rgba(212,175,55,0.5); animation: spinSlow 8s linear infinite reverse; }
.ring-3 { width: 80px; height: 80px; border-color: var(--clr-gold); animation: spinSlow 5s linear infinite; }
@keyframes spinSlow {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}
.emblem-core {
  width: 80px; height: 80px;
  background: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  /* removed gold bg — now shows real logo icon */
}

.frame-tag {
  position: absolute;
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-bg-card);
  padding: 6px 14px;
  border: 1px solid var(--clr-border-h);
  border-radius: 4px;
}
.top-left    { top: -12px; right: -12px; }
.bottom-right { bottom: -12px; left: -12px; }

.about-text .section-label { text-align: right; }
.about-text .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 24px; }

.about-lead {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--clr-white-2);
  line-height: 1.85;
  margin-bottom: 16px;
}
.about-body {
  font-size: 1rem;
  color: var(--clr-muted-light);
  line-height: 1.9;
  margin-bottom: 40px;
}

.about-pillars { display: flex; flex-direction: column; gap: 20px; }

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  background: var(--clr-bg-card);
  transition: all var(--dur-med) var(--ease);
}
.pillar:hover {
  border-color: var(--clr-border-h);
  background: var(--clr-bg-card-h);
  transform: translateX(-4px);
}
.pillar-icon {
  min-width: 44px; height: 44px;
  background: var(--clr-gold-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.1rem;
}
.pillar strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  display: block;
  margin-bottom: 3px;
}
.pillar p { font-size: 0.88rem; color: var(--clr-muted); }

/* ── Services Section ───────────────────────────────────────── */
.services-section { background: var(--clr-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 36px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: all var(--dur-med) var(--ease);
  cursor: default;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-gold));
  transition: width var(--dur-slow) var(--ease);
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after  { width: 100%; }
.service-card:hover {
  border-color: var(--clr-border-h);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(212,175,55,0.1);
}

.card-number {
  font-family: var(--font-en);
  font-size: 4rem;
  font-weight: 200;
  color: rgba(212,175,55,0.1);
  line-height: 1;
  position: absolute;
  top: 20px;
  left: 28px;
}
.card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--clr-gold-muted), rgba(212,175,55,0.05));
  border: 1px solid var(--clr-border-h);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.3rem;
  margin-bottom: 22px;
  transition: all var(--dur-med) var(--ease);
}
.service-card:hover .card-icon {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg);
  border-color: transparent;
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.service-card > p {
  font-size: 0.95rem;
  color: var(--clr-muted-light);
  line-height: 1.75;
  margin-bottom: 24px;
}
.card-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--clr-muted);
  transition: color var(--dur-fast);
}
.card-features li:hover { color: var(--clr-white-2); }
.card-features li i {
  color: var(--clr-gold);
  font-size: 0.7rem;
  min-width: 14px;
}
.card-arrow {
  position: absolute;
  bottom: 24px; left: 28px;
  width: 36px; height: 36px;
  border: 1px solid var(--clr-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.85rem;
  transition: all var(--dur-med) var(--ease);
}
.service-card:hover .card-arrow {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-color: var(--clr-gold);
  transform: rotate(-45deg);
}

/* ── Process Section ────────────────────────────────────────── */
.process-section { background: var(--clr-bg-2); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-timeline::before {
  content: '';
  position: absolute;
  top: 42px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--clr-border-h), var(--clr-border-h), transparent);
}

.process-step {
  padding: 0 24px;
  text-align: center;
  position: relative;
}
.step-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--clr-gold);
  margin-bottom: 16px;
  font-style: normal;
}
.step-content {
  padding-top: 8px;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border-h);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.2rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all var(--dur-med) var(--ease);
}
.process-step:hover .step-icon {
  background: var(--clr-gold);
  color: var(--clr-bg);
  border-color: transparent;
  box-shadow: 0 0 30px rgba(212,175,55,0.4);
}
.step-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.step-content p {
  font-size: 0.88rem;
  color: var(--clr-muted);
  line-height: 1.8;
}

/* ── Identity Section ───────────────────────────────────────── */
.identity-section { background: var(--clr-bg); }

.identity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.identity-card {
  padding: 36px 28px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  text-align: center;
  transition: all var(--dur-med) var(--ease);
}
.identity-card:hover {
  border-color: var(--clr-border-h);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.identity-icon {
  width: 56px; height: 56px;
  background: var(--clr-gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1.3rem;
  margin: 0 auto 20px;
}
.identity-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
}
.identity-card p {
  font-size: 0.9rem;
  color: var(--clr-muted-light);
  line-height: 1.8;
}

.brand-tone {
  text-align: center;
  padding: 48px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
}
.tone-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-gold);
  margin-bottom: 24px;
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.tone-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tone-tag {
  padding: 10px 24px;
  border: 1px solid var(--clr-border-h);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-white-2);
  transition: all var(--dur-fast) var(--ease);
  cursor: default;
}
.tone-tag:hover {
  background: var(--clr-gold-muted);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* ── Statement Section ──────────────────────────────────────── */
.statement-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
  background: var(--clr-bg-2);
}
.statement-bg {
  position: absolute;
  inset: 0;
}
.statement-glow {
  position: absolute;
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.08) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
}
.statement-content {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}
.statement-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 24px;
}
.statement-desc {
  font-size: 1.1rem;
  color: var(--clr-muted-light);
  line-height: 1.9;
  margin-bottom: 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Contact Section ────────────────────────────────────────── */
.contact-section { background: var(--clr-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info { padding-top: 12px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--clr-border);
  transition: all var(--dur-fast) var(--ease);
}
.contact-item:hover { border-color: var(--clr-border-h); }
.contact-icon {
  min-width: 44px; height: 44px;
  background: var(--clr-gold-muted);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 1rem;
}
.contact-label {
  display: block;
  font-size: 0.78rem;
  color: var(--clr-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-family: var(--font-ui);
}
.contact-item a, .contact-item span {
  font-size: 1rem;
  color: var(--clr-white-2);
  transition: color var(--dur-fast);
}
.contact-item a:hover { color: var(--clr-gold); }

/* Contact Form */
.contact-form-wrap {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 44px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-muted-light);
  font-family: var(--font-ui);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 12px 16px;
  font-family: var(--font-ar);
  font-size: 0.95rem;
  color: var(--clr-white);
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  outline: none;
  width: 100%;
  direction: rtl;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--clr-muted);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group select option {
  background: var(--clr-bg-card);
  color: var(--clr-white);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--clr-border-h);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--clr-gold);
  text-align: center;
  justify-content: center;
}
.form-success.visible { display: flex; }
.form-success i { font-size: 1.1rem; }

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--clr-bg-2);
  border-top: 1px solid var(--clr-border);
  padding: 72px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--clr-border);
}

.footer-logo {
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 1rem;
  color: var(--clr-muted-light);
  margin-bottom: 4px;
}
.footer-sub {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: var(--clr-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 20px;
  font-family: var(--font-ui);
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--clr-muted);
  transition: color var(--dur-fast);
}
.footer-col a:hover { color: var(--clr-gold); }

.social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 38px; height: 38px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-muted);
  font-size: 0.9rem;
  transition: all var(--dur-fast) var(--ease);
}
.social-link:hover {
  background: var(--clr-gold-muted);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--clr-muted);
}
.footer-copy-en {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(212,175,55,0.5);
}

/* ── Animations ─────────────────────────────────────────────── */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.reveal-left { transform: translateX(40px); }
.reveal-right { transform: translateX(-40px); }

.reveal.visible, .reveal-left.visible, .reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1080px) {
  :root { --section-pad: 90px; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-frame { max-width: 300px; }
  .identity-grid { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-section { padding: 100px 24px 60px; }
  /* Logo responsive */
  .logo-img--nav    { height: 38px; width: auto; max-width: 170px; }
  .logo-img--hero   { height: 76px; }
  .logo-img--footer { height: 44px; }
  .services-grid { grid-template-columns: 1fr; }
  .identity-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .contact-form-wrap { padding: 28px 24px; }
  .process-timeline { grid-template-columns: 1fr; gap: 32px; }
  #navbar { padding: 0 20px; }
  #navbar.scrolled { padding: 0 20px; }
  .stat-num { font-size: 2.2rem; }
  .hero-stats { gap: 24px; }
  .stat-divider { height: 36px; }
}

@media (max-width: 480px) {
  :root { --section-pad: 56px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .logo-img--hero { height: 60px; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.62rem; text-align: center; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-divider { display: none; }
}
