/* ============================================================
   HR-Y CUSTOMS CLEARANCE — DESIGN SYSTEM v7.0 ULTRA PRO
   حسام ردمان للتخليص الجمركي — نظام التصميم الاحترافي
   ============================================================ */

/* ─── GOOGLE FONTS IMPORT ─── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

/* ─── CSS CUSTOM PROPERTIES ─── */
:root {
  /* Core Palette — أفتح قليلاً للحصول على مظهر أقل قتامة */
  --navy:          #12214b;
  --navy-2:        #15234e;
  --navy-3:        #19295e;
  --navy-4:        #1c336a;
  --navy-5:        #223975;

  /* Gold System */
  --gold:          #5aa0d6;
  --gold-light:    #8ac4f0;
  --gold-dark:     #2e7cb8;
  --gold-xlight:   #b0dafa;
  --gold-pale:     rgba(90,160,214,0.12);
  --gold-pale2:    rgba(90,160,214,0.06);

  /* Cyan System */
  --cyan:          #25d7ff;
  --cyan-dark:     #00b8e0;
  --cyan-pale:     rgba(37,215,255,0.08);
  --cyan-pale2:    rgba(37,215,255,0.04);

  /* Glass Morphism */
  --glass-bg:      rgba(255,255,255,0.04);
  --glass-bg2:     rgba(255,255,255,0.07);
  --glass-border:  rgba(255,255,255,0.08);
  --glass-border2: rgba(90,160,214,0.20);
  --glass-blur:    blur(20px);
  --glass-blur2:   blur(40px);

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

  /* Spacing Scale */
  --sp-1: 0.25rem;  --sp-2: 0.5rem;   --sp-3: 0.75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;
  --sp-32: 8rem;

  /* Border Radius */
  --r-sm:   0.375rem;
  --r-md:   0.75rem;
  --r-lg:   1rem;
  --r-xl:   1.5rem;
  --r-2xl:  2rem;
  --r-3xl:  3rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.3);
  --shadow-md:    0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg:    0 8px 48px rgba(0,0,0,0.5);
  --shadow-gold:  0 0 30px rgba(90,160,214,0.25), 0 0 60px rgba(90,160,214,0.10);
  --shadow-cyan:  0 0 30px rgba(37,215,255,0.20), 0 0 60px rgba(37,215,255,0.08);

  /* Easing Functions */
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.65, 0, 0.35, 1);
  --ease-bounce:  cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Timing */
  --t-fast: 0.18s;
  --t-mid:  0.35s;
  --t-slow: 0.65s;
  --t-xl:   1.2s;

  /* Z-Index Scale */
  --z-below:  -1;
  --z-base:    1;
  --z-card:   10;
  --z-nav:   100;
  --z-modal: 200;
  --z-toast: 300;
  --z-cursor:400;

  /* Layout */
  --container: 1280px;
  --nav-h:     72px;
}

/* ─── CSS RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--navy);
  color: rgba(255,255,255,0.87);
  font-family: var(--font-ar);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

[dir="ltr"] body,
[dir="ltr"] { font-family: var(--font-en); }

/* ══════════════════════════════════════════════════════════
   PHONE NUMBERS — ALWAYS LTR (force left-to-right rendering
   for phone numbers regardless of page direction/language)
══════════════════════════════════════════════════════════ */
a[href^="tel:"],
.ltr-phone {
  direction: ltr;
  unicode-bidi: isolate;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── SELECTION ─── */
::selection { background: var(--gold-pale); color: var(--gold-light); }

/* ─── FOCUS VISIBLE ─── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ═══════════════════════════════════════════════════════════
   TYPOGRAPHY SYSTEM
   ═══════════════════════════════════════════════════════════ */
.text-xs    { font-size: 0.75rem;  line-height: 1.4; }
.text-sm    { font-size: 0.875rem; line-height: 1.5; }
.text-base  { font-size: 1rem;     line-height: 1.7; }
.text-lg    { font-size: 1.125rem; line-height: 1.6; }
.text-xl    { font-size: 1.25rem;  line-height: 1.5; }
.text-2xl   { font-size: 1.5rem;   line-height: 1.4; }
.text-3xl   { font-size: 1.875rem; line-height: 1.3; }
.text-4xl   { font-size: 2.25rem;  line-height: 1.2; }
.text-5xl   { font-size: 3rem;     line-height: 1.1; }
.text-6xl   { font-size: 3.75rem;  line-height: 1.05; }
.text-7xl   { font-size: 4.5rem;   line-height: 1; }

.font-light    { font-weight: 300; }
.font-normal   { font-weight: 400; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.font-extrabold{ font-weight: 800; }
.font-black    { font-weight: 900; }

.gradient-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 35%, var(--gold-light) 65%, var(--gold) 100%);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-gold 6s ease infinite;
}

.gradient-cyan {
  background: linear-gradient(135deg, var(--cyan-dark) 0%, var(--cyan) 50%, #7deefd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gold   { color: var(--gold); }
.text-cyan   { color: var(--cyan); }
.text-muted  { color: rgba(255,255,255,0.50); }
.text-subtle { color: rgba(255,255,255,0.35); }
.text-center { text-align: center; }

/* ─── SECTION TITLE SYSTEM ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gold-pale);
  border: 1px solid rgba(90,160,214,0.25);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
}

.section-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT SYSTEM
   ═══════════════════════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: var(--sp-24) 0;
  position: relative;
}

.section-alt { background: var(--navy-2); }
.section-alt2 { background: var(--navy-3); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--sp-6); }

/* ═══════════════════════════════════════════════════════════
   BACKGROUND MESH / GRID
   ═══════════════════════════════════════════════════════════ */
.bg-mesh {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90,160,214,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,160,214,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  animation: mesh-drift 30s linear infinite;
}

.bg-glow-gold {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,160,214,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.bg-glow-cyan {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,215,255,0.08) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: var(--z-nav);
  transition: background var(--t-mid) var(--ease-out),
              box-shadow var(--t-mid) var(--ease-out),
              height var(--t-mid) var(--ease-out);
}

#navbar.scrolled {
  background: rgba(16,28,60,0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 0 1px 0 rgba(90,160,214,0.15), var(--shadow-md);
  height: 62px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--sp-6);
  max-width: var(--container);
  margin: 0 auto;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-logo-main {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  padding-bottom: 2px;
}

.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  line-height: 1;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
}

.nav-link {
  position: relative;
  padding: var(--sp-2) var(--sp-3);
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.70);
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
  transition: left var(--t-mid) var(--ease-out),
              right var(--t-mid) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-light);
  background: var(--gold-pale2);
}

