/* ==============================================================
   YSR INVEST 2.0 – Premium Design System
   مستوحى من: Apple, Stripe, Linear, Luxury Investment Brands
   بني بدون إطار عمل – CSS خالص
   ============================================================== */

/* ─── Design Tokens ─── */
:root {
  --navy-50: #E8EDF5;
  --navy-100: #C2D0E8;
  --navy-200: #94A9CC;
  --navy-300: #6178A3;
  --navy-400: #3A4F7A;
  --navy-500: #1A2D52;
  --navy-600: #0F1D3A;
  --navy-700: #0B1428;
  --navy-800: #07111F;
  --navy-900: #040B16;

  --gold-50: #FDF5E6;
  --gold-100: #F5DEB3;
  --gold-200: #E7C17A;
  --gold-300: #D4A654;
  --gold-400: #C8923E;
  --gold-500: #B8863C;
  --gold-600: #946E30;
  --gold-700: #705424;

  --white-80: rgba(255,255,255,0.80);
  --white-70: rgba(255,255,255,0.70);
  --white-60: rgba(255,255,255,0.60);
  --white-55: rgba(255,255,255,0.55);
  --white-50: rgba(255,255,255,0.50);
  --white-40: rgba(255,255,255,0.40);
  --white-35: rgba(255,255,255,0.35);
  --white-30: rgba(255,255,255,0.30);
  --white-25: rgba(255,255,255,0.25);
  --white-20: rgba(255,255,255,0.20);
  --white-15: rgba(255,255,255,0.15);
  --white-12: rgba(255,255,255,0.12);
  --white-10: rgba(255,255,255,0.10);
  --white-08: rgba(255,255,255,0.08);
  --white-06: rgba(255,255,255,0.06);
  --white-05: rgba(255,255,255,0.05);
  --white-04: rgba(255,255,255,0.04);
  --white-03: rgba(255,255,255,0.03);
  --white-02: rgba(255,255,255,0.02);

  --gold-20: rgba(200,146,62,0.20);
  --gold-15: rgba(200,146,62,0.15);
  --gold-12: rgba(200,146,62,0.12);
  --gold-10: rgba(200,146,62,0.10);
  --gold-08: rgba(200,146,62,0.08);
  --gold-06: rgba(200,146,62,0.06);
  --gold-05: rgba(200,146,62,0.05);
  --gold-04: rgba(200,146,62,0.04);
  --gold-03: rgba(200,146,62,0.03);
  --gold-02: rgba(200,146,62,0.02);

  --radius-xs: 0.375rem;
  --radius-sm: 0.5rem;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
  --transition: 300ms ease;

  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Inter', system-ui, -apple-system, sans-serif;

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.35);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.45);
  --shadow-gold-sm: 0 2px 12px rgba(200,146,62,0.15);
  --shadow-gold-md: 0 4px 24px rgba(200,146,62,0.2);
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ar);
  background: var(--navy-800);
  color: var(--navy-50);
  overflow-x: hidden;
  line-height: 1.7;
  text-align: right;
  direction: rtl;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

::selection {
  background: var(--gold-20);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--gold-15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-20); }

/* ─── Utility ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: 56rem; }
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.hidden { display: none !important; }

.glass {
  background: var(--white-04);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--white-06);
}
.glass-gold {
  background: linear-gradient(135deg, var(--gold-05), var(--gold-02));
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border: 1px solid var(--gold-08);
}
.glass-strong {
  background: var(--white-08);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--white-12);
}

/* ─── Grid Background ─── */
.bg-grid {
  background-image:
    linear-gradient(var(--white-03) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ─── Text Gradient ─── */
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400), var(--gold-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Section ─── */
.section { padding: 4.5rem 0; }
@media (max-width: 768px) { .section { padding: 3rem 0; } }
.section-dark { background: var(--navy-800); }
.section-darker { background: var(--navy-900); }
.section-mid { background: var(--navy-700); }

.section-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: #fff;
  margin-bottom: 2.5rem;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) { .section-title { margin-bottom: 1.5rem; } }

/* ─── Buttons ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
  color: var(--navy-900);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  transition: all 0.4s var(--ease);
  font-family: inherit;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-md); }
.btn-gold:active { transform: translateY(0); }
.btn-gold:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--white-20);
  color: var(--white-80);
  padding: 0.75rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.875rem;
  background: transparent;
  transition: all 0.4s var(--ease);
  font-family: inherit;
}
.btn-outline:hover { background: var(--white-05); border-color: var(--gold-400); color: #fff; }

/* ─── Navbar ─── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.6s ease;
}
.navbar.scrolled {
  background: rgba(7, 17, 31, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--white-05);
}
.navbar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo {
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}
.navbar-logo:hover { opacity: 0.8; }
.navbar-links { display: flex; align-items: center; gap: 2rem; }
@media (max-width: 767px) { .navbar-links { display: none; } }
.navbar-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--white-60);
  transition: color var(--transition);
  position: relative;
  padding: 0.25rem 0;
}
.navbar-links a:hover { color: #fff; }
.navbar-links a.active { color: #fff; }

.navbar-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switcher {
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-80);
  background: transparent;
  border: 1px solid var(--white-15);
  border-radius: var(--radius-full);
  transition: all var(--transition);
  font-family: inherit;
}
.lang-switcher:hover { background: var(--white-05); border-color: var(--gold-400); }

/* Hamburger */
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
}
@media (max-width: 767px) { .navbar-toggle { display: flex; } }
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-70);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.navbar-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.open span:nth-child(2) { opacity: 0; }
.navbar-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: rgba(7, 17, 31, 0.98);
  backdrop-filter: blur(24px);
  border-top: 1px solid var(--white-05);
  padding: 1.5rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-60);
  padding: 0.5rem 0;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: #fff; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-canvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-bg.loaded { opacity: 0.35; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(7,17,31,0.72), rgba(4,11,22,0.88));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; width: 100%;
}
.hero-inner { max-width: 52rem; }
.hero-title {
  color: #fff;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  letter-spacing: -0.03em;
}
.hero-sub {
  color: var(--white-50);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 40rem;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white-30);
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Stats Grid ─── */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-card {
  background: linear-gradient(135deg, var(--gold-04), var(--gold-02));
  border-radius: var(--radius-xl);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--gold-08);
  transition: all 0.5s var(--ease);
}
.stat-number { font-size: clamp(2rem, 3vw, 3rem); font-weight: 700; color: var(--gold-400); margin-bottom: 0.25rem; }
.stat-label { font-size: 0.75rem; color: var(--white-50); font-weight: 500; }