.nav-link:hover::after,
.nav-link.active::after {
  left: var(--sp-3);
  right: var(--sp-3);
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-1);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  padding: var(--sp-1);
  row-gap: 6px;
}

.lang-btn {
  padding: 4px var(--sp-2);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.50);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  cursor: pointer;
  white-space: nowrap;
}

.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── Language Dropdown (now used on ALL devices, desktop + mobile) ── */
.lang-switcher-desktop { display: none; }
.lang-dropdown-wrap    { display: block; position: relative; }

.lang-drop-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-full);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.lang-drop-toggle:hover {
  background: rgba(90,160,214,0.12);
  border-color: rgba(90,160,214,0.35);
  color: #5aa0d6;
}
.lang-drop-chevron {
  transition: transform 0.25s;
}
[aria-expanded="true"] .lang-drop-chevron {
  transform: rotate(180deg);
}

.lang-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(8, 14, 30, 0.97);
  border: 1px solid rgba(90,160,214,0.2);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(90,160,214,0.06);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 200;
}
.lang-drop-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-drop-item {
  display: block;
  width: 100%;
  text-align: right;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.04em;
}
.lang-drop-item:hover {
  background: rgba(90,160,214,0.12);
  color: #5aa0d6;
}

/* CTA Button */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-5);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: var(--r-full);
  transition: all var(--t-mid) var(--ease-spring);
  box-shadow: 0 0 0 0 rgba(90,160,214,0);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* Mobile Menu Toggle */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  cursor: pointer;
  padding: var(--sp-2);
}

.nav-hamburger span {
  height: 2px;
  background: var(--gold);
  border-radius: var(--r-full);
  transition: all var(--t-mid) var(--ease-out);
}

.nav-hamburger span:nth-child(1) { width: 100%; }
.nav-hamburger span:nth-child(2) { width: 70%; }
.nav-hamburger span:nth-child(3) { width: 100%; }

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); width: 100%; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); width: 100%; }

/* Mobile Nav */
.nav-mobile {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(16,28,60,0.98);
  backdrop-filter: var(--glass-blur);
  border-top: 1px solid var(--glass-border2);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform var(--t-mid) var(--ease-out),
              opacity var(--t-mid);
  z-index: calc(var(--z-nav) - 1);
  padding: var(--sp-6);
}

.nav-mobile.open {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.nav-mobile-link {
  padding: var(--sp-3) var(--sp-4);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  border-radius: var(--r-lg);
  border-left: 2px solid transparent;
  transition: all var(--t-fast);
}

.nav-mobile-link:hover {
  background: var(--gold-pale);
  border-left-color: var(--gold);
  color: var(--gold-light);
  padding-inline-start: var(--sp-6);
}

/* ═══════════════════════════════════════════════════════════
   CUSTOM CURSOR GLOW
   ═══════════════════════════════════════════════════════════ */
.cursor-glow {
  position: fixed;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,160,214,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: var(--z-cursor);
  transform: translate(-50%, -50%);
  transition: transform 0.1s, opacity var(--t-mid);
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}

/* Particle Canvas */
#particle-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* Hero Background Layers */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* Radial gradient overlay */
.hero-bg-layer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 50%, rgba(90,160,214,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(37,215,255,0.05) 0%, transparent 60%);
}

/* Grid lines */
.hero-bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90,160,214,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,160,214,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: mesh-drift 40s linear infinite;
}

/* Hero Orbit Rings */
.hero-orbits {
  position: absolute;
  top: 50%; left: -10%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  pointer-events: none;
  z-index: 1;
}
/* LTR languages: orbits on the right */
[dir="ltr"] .hero-orbits {
  left: auto;
  right: -10%;
}

.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(90,160,214,0.15);
  transform: translate(-50%, -50%);
}

.orbit-ring-1 {
  width: 220px; height: 220px;
  border-color: rgba(90,160,214,0.25);
  animation: orbit-rotate 15s linear infinite;
}

.orbit-ring-2 {
  width: 380px; height: 380px;
  border-color: rgba(37,215,255,0.12);
  animation: orbit-rotate 25s linear infinite reverse;
}

.orbit-ring-3 {
  width: 540px; height: 540px;
  border-color: rgba(90,160,214,0.08);
  animation: orbit-rotate 40s linear infinite;
}

.orbit-ring-4 {
  width: 700px; height: 700px;
  border-color: rgba(37,215,255,0.05);
  animation: orbit-rotate 60s linear infinite reverse;
}

/* Orbit Dots */
.orbit-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px var(--gold), 0 0 20px rgba(90,160,214,0.5);
}

.orbit-ring-1 .orbit-dot { top: 0; left: 50%; transform: translate(-50%, -50%); }
.orbit-ring-2 .orbit-dot {
  top: 0; left: 50%; transform: translate(-50%, -50%);
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(37,215,255,0.5);
  width: 6px; height: 6px;
}
.orbit-ring-3 .orbit-dot { top: 0; left: 50%; transform: translate(-50%, -50%); width: 5px; height: 5px; }

/* Hero Center Visual */
.hero-center-visual {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,160,214,0.15) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: hero-pulse 4s ease-in-out infinite;
}

/* Orbit Icons */
.orbit-planet {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: var(--r-lg);
  background: var(--glass-bg2);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  animation: planet-float 6s ease-in-out infinite;
}

.orbit-planet:nth-child(1) { top: 10%; right: 25%; animation-delay: 0s; }
.orbit-planet:nth-child(2) { top: 40%; right: 5%;  animation-delay: 1.5s; }
.orbit-planet:nth-child(3) { bottom: 25%; right: 20%; animation-delay: 0.8s; }
.orbit-planet:nth-child(4) { bottom: 10%; right: 50%; animation-delay: 2s; }
.orbit-planet:nth-child(5) { top: 20%; right: 55%; animation-delay: 1.2s; }

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--gold-pale);
  border: 1px solid rgba(90,160,214,0.30);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-6);
  animation: fade-up 0.8s var(--ease-out) 0.2s both;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: dot-pulse 2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-6);
  animation: fade-up 0.8s var(--ease-out) 0.4s both;
}

.hero-title-line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 70%, var(--gold) 100%);
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-gold 5s ease infinite;
  padding-bottom: 2px;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.60);
  margin-bottom: var(--sp-8);
  max-width: 540px;
  animation: fade-up 0.8s var(--ease-out) 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  animation: fade-up 0.8s var(--ease-out) 0.8s both;
}

.hero-stats-row {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  margin-top: var(--sp-12);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--glass-border);
  animation: fade-up 0.8s var(--ease-out) 1s both;
}

.hero-stat-item { text-align: center; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-top: var(--sp-1);
}
.hero-stat-divider {
  width: 1px; height: 50px;
  background: var(--glass-border);
}

/* Scroll Indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.30);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  animation: fade-in 1s 1.5s both;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(255,255,255,0.20);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse-dot {
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: var(--r-full);
  animation: scroll-bounce 2s ease-in-out infinite;
}

/* ═══════════════════════════════════════════════════════════
   BUTTON SYSTEM
   ═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-8);
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: all var(--t-mid) var(--ease-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity var(--t-fast);
  border-radius: inherit;
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(90,160,214,0.30);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(90,160,214,0.45);
}

.btn-secondary {
  background: var(--glass-bg2);
  border: 1px solid var(--glass-border2);
  color: var(--gold-light);
  backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
  background: var(--gold-pale);
  transform: translateY(-3px);
  border-color: rgba(90,160,214,0.40);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.80);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-pale2);
}

.btn-cyan {
  background: linear-gradient(135deg, var(--cyan-dark), var(--cyan));
  color: var(--navy);
  font-weight: 800;
}

.btn-cyan:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-cyan);
}

.btn-lg { padding: var(--sp-4) var(--sp-10); font-size: 1rem; }
.btn-sm { padding: var(--sp-2) var(--sp-5); font-size: 0.8rem; }
.btn-icon { width: 44px; height: 44px; padding: 0; border-radius: 50%; }

/* ═══════════════════════════════════════════════════════════
   CARD SYSTEM — GLASS MORPHISM
   ═══════════════════════════════════════════════════════════ */
.card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: all var(--t-mid) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90,160,214,0.40), transparent);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.card:hover {
  border-color: rgba(90,160,214,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  background: var(--glass-bg2);
}

.card:hover::before { opacity: 1; }

.card-gold {
  border-color: rgba(90,160,214,0.20);
  background: linear-gradient(135deg, rgba(90,160,214,0.05) 0%, rgba(90,160,214,0.02) 100%);
}

.card-cyan {
  border-color: rgba(37,215,255,0.15);
  background: linear-gradient(135deg, rgba(37,215,255,0.04) 0%, rgba(37,215,255,0.01) 100%);
}

/* ═══════════════════════════════════════════════════════════
   STATS SECTION
   ═══════════════════════════════════════════════════════════ */
#stats {
  padding: var(--sp-16) 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--glass-border);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
}

.stat-card {
  background: var(--navy-2);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  position: relative;
  transition: background var(--t-mid);
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(90,160,214,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.stat-card:hover {
  background: var(--navy-3);
}

.stat-card:hover::after { opacity: 1; }

.stat-icon {
  width: 56px; height: 56px;
  margin: 0 auto var(--sp-4);
  border-radius: var(--r-xl);
  background: var(--gold-pale);
  border: 1px solid rgba(90,160,214,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--sp-2);
}

.stat-suffix {
  font-size: 1.5rem;
  font-weight: 900;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
#services { background: var(--navy-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  position: relative;
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-out);
  cursor: pointer;
  group: true;
}

.service-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-mid) var(--ease-out);
}

.service-card:hover .service-card-accent { transform: scaleX(1); }

.service-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(90,160,214,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-mid);
  pointer-events: none;
}

.service-card:hover {
  border-color: rgba(90,160,214,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(90,160,214,0.10);
  background: rgba(255,255,255,0.05);
}

.service-card:hover .service-card-glow { opacity: 1; }

.service-icon-wrap {
  width: 64px; height: 64px;
  border-radius: var(--r-xl);
  background: var(--gold-pale);
  border: 1px solid rgba(90,160,214,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: var(--sp-5);
  transition: all var(--t-mid) var(--ease-spring);
}

.service-card:hover .service-icon-wrap {
  background: var(--gold);
  color: var(--navy);
  transform: scale(1.1) rotate(-5deg);
  box-shadow: var(--shadow-gold);
}

.service-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  margin-bottom: var(--sp-3);
}

.service-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.8;
}

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: all var(--t-mid) var(--ease-out);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PREVIEW SECTION
   ═══════════════════════════════════════════════════════════ */
#about-preview {
  background: var(--navy);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-visual {
  position: relative;
}

/* CEO Photo Card */
.ceo-photo-wrap {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  max-width: 400px;
}

.ceo-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--navy) 100%);
  z-index: 1;
}

.ceo-photo-frame {
  position: absolute;
  inset: -2px;
  border-radius: var(--r-2xl);
  background: linear-gradient(135deg, var(--gold-dark), transparent, var(--cyan-dark));
  z-index: -1;
}

.ceo-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Floating Badges */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: rgba(16,28,60,0.90);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border2);
  border-radius: var(--r-lg);
  z-index: 2;
  animation: float-badge 5s ease-in-out infinite;
  min-width: 160px;
}

.floating-badge-1 {
  top: 12%;
  left: -8%;
  animation-delay: 0s;
}

.floating-badge-2 {
  bottom: 20%;
  right: -8%;
  animation-delay: 2s;
}

.floating-badge-3 {
  bottom: 5%;
  left: -5%;
  animation-delay: 1s;
}

.badge-icon {
  width: 36px; height: 36px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.badge-icon-gold {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(90,160,214,0.25);
}

.badge-icon-cyan {
  background: var(--cyan-pale);
  color: var(--cyan);
  border: 1px solid rgba(37,215,255,0.20);
}

.badge-text { flex: 1; }
.badge-num { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1; }
.badge-label { font-size: 0.70rem; color: rgba(255,255,255,0.45); }

/* About Content */
.about-content { padding: var(--sp-8) 0; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: all var(--t-mid);
}

.about-feature:hover {
  border-color: rgba(90,160,214,0.20);
  background: var(--gold-pale2);
}

.about-feature-icon {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.about-feature-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2px;
}

.about-feature-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════
   APP MOCKUP SECTION
   ═══════════════════════════════════════════════════════════ */
#app-preview {
  background: var(--navy-2);
  overflow: hidden;
}

.app-mockup-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.app-phone-frame {
  position: relative;
  width: 280px;
  margin: 0 auto;
}

.app-phone-outer {
  background: var(--navy-4);
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
}

.app-phone-screen {
  background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy) 100%);
  border-radius: 30px;
  height: 500px;
  overflow: hidden;
  position: relative;
}