/* ─── About / Intro ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; gap: 2rem; } }
.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gold-400);
  background: var(--gold-10);
  margin-bottom: 2rem;
}
.about-title {
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 2rem;
}
.about-p { color: var(--white-55); font-size: 1.0625rem; line-height: 1.9; margin-bottom: 1.5rem; }
.about-p2 { color: var(--white-40); font-size: 1.0625rem; line-height: 1.9; }

/* ─── Vision/Mission ─── */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
  background: linear-gradient(135deg, var(--gold-04), var(--gold-02));
  border: 1px solid var(--gold-08);
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  transition: all 0.5s var(--ease);
}
.vm-card:hover { transform: translateY(-4px); }
.vm-icon {
  width: 3.5rem; height: 3.5rem;
  border-radius: 50%;
  background: var(--gold-12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.vm-card-title { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 1rem; }
.vm-card-text { color: var(--white-50); line-height: 1.8; font-size: 1rem; }

/* ─── Philosophy ─── */
.phil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) { .phil-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .phil-grid { grid-template-columns: 1fr; } }
.phil-card {
  background: var(--white-04);
  border: 1px solid var(--white-06);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  transition: all 0.5s var(--ease);
}
.phil-card:hover { background: var(--white-06); }
.phil-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-20);
  margin-bottom: 1rem;
}
.phil-card-title { font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.phil-card-desc { font-size: 0.875rem; color: var(--white-40); line-height: 1.7; }

/* ─── Sectors ─── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1024px) { .sectors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .sectors-grid { grid-template-columns: 1fr; } }
.sector-card {
  position: relative;
  background: linear-gradient(135deg, var(--white-03), var(--white-02));
  border: 1px solid var(--white-06);
  border-radius: var(--radius-2xl);
  padding: 2rem 1.5rem;
  transition: all 0.5s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.sector-card:hover { border-color: var(--gold-15); background: var(--white-05); transform: translateY(-4px); }
.sector-card::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.5s ease;
  background: radial-gradient(600px circle at 50% 50%, var(--gold-06), transparent 60%);
  pointer-events: none;
}
.sector-card:hover::before { opacity: 1; }
.sector-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-lg);
  background: var(--gold-10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.sector-title { font-size: 1.125rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; position: relative; z-index: 1; }
.sector-desc { font-size: 0.8125rem; color: var(--white-40); line-height: 1.7; position: relative; z-index: 1; }

/* ─── Value Flow ─── */
.value-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 768px) {
  .value-flow { flex-direction: column; gap: 1.5rem; }
}
.value-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.value-circle {
  width: 4.5rem; height: 4.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 0.7s var(--ease);
}
.value-circle.highlight { background: linear-gradient(135deg, var(--gold-400), var(--gold-200)); color: var(--navy-900); }
.value-circle.mid { background: var(--gold-12); border: 2px solid var(--gold-20); color: var(--gold-400); }
.value-label { font-size: 0.8125rem; font-weight: 500; color: var(--white-50); margin-top: 1rem; }
.value-arrow {
  color: var(--white-15);
  font-size: 1.5rem;
  padding: 0 1rem;
}
@media (max-width: 768px) {
  .value-arrow { transform: rotate(90deg); padding: 0.5rem 0; }
}

/* ─── Why Cards ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1200px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  background: linear-gradient(135deg, var(--gold-04), var(--gold-02));
  border: 1px solid var(--gold-08);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.5s var(--ease);
}
.why-card:hover { transform: translateY(-4px); }
.why-num {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: var(--gold-12);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
}
.why-card-title { font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 0.75rem; }
.why-card-desc { font-size: 0.8125rem; color: var(--white-40); line-height: 1.7; }

/* ─── Leadership ─── */
.leadership-block {
  background: linear-gradient(135deg, var(--gold-04), var(--gold-02));
  border: 1px solid var(--gold-08);
  border-radius: var(--radius-3xl);
  padding: 2.5rem;
  position: relative;
}
@media (min-width: 768px) { .leadership-block { padding: 3rem; } }
.quote-mark {
  position: absolute;
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 700;
  line-height: 1;
  user-select: none;
  color: var(--gold-12);
  font-family: serif;
}
.quote-open { top: -0.2em; right: 0.2em; }
.leadership-quote { position: relative; z-index: 1; }
.leadership-p1 { font-size: clamp(1.125rem, 2vw, 1.5rem); color: var(--white-80); line-height: 1.9; margin-bottom: 1.5rem; }
.leadership-p2 { font-size: clamp(1rem, 1.5vw, 1.25rem); color: var(--white-50); line-height: 1.9; margin-bottom: 2.5rem; }
.leadership-sig {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--white-05);
}
.sig-line { flex: 1; height: 1px; background: linear-gradient(to left, var(--gold-20), transparent); }
.sig-name { font-size: 1.25rem; font-weight: 700; color: var(--gold-400); text-align: left; }
.sig-role { font-size: 0.75rem; color: var(--white-40); font-weight: 500; letter-spacing: 0.05em; }

/* ─── Trust ─── */
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .trust-pillars-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .trust-pillars-grid { grid-template-columns: repeat(2, 1fr); } }
.trust-pillar-card {
  background: linear-gradient(160deg, var(--gold-06), var(--gold-02));
  border: 1px solid var(--gold-10);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1rem;
  text-align: center;
  transition: all 0.5s var(--ease);
  cursor: default;
}
.trust-pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-20);
  box-shadow: 0 8px 32px rgba(200,146,62,0.12);
}
.trust-pillar-icon {
  font-size: 1.75rem;
  color: var(--gold-400);
  margin-bottom: 0.75rem;
  line-height: 1;
}
.trust-pillar-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