.app-screen-header {
  padding: var(--sp-4) var(--sp-4) var(--sp-3);
  background: linear-gradient(180deg, rgba(90,160,214,0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.app-screen-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.app-screen-row {
  padding: var(--sp-2) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background var(--t-fast);
}

.app-screen-row:hover { background: rgba(255,255,255,0.03); }

.app-row-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot-green { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.dot-gold  { background: var(--gold); box-shadow: 0 0 6px var(--gold); }
.dot-cyan  { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.dot-red   { background: #ef4444; box-shadow: 0 0 6px #ef4444; }

.app-row-text {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.60);
  flex: 1;
}

.app-row-badge {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--r-full);
}

.badge-success { background: rgba(34,197,94,0.15); color: #22c55e; }
.badge-pending { background: rgba(90,160,214,0.15); color: var(--gold); }
.badge-transit { background: rgba(37,215,255,0.15); color: var(--cyan); }

/* App Notification Badges */
.app-notif {
  position: absolute;
  background: rgba(16,28,60,0.92);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border2);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  min-width: 180px;
  animation: notif-float 4s ease-in-out infinite;
}

.app-notif-1 { top: 10%;  animation-delay: 0s; }
.app-notif-2 { bottom: 20%; justify-self: flex-end; animation-delay: 2s; }

.notif-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #22c55e;
}

.notif-main { font-size: 0.72rem; font-weight: 700; color: #fff; }
.notif-sub  { font-size: 0.62rem; color: rgba(255,255,255,0.45); }

/* App Features List */
.app-features-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.app-feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  transition: all var(--t-mid);
}

.app-feature-item:hover {
  background: var(--glass-bg2);
  border-color: rgba(90,160,214,0.20);
  transform: translateX(6px);
}

.app-feature-num {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  border: 1px solid rgba(90,160,214,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.app-feature-title { font-size: 0.9rem; font-weight: 700; margin-bottom: 2px; }
.app-feature-desc  { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════════════════════
   PARTNERS SECTION
   ═══════════════════════════════════════════════════════════ */
#partners-preview { background: var(--navy-3); }

.partners-track-wrap {
  overflow: hidden;
  /* يمنع متصفح الهاتف من معاملة السحب الرأسي للصفحة كتفاعل مع الشريط نفسه */
  touch-action: pan-y;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.partners-track {
  display: flex;
  gap: var(--sp-4);
  /* --partners-shift يُحسب بالبكسل فعلياً عبر JS (initPartnerScroll) لأن translateX(-50%)
     على عنصر width:max-content قد يُحسب بشكل غير مستقر على بعض متصفحات الهاتف؛
     القيمة أدناه هي احتياطية فقط في حال تعطّل JS لأي سبب */
  --partners-shift: -50%;
  animation: partners-scroll 30s linear infinite;
  width: max-content;
  /* تفعيل تسريع الرسوميات (GPU) لضمان استمرار الحركة بسلاسة على الهواتف */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

/* إيقاف التمرير عند المرور بالماوس — للأجهزة ذات الماوس الحقيقي فقط
   لأن حالة :hover قد "تعلق" على الأجهزة اللمسية بعد اللمس فيظهر الشريط متوقفاً بشكل دائم في الهاتف */
@media (hover: hover) and (pointer: fine) {
  .partners-track:hover { animation-play-state: paused; }
}

.partner-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 80px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  flex-shrink: 0;
  transition: all var(--t-mid);
  filter: grayscale(0.8) opacity(0.6);
}

.partner-logo-card:hover {
  filter: grayscale(0) opacity(1);
  border-color: rgba(90,160,214,0.25);
  background: var(--glass-bg2);
  transform: scale(1.05);
}

.partner-logo-card svg { width: 100%; height: 100%; object-fit: contain; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
#cta {
  background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-4) 50%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: var(--sp-16) var(--sp-8);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border2);
  border-radius: var(--r-3xl);
  max-width: 800px;
  margin: 0 auto;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(90,160,214,0.06) 0%, transparent 70%);
  border-radius: inherit;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
#footer {
  background: var(--navy);
  border-top: 1px solid rgba(90,160,214,0.12);
  padding: var(--sp-20) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid var(--glass-border);
}

.footer-brand-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  margin: var(--sp-4) 0 var(--sp-6);
  max-width: 280px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.social-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.50);
  font-size: 0.9rem;
  transition: all var(--t-mid);
}

.social-btn:hover {
  background: var(--gold-pale);
  border-color: rgba(90,160,214,0.30);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-5);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: all var(--t-fast);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.footer-link::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--t-mid);
  display: inline-block;
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.footer-link:hover::before { width: 12px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--sp-3);
  line-height: 1.6;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
}

.footer-copy strong { color: var(--gold); }

.footer-bottom-links {
  display: flex;
  gap: var(--sp-6);
}

.footer-bottom-link {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--t-fast);
}

.footer-bottom-link:hover { color: var(--gold); }

/* Footer Lang */
.footer-lang { display: flex; gap: var(--sp-2); }

/* ═══════════════════════════════════════════════════════════
   CEO CARD — TEAM PAGE
   ═══════════════════════════════════════════════════════════ */
.ceo-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(90,160,214,0.20);
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: var(--sp-8);
  position: relative;
}

.ceo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 50%, rgba(90,160,214,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.ceo-card-photo {
  position: relative;
  overflow: hidden;
}

.ceo-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  min-height: 460px;
}

.ceo-card-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(16,28,60,0.7) 100%);
}

.ceo-card-content {
  padding: var(--sp-10) var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ceo-card-role {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: var(--sp-1) var(--sp-3);
  background: var(--gold-pale);
  border: 1px solid rgba(90,160,214,0.25);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
  width: fit-content;
}

.ceo-card-name {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--sp-2);
}

.ceo-card-name span {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  margin-top: var(--sp-1);
}

.ceo-card-bio {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.60);
  margin: var(--sp-5) 0;
  padding-start: var(--sp-4);
  border-inline-start: 2px solid rgba(90,160,214,0.30);
}

.ceo-stats-row {
  display: flex;
  gap: var(--sp-6);
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid var(--glass-border);
}

.ceo-stat { text-align: center; }
.ceo-stat-num { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.ceo-stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.40); margin-top: 2px; }

/* ═══════════════════════════════════════════════════════════
   TEAM GRID
   ═══════════════════════════════════════════════════════════ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}

.team-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-out);
  cursor: pointer;
}

.team-card:hover {
  border-color: rgba(90,160,214,0.25);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.team-photo {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.team-card:hover .team-photo img { transform: scale(1.08); }

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16,28,60,0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-3);
  opacity: 0;
  transition: opacity var(--t-mid);
}

.team-card:hover .team-photo-overlay { opacity: 1; }

.team-overlay-links {
  display: flex;
  gap: var(--sp-2);
}

.team-overlay-btn {
  width: 32px; height: 32px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  transition: all var(--t-fast);
}

.team-overlay-btn:hover {
  background: var(--gold);
  color: var(--navy);
}

.team-info {
  padding: var(--sp-4);
}

.team-dept {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-1);
}

.team-name { font-size: 0.95rem; font-weight: 700; margin-bottom: 2px; }
.team-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ═══════════════════════════════════════════════════════════
   TIMELINE
   ═══════════════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding: var(--sp-8) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 50%; transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold-dark), var(--gold), var(--gold-dark), transparent);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--sp-6);
  align-items: center;
  margin-bottom: var(--sp-12);
}

.timeline-item:nth-child(even) .timeline-content-left { order: 3; }
.timeline-item:nth-child(even) .timeline-dot { order: 2; }
.timeline-item:nth-child(even) .timeline-content-right { order: 1; }

.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
  box-shadow: 0 0 0 6px var(--navy-2), 0 0 0 8px rgba(90,160,214,0.20);
  z-index: 1;
}

.timeline-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: all var(--t-mid);
}

.timeline-card:hover {
  border-color: rgba(90,160,214,0.25);
  background: var(--glass-bg2);
}

.timeline-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
}

.timeline-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-2);
}

.timeline-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--t-mid);
}

.faq-item.open {
  border-color: rgba(90,160,214,0.25);
  background: var(--glass-bg2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast);
}

.faq-question:hover { color: var(--gold-light); }
.faq-item.open .faq-question { color: var(--gold); }

.faq-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--t-mid) var(--ease-spring);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-out);
}

.faq-answer-inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  border-top: 1px solid var(--glass-border);
  padding-top: var(--sp-4);
  margin: 0 var(--sp-6);
}

.faq-item.open .faq-answer { max-height: 500px; }

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-10);
  align-items: start;
}

.contact-info-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}

.contact-info-row {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.contact-info-icon {
  width: 46px; height: 46px;
  border-radius: var(--r-md);
  background: var(--gold-pale);
  border: 1px solid rgba(90,160,214,0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.40); }
.contact-info-value { font-size: 0.9rem; color: rgba(255,255,255,0.80); font-weight: 500; }

/* Form */
.form-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-4);
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.60);
  letter-spacing: 0.03em;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all var(--t-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(90,160,214,0.40);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(90,160,214,0.08);
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-textarea { resize: vertical; min-height: 140px; }

.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--navy-3); color: #fff; }

/* Form Submit */
.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-8);
}

.form-success.show { display: block; }

/* ═══════════════════════════════════════════════════════════
   TRACKING SECTION
   ═══════════════════════════════════════════════════════════ */
.track-form-wrap {
  max-width: 600px;
  margin: 0 auto var(--sp-12);
}

.track-input-group {
  display: flex;
  gap: var(--sp-3);
  background: var(--glass-bg2);
  border: 1px solid var(--glass-border2);
  border-radius: var(--r-full);
  padding: var(--sp-2);
}

.track-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: var(--sp-3) var(--sp-4);
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
}

.track-input::placeholder { color: rgba(255,255,255,0.30); }

.track-result {
  margin-top: var(--sp-6);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border2);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: none;
  animation: fade-up 0.4s var(--ease-out);
}

.track-result.show { display: block; }

.track-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: var(--sp-4);
}

.track-step {
  display: flex;
  gap: var(--sp-4);
  position: relative;
  padding-bottom: var(--sp-4);
}

.track-step::before {
  content: '';
  position: absolute;
  top: 36px;
  inset-inline-start: 18px;
  width: 2px;
  height: calc(100% - 36px);
  background: var(--glass-border);
}

.track-step:last-child::before { display: none; }

.track-step-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  border: 2px solid var(--glass-border);
  background: var(--navy-2);
}

.track-step.done .track-step-icon {
  background: rgba(34,197,94,0.15);
  border-color: #22c55e;
  color: #22c55e;
}

.track-step.current .track-step-icon {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
}

.track-step-content { flex: 1; }
.track-step-title { font-size: 0.875rem; font-weight: 600; }
.track-step-time  { font-size: 0.75rem; color: rgba(255,255,255,0.40); }

/* ═══════════════════════════════════════════════════════════
   SERVICES PAGE CARDS
   ═══════════════════════════════════════════════════════════ */
.service-page-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  transition: all var(--t-mid) var(--ease-out);
}

.service-page-card:hover {
  border-color: rgba(90,160,214,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-page-header {
  padding: var(--sp-6);
  border-bottom: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(90,160,214,0.06) 0%, transparent 60%);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.service-page-body { padding: var(--sp-6); }

.service-features {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

.service-feature-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   BRANCHES MAP
   ═══════════════════════════════════════════════════════════ */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.branch-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  transition: all var(--t-mid);
  position: relative;
  overflow: hidden;
}

.branch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  opacity: 0;
  transition: opacity var(--t-mid);
}

.branch-card:hover {
  border-color: rgba(90,160,214,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.branch-card:hover::before { opacity: 1; }

.branch-card.main-branch {
  border-color: rgba(90,160,214,0.25);
  background: linear-gradient(135deg, rgba(90,160,214,0.06) 0%, rgba(90,160,214,0.02) 100%);
}

.branch-card.main-branch::before { opacity: 1; }

.branch-name {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: var(--sp-1);
}

.branch-type {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-4);
}

.branch-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: var(--sp-2);
}

.branch-detail i { color: var(--gold); margin-top: 2px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  padding: calc(var(--nav-h) + var(--sp-16)) 0 var(--sp-16);
  background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(90,160,214,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90,160,214,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(90,160,214,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--sp-4);
}

.breadcrumb-sep { color: rgba(255,255,255,0.20); }
.breadcrumb-current { color: var(--gold); }

/* Page Hero Title — prevents word-merge before gradient-gold span */
.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  color: var(--white);
  word-spacing: 0.05em;
}
.page-hero-title span { display: inline; }
.page-hero-title span + .gradient-gold::before { content: '\00A0'; }

/* Breadcrumb (alias of .page-breadcrumb — some pages use this class name) */
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.40);
  margin-bottom: var(--sp-4);
  flex-wrap: wrap;
}
.breadcrumb a {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.55);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .breadcrumb-current { color: var(--gold); }