/* Trust Stats */
.trust-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 36rem;
  margin: 0 auto;
}
@media (max-width: 540px) { .trust-stats-row { grid-template-columns: 1fr; max-width: 100%; } }
.trust-stat-card {
  background: linear-gradient(135deg, var(--gold-05), var(--gold-02));
  border: 1px solid var(--gold-10);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.5s var(--ease);
}
.trust-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold-md);
}
.trust-stat-number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold-400);
  margin-bottom: 0.25rem;
  line-height: 1.1;
}
.trust-stat-label {
  font-size: 0.9375rem;
  color: var(--white-55);
  font-weight: 500;
}

/* ─── Contact ─── */
.contact-section {
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -25%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(200,146,62,0.03), transparent 60%);
  pointer-events: none;
}

.contact-accent {
  width: 3rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  border-radius: 2px;
  margin: 0 auto 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ─── Form ─── */
.contact-form-wrap {
  background: linear-gradient(135deg, var(--white-04), var(--white-02));
  border: 1px solid var(--white-06);
  border-radius: var(--radius-3xl);
  padding: 2rem;
}
@media (min-width: 768px) { .contact-form-wrap { padding: 2.5rem; } }

.form-group {
  position: relative;
  margin-bottom: 1.5rem;
}
.form-input {
  width: 100%;
  background: transparent;
  border: 1px solid var(--white-12);
  border-radius: var(--radius-xl);
  padding: 1.25rem 1.25rem 0.75rem;
  color: #fff;
  font-family: inherit;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  outline: none;
  position: relative;
  z-index: 1;
}
.form-input::placeholder { color: transparent; }
.form-input:focus { border-color: var(--gold-400); box-shadow: 0 0 0 3px var(--gold-15), inset 0 0 0 1px transparent; }
.form-input.error { border-color: rgba(220,38,38,0.4); box-shadow: 0 0 0 3px rgba(220,38,38,0.08); }
.form-textarea { resize: none; min-height: 7rem; padding-top: 1.5rem; }

.form-label {
  position: absolute;
  top: 1.15rem;
  right: 1.25rem;
  font-size: 0.9375rem;
  color: var(--white-35);
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 2;
  font-weight: 400;
}
.form-input:focus + .form-label,
.form-input.filled + .form-label,
.form-textarea:focus + .form-label,
.form-textarea.filled + .form-label {
  top: 0.35rem;
  font-size: 0.6875rem;
  color: var(--gold-400);
  font-weight: 500;
}
.form-input.filled:not(:focus) + .form-label,
.form-textarea.filled:not(:focus) + .form-label {
  color: var(--white-50);
}

.form-error {
  color: rgba(220,38,38,0.7);
  font-size: 0.75rem;
  margin-top: 0.35rem;
  display: block;
  min-height: 1.125rem;
  padding-right: 0.25rem;
}

.btn-form {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
  color: var(--navy-900);
  font-weight: 600;
  border: none;
  transition: all 0.4s var(--ease);
  font-family: inherit;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-form::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.btn-form:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold-md); }
.btn-form:hover::after { opacity: 1; }
.btn-form:active { transform: translateY(0); }
.btn-form:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn-form > * { position: relative; z-index: 1; }
.btn-form svg { margin-inline-end: 0.375rem; }

/* ─── Info ─── */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  background: linear-gradient(135deg, var(--gold-04), var(--gold-02));
  border: 1px solid var(--gold-08);
  border-radius: var(--radius-2xl);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: all 0.4s var(--ease);
}
.contact-card:hover {
  transform: translateX(-4px);
  border-color: var(--gold-20);
  box-shadow: 0 4px 24px rgba(200,146,62,0.06);
}
.contact-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-12), var(--gold-08));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  transition: all 0.4s var(--ease);
}
.contact-card:hover .contact-icon {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  transform: scale(1.05);
}
.contact-card:hover .contact-icon .contact-icon-svg { color: var(--navy-900); }