/* Page hero subtitle (two naming variants used across pages) */
.page-hero-sub,
.page-hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.60);
  max-width: 620px;
  margin: 0 auto var(--sp-4);
  line-height: 1.8;
}

/* Page hero decorative background wrapper (used on branches/partners/services/team) */
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-gradient {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 380px;
  max-width: 90vw;
  background: radial-gradient(ellipse, rgba(90,160,214,0.14) 0%, transparent 70%);
}

/* Section flex header (title + optional action, used on branches/services) */
.section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

/* Section sub — smaller subtitle line under .section-title (about.html) */
.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Gold-styled button variant (used since original launch on several CTAs) */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(90,160,214,0.30);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(90,160,214,0.45);
}

/* Contact page map wrapper (google maps iframe container) */
.hry-map-wrap {
  min-height: 300px;
}

@media (max-width: 768px) {
  .breadcrumb { font-size: 0.72rem; gap: var(--sp-1); }
  .page-hero-bg { display: block; }
  .section-header-flex { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════════════════════
   PARTNERS LOGOS PAGE
   ═══════════════════════════════════════════════════════════ */
.partners-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.partner-full-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  transition: all var(--t-mid);
}

.partner-full-card:hover {
  border-color: rgba(90,160,214,0.25);
  background: var(--glass-bg2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.partner-logo-box {
  width: 80px; height: 80px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2rem;
  color: var(--gold);
}

.partner-info-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--sp-1);
}

.partner-info-type {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
}

.partner-info-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   TILT EFFECT
   ═══════════════════════════════════════════════════════════ */
[data-tilt] {
  transform-style: preserve-3d;
  transform: perspective(1000px);
  will-change: transform;
  transition: box-shadow var(--t-mid);
}

[data-tilt]:hover {
  box-shadow: var(--shadow-gold);
}

/* ═══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
[data-reveal] {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s var(--ease-out),
              transform 0.7s var(--ease-out);
}

[data-reveal="left"]  { transform: translateX(-35px); }
[data-reveal="right"] { transform: translateX(35px); }
[data-reveal="scale"] { transform: scale(0.92); }
[data-reveal="fade"]  { transform: none; }

[data-reveal].revealed {
  opacity: 1;
  transform: none;
}

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

/* ═══════════════════════════════════════════════════════════
   KEYFRAME ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes shimmer-gold {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes orbit-rotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

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

@keyframes fade-in {
  from { opacity:0; }
  to   { opacity:1; }
}

@keyframes planet-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(5deg); }
  66%       { transform: translateY(6px) rotate(-3deg); }
}

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

@keyframes notif-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-8px) scale(1.02); }
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(10px); opacity: 0.3; }
}

@keyframes mesh-drift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

@keyframes hero-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50%       { transform: translate(-50%,-50%) scale(1.15); opacity: 1; }
}

@keyframes partners-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(var(--partners-shift, -50%)); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-orbits { width: 500px; height: 500px; left: -15%; }
  .hero-title { font-size: clamp(2rem, 5vw, 3.5rem); }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

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

  .about-grid { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-visual { max-width: 400px; margin: 0 auto; }

  .app-mockup-container { grid-template-columns: 1fr; }
  .app-phone-frame { max-width: 280px; }

  .ceo-card { grid-template-columns: 280px 1fr; }

  .team-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }

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

  .branches-grid { grid-template-columns: repeat(2, 1fr); }

  .partners-full-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 62px;
    --sp-24: 4rem;
    --sp-20: 3.5rem;
  }

  .container { padding: 0 var(--sp-4); }

  .hero-orbits { display: none; }
  .orbit-planet { display: none; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 2rem; }
  .hero-description { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats-row { gap: var(--sp-6); justify-content: center; }
  .hero-stat-num { font-size: 1.5rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2.2rem; }

  .services-grid { grid-template-columns: 1fr; }

  .ceo-card { grid-template-columns: 1fr; }
  .ceo-card-photo img { min-height: 300px; max-height: 350px; }
  .ceo-card-photo::after { background: linear-gradient(180deg, transparent 50%, rgba(16,28,60,0.95) 100%); }
  .ceo-card-content { padding: var(--sp-6); }
  .ceo-card-name { font-size: 1.8rem; }
  .ceo-stats-row { gap: var(--sp-4); }

  .team-grid { grid-template-columns: repeat(2, 1fr); }

  .about-features { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-6); }

  .footer-bottom { flex-direction: column; text-align: center; }

  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; }
  .timeline-item:nth-child(even) .timeline-content-left,
  .timeline-item:nth-child(even) .timeline-content-right { order: unset; }

  .branches-grid { grid-template-columns: 1fr; }

  .partners-full-grid { grid-template-columns: 1fr; }

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

  .track-input-group { flex-direction: column; border-radius: var(--r-xl); }
  .track-input { padding: var(--sp-3); }
  .track-input-group .btn { width: 100%; justify-content: center; border-radius: var(--r-lg); }


	    #ops-dashboard .app-phone-frame {
        max-width: 100% !important;
        width: fit-content;
    }
	    #ops-dashboard [data-reveal="left"] {
transform: translateY(0px) !important;
    transition: none !important;
		}
  .app-phone-frame { width: 220px;  }
  .app-phone-screen { height: 380px; }

  .hero-scroll-hint { display: none; }

  .btn-lg { padding: var(--sp-3) var(--sp-6); font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .ceo-stats-row { flex-wrap: wrap; }
  .section-title { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-2  { gap: var(--sp-2); }
.gap-3  { gap: var(--sp-3); }
.gap-4  { gap: var(--sp-4); }
.gap-6  { gap: var(--sp-6); }
.gap-8  { gap: var(--sp-8); }
.mt-4   { margin-top: var(--sp-4); }
.mt-6   { margin-top: var(--sp-6); }
.mt-8   { margin-top: var(--sp-8); }
.mb-4   { margin-bottom: var(--sp-4); }
.mb-6   { margin-bottom: var(--sp-6); }
.mb-8   { margin-bottom: var(--sp-8); }
.p-4    { padding: var(--sp-4); }
.p-6    { padding: var(--sp-6); }
.hidden { display: none !important; }
.sr-only {
  position: absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0,0,0,0); white-space:nowrap; border:0;
}
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.w-full { width: 100%; }
.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; margin: 0 auto; }

/* ─── PRINT ─── */
@media print {
  #navbar, #page-loader, .cursor-glow, #particle-canvas { display: none !important; }
  body { background: white; color: black; }
}

/* ═══════════════════════════════════════════════════════════
   HR-Y v10.0 — ADVANCED LOGO & UI ENHANCEMENTS
   ═══════════════════════════════════════════════════════════ */

/* ─── LOGO BREATHING — بدون توهج، حركة نفَس هادئة فقط ─── */
@keyframes logoBreath {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}

.nav-logo-icon {
  animation: logoBreath 4s ease-in-out infinite !important;
  will-change: transform;
}

.nav-logo:hover .nav-logo-icon {
  animation: logoBreath 1.2s ease-in-out infinite !important;
}

/* Logo text shimmer */
.nav-logo-main {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, var(--gold-dark) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoTextShimmer 4s linear infinite;
}

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

/* ─── ENHANCED NAVBAR ─── */
#navbar {
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s;
}

#navbar.scrolled {
  background: rgba(16,28,60,0.97) !important;
  box-shadow: 0 2px 40px rgba(0,0,0,0.6), 0 0 0 1px rgba(90,160,214,0.08) !important;
  backdrop-filter: blur(32px) saturate(180%) !important;
}

/* ─── ENHANCED BUTTONS ─── */
.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::after { opacity: 1; }

/* ─── WHATSAPP FLOAT ─── */
#wa-float {
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}

/* ─── SECTION EYEBROW ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(90,160,214,0.08);
  border: 1px solid rgba(90,160,214,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
  position: relative;
  overflow: hidden;
}

.section-eyebrow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(90,160,214,0.06), transparent);
  transform: translateX(-100%);
  animation: eyebrowShine 4s ease-in-out infinite;
}

@keyframes eyebrowShine {
  0%,60%,100% { transform: translateX(-100%); }
  80%         { transform: translateX(100%); }
}

/* ─── ENHANCED CARDS ─── */
.service-card, .partner-card, .team-card, .branch-card {
  transition: transform 0.35s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(90,160,214,0.15);
}

/* ─── TRACK TIMELINE ─── */
.track-step.done .track-step-dot {
  background: linear-gradient(135deg, rgba(37,215,255,0.3), rgba(0,140,255,0.2));
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(37,215,255,0.25);
}

.track-step.active .track-step-dot {
  background: linear-gradient(135deg, rgba(90,160,214,0.3), rgba(46,124,184,0.2));
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px rgba(90,160,214,0.4);
  animation: trackPulse 1.8s ease-in-out infinite;
}

@keyframes trackPulse {
  0%,100% { box-shadow: 0 0 10px rgba(90,160,214,0.3); }
  50%     { box-shadow: 0 0 22px rgba(90,160,214,0.6); }
}

/* ─── PARTNERS PERK CHECK ─── */
.perk-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ─── FAQ SEARCH INPUT ─── */
#faq-search {
  color: white;
  font-family: var(--font-ar);
  caret-color: var(--gold);
  transition: border-color 0.25s, box-shadow 0.25s;
}

#faq-search:focus {
  outline: none;
  border-color: rgba(90,160,214,0.4) !important;
  box-shadow: 0 0 0 3px rgba(90,160,214,0.08), 0 4px 20px rgba(0,0,0,0.3);
}

#faq-search::placeholder { color: rgba(255,255,255,0.35); }

/* ─── SCROLL PROGRESS ─── */
#scroll-progress {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--cyan), var(--gold)) !important;
  background-size: 200% auto !important;
  animation: progressShimmer 2s linear infinite;
}

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

/* ─── LEVEL ICON ─── */
.level-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(90,160,214,0.08);
  border: 1px solid rgba(90,160,214,0.2);
  margin-bottom: 1rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.level-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(90,160,214,0.2);
}

/* ─── FOOTER ENHANCEMENTS ─── */
footer .footer-brand-name {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: logoTextShimmer 5s linear infinite;
}

/* ─── GLASS CARD HOVER ─── */
[class*="glass"] {
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

/* ─── RESPONSIVE IMPROVEMENTS ─── */
@media (max-width: 640px) {
  .nav-logo-icon { width: 36px; height: 36px; }
  .nav-logo-main { font-size: 1rem; }
  #wa-float { width: 48px; height: 48px; bottom: 1.25rem; right: 1.25rem; }
  #wa-float svg { width: 24px; height: 24px; }
}

/* ─── ACCESSIBILITY FOCUS RINGS ─── */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── SELECTION COLOR ─── */
::selection {
  background: rgba(90,160,214,0.35);
  color: white;
}

::-moz-selection {
  background: rgba(90,160,214,0.35);
  color: white;
}

/* ═══════════════════════════════════════════════════════════
   HR-Y v11 — IMPROVEMENTS & SHANAT INTEGRATION
   حسام ردمان + تطبيق شحنات — تحسينات وتكامل
   ═══════════════════════════════════════════════════════════ */

/* ─── HR-Y LOGO — أزرق (بدون توهج، فقط تكبير خفيف عند التحويم) ─── */
.nav-logo-icon {
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-icon {
  transform: scale(1.05);
}

/* ─── SHANAT LOGO — أزرق ─── */
img[src*="shanat-logo"] {
  filter: drop-shadow(0 0 6px rgba(0,160,240,0.35));
  transition: filter 0.3s ease, transform 0.3s ease;
}
img[src*="shanat-logo"]:hover {
  filter: drop-shadow(0 0 14px rgba(0,160,240,0.7));
  transform: scale(1.06) rotate(-2deg);
}

/* ─── SERVICE CARD HOVER ─── */
.service-card {
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover .service-arrow {
  color: var(--gold);
  gap: 0.6rem;
}

/* ─── TRACK TIMELINE ─── */
.track-timeline {
  display: flex; flex-direction: column; gap: 0.75rem;
}
.track-step {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  transition: background 0.2s, border-color 0.2s;
}
.track-step.done {
  background: rgba(37,215,255,0.05);
  border-color: rgba(37,215,255,0.15);
}
.track-step.current {
  background: rgba(90,160,214,0.08);
  border-color: rgba(90,160,214,0.25);
}
.track-step-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.track-step.done .track-step-icon   { background: rgba(37,215,255,0.12); color: var(--cyan); }
.track-step.current .track-step-icon { background: rgba(90,160,214,0.15); color: var(--gold); }
.track-step-content { flex: 1; }
.track-step-title { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.85); }
.track-step-time  { font-size: 0.7rem; color: rgba(255,255,255,0.35); margin-top: 2px; }
#track-result { display: none; }
#track-result.show {
  display: block;
  animation: fadeInUp 0.4s ease;
}

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9998;
}