.contact-card-body { flex: 1; }
.contact-card-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}
.contact-card-value {
  color: var(--white-80);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.contact-card-value a {
  color: var(--white-80);
  transition: color var(--transition);
}
.contact-card-value a:hover { color: var(--gold-400); }

/* ─── Social ─── */
.contact-social {
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--white-06);
}
.contact-social-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--white-40);
  margin-bottom: 1rem;
}
.social-row {
  display: flex;
  gap: 0.75rem;
}
.social-icon-btn {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  background: var(--white-05);
  border: 1px solid var(--white-08);
  transition: all 0.4s var(--ease);
  text-decoration: none;
}
.social-icon-btn:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-sm);
}
.social-icon-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}

/* ─── RTL Overrides ─── */
[dir="rtl"] .contact-card:hover { transform: translateX(4px); }

/* ─── Footer ─── */
.footer {
  background: var(--navy-900);
  padding: 3.5rem 0 2rem;
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-20), var(--gold-400), var(--gold-20), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-logo { margin-bottom: 1rem; }
.footer-logo .logo-img { height: 2.75rem; }
.footer-desc { font-size: 0.8125rem; color: var(--white-35); line-height: 1.8; max-width: 20rem; }
.footer-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-400);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.625rem;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1.5rem;
  height: 2px;
  background: var(--gold-400);
  border-radius: 1px;
  transition: width 0.3s var(--ease);
}
.footer-heading:hover::after { width: 2.25rem; }
[dir="ltr"] .footer-heading::after { right: auto; left: 0; }
.footer-links { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-links a {
  font-size: 0.8125rem;
  color: var(--white-30);
  transition: all 0.3s var(--ease);
  position: relative;
  width: fit-content;
}
.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold-400);
  transition: width 0.3s var(--ease);
}
[dir="ltr"] .footer-links a::before { right: auto; left: 0; }
.footer-links a:hover { color: var(--gold-400); }
.footer-links a:hover::before { width: 100%; }
.footer-sector-item {
  font-size: 0.8125rem;
  color: var(--white-25);
  cursor: default;
  transition: color 0.3s var(--ease);
}
.footer-sector-item:hover { color: var(--white-40); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--gold-10);
  color: var(--gold-400);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.footer-contact-item:hover .footer-contact-icon {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: scale(1.1);
}
.footer-contact-item a { font-size: 0.8125rem; color: var(--white-30); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-400); }
.footer-contact-address { font-size: 0.75rem; color: var(--white-25); line-height: 1.6; }

.footer-social { display: flex; gap: 0.5rem; margin-top: 1.5rem; }
.footer-social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-30);
  background: var(--white-05);
  border: 1px solid var(--white-08);
  transition: all 0.4s var(--ease);
  text-decoration: none;
}
.footer-social-btn:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px rgba(200,146,62,0.2);
}
.footer-social-btn svg { width: 0.9375rem; height: 0.9375rem; }

.footer-bottom {
  border-top: 1px solid var(--white-06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 640px) { .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; } }
.footer-copy {
  font-size: 0.75rem;
  color: var(--white-25);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-copy-sep { color: var(--white-08); }
.footer-copy-brand { color: var(--gold-400); font-weight: 600; }
.footer-top {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-30);
  background: var(--white-05);
  border: 1px solid var(--white-08);
  transition: all 0.4s var(--ease);
  font-family: inherit;
  cursor: pointer;
  flex-shrink: 0;
}
.footer-top:hover {
  color: var(--navy-900);
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(200,146,62,0.2);
}
.footer-top svg { width: 1rem; height: 1rem; }
.footer-top span { display: none; }

/* ─── Reveal Animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(60px); transition: all 0.9s var(--ease); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(-60px); transition: all 0.9s var(--ease); }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.9s var(--ease); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─── Responsive ─── */
@media (max-width: 639px) {
  .hero-buttons .btn-gold,
  .hero-buttons .btn-outline { width: 100%; text-align: center; }
}

.logo-img {
  display: block;
  height: 2.5rem;
  width: auto;
  filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(350deg);
  transition: opacity var(--transition);
}
.navbar-logo .logo-img { height: 2.5rem; }
.footer-logo .logo-img { height: 2.5rem; }

/* ─── Reduced Motion ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .scroll-indicator { animation: none; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