/* ─── SMOOTH IMAGE LOAD ─── */
img {
  transition: opacity 0.3s ease;
}
img.loaded {
  opacity: 1;
}
img[loading="lazy"] {
  opacity: 0.6;
}
img[loading="lazy"].loaded, img:not([loading]) {
  opacity: 1;
}

/* ─── HERO BG LAYER (gradient only, no image) ─── */
.hero-bg-layer {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to bottom, rgba(16,28,60,0.80) 0%, rgba(16,28,60,0.55) 50%, rgba(16,28,60,0.90) 100%);
  pointer-events: none;
}

/* ─── SERVICE IMAGE ─── */
.customs-office-img {
  width: 100%; height: 300px;
  object-fit: cover; border-radius: 16px;
  filter: brightness(0.8) saturate(1.2);
}

/* ─── FOOTER IMPROVEMENT ─── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem; margin-top: 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem; color: rgba(255,255,255,0.35); margin: 0;
}
.footer-bottom-links {
  display: flex; gap: 1.5rem;
}
.footer-bottom-link {
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-bottom-link:hover { color: var(--gold); }

/* ─── SOCIAL BTN ─── */
.social-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5); text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.social-btn:hover {
  background: rgba(90,160,214,0.12);
  border-color: rgba(90,160,214,0.3);
  color: var(--gold);
  transform: translateY(-3px);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 480px) {
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .hero-stat-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   ADDITIONS v3.0 — حسام ردمان — تحسينات شاملة
   ═══════════════════════════════════════════════════════════ */

/* ── Hero badge text transition ── */
#heroBadgeText {
  transition: opacity 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Hero Center Visual ── */
.hero-center-visual {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(90,160,214, 0.15) 0%, transparent 70%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: hero-pulse 4s ease-in-out infinite;
}

/* ── Steps section grid ── */
@media (max-width: 600px) {
  #steps .container > div:last-child {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════
   TESTIMONIALS SLIDER
   ══════════════════════════════════════ */
.tst-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.tst-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 18px;
}
.tst-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}
.tst-slide {
  flex: 0 0 calc((100% - 3rem) / 3);
  min-width: 0;
}
@media (max-width: 1023px) {
  .tst-slide { flex: 0 0 calc((100% - 1.5rem) / 2); }
}
@media (max-width: 639px) {
  .tst-slide { flex: 0 0 100%; }
}

/* Card */
.tst-card {
  background: var(--card-bg, rgba(255,255,255,0.04));
  border: 1px solid rgba(90,160,214,0.12);
  border-radius: 18px;
  padding: 1.8rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1), box-shadow 0.4s, border-color 0.4s;
  height: 100%;
  box-sizing: border-box;
}
.tst-card:hover {
  transform: translateY(-6px);
  border-color: rgba(90,160,214,0.28);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(90,160,214,0.08);
}
.tst-quote-bg {
  position: absolute;
  top: 0.8rem;
  left: 1rem;
  opacity: 0.07;
  font-size: 5rem;
  line-height: 1;
  color: #5aa0d6;
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}

/* Header row */
.tst-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.tst-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  flex-shrink: 0;
}
.tst-info { flex: 1; min-width: 0; }
.tst-name {
  display: block;
  font-weight: 800;
  color: #fff;
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tst-role {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tst-badge {
  margin-right: auto;
  border: 1px solid;
  border-radius: 8px;
  padding: 0.3rem 0.6rem;
  font-size: 0.65rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.tst-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.tst-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tst-stars { color: #8ac4f0; font-size: 0.9rem; }
.tst-since { font-size: 0.65rem; color: rgba(255,255,255,0.3); }

/* Arrows */
.tst-arrow {
  background: rgba(90,160,214,0.08);
  border: 1px solid rgba(90,160,214,0.18);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5aa0d6;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.tst-arrow:hover {
  background: rgba(90,160,214,0.18);
  border-color: rgba(90,160,214,0.4);
  transform: scale(1.08);
}
.tst-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  transform: none;
}
@media (max-width: 480px) {
  .tst-arrow { width: 36px; height: 36px; }
  .tst-arrow svg { width: 16px; height: 16px; }
}

/* الأسهم مصممة أساساً لاتجاه RTL — نعكسها في LTR حتى لا تظهر مقلوبة */
[dir="ltr"] .tst-arrow-prev svg,
[dir="ltr"] .tst-arrow-next svg {
  transform: scaleX(-1);
}

/* Dots */
.tst-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.8rem;
}
.tst-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(90,160,214,0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}
.tst-dot.active {
  background: #5aa0d6;
  width: 24px;
  border-radius: 4px;
  transform: none;
}

/* Rating Summary */
.tst-rating-summary {
  text-align: center;
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(90,160,214,0.05);
  border: 1px solid rgba(90,160,214,0.15);
  border-radius: 20px;
}
.tst-rating-stars {
  font-size: 2.5rem;
  color: #8ac4f0;
  line-height: 1;
}
.tst-rating-score {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  margin-top: 0.3rem;
}
.tst-rating-score span {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
}
.tst-rating-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.3rem;
}

/* ── Dashboard card ── */
#ops-dashboard .about-grid {
  align-items: center;
}
@media (max-width: 900px) {
  #ops-dashboard .about-grid {
    grid-template-columns: 1fr !important;
  }
  #ops-dashboard .about-grid > div:first-child {
    order: 2;
  }
}

/* ── Mgmt card reduced height (no duplicate info) ── */
.mgmt-card {
  min-height: auto !important;
}
.mgmt-photo {
  aspect-ratio: 3/4 !important;
}

/* ── About feature icon improvement ── */
.about-feature-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(90,160,214,0.1);
  border: 1px solid rgba(90,160,214,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* ── Section alt backgrounds ── */
.section-alt {
  background: linear-gradient(180deg, rgba(20,33,73,0.95), rgba(19,32,68,0.98));
}
.section-alt2 {
  background: linear-gradient(180deg, rgba(19,32,68,0.98), rgba(20,33,73,0.95));
}

/* ── Orbit planet icons fix ── */
.orbit-planet {
  background: rgba(90,160,214,0.1);
  border: 1px solid rgba(90,160,214,0.2);
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: absolute;
}

/* ── Nav logo text ── */
.nav-logo-main {
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

/* ── Responsive hero visual ── */
@media (max-width: 768px) {
  #heroCenterVisual {
    width: 200px !important;
    height: 200px !important;
    display: none !important;
  }
  .hero-orbits {
    display: none !important;
  }
}

/* ── Performance: reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
