
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ===== DESIGN SYSTEM ===== */
:root {
  /* New dark luxury palette */
  --bg-primary:    #0B0F14;
  --bg-secondary:  #111827;
  --bg-surface:    #161F2B;
  --bg-soft:       #1B2635;

  --text-primary:  #F5F7FA;
  --text-secondary:#B8C2CF;
  --text-muted:    #8D99A8;

  --accent-gold:       #C89B3C;
  --accent-gold-hover: #D7AA45;
  --accent-blue:       #2F6FFF;
  --accent-teal:       #33C7C9;

  --border-soft:   rgba(255,255,255,0.07);
  --border-strong: rgba(200,155,60,0.28);

  --shadow-soft:   0 10px 30px rgba(0,0,0,0.25);
  --shadow-strong: 0 20px 60px rgba(0,0,0,0.45);
  --overlay-dark:  rgba(8,12,18,0.62);

  /* Semantic aliases (keep backward compat with inline HTML classes) */
  --primary:       #C89B3C;
  --primary-dark:  #D7AA45;
  --primary-mid:   #3D2E10;
  --primary-glow:  rgba(200,155,60,0.15);
  --charcoal:      #1B2635;
  --charcoal-dark: #111827;
  --deepblack:     #0B0F14;
  --gray:          #B8C2CF;
  --gray-light:    #8D99A8;
  --border:        rgba(255,255,255,0.09);
  --bg-light:      #1B2635;
  --bg-subtle:     #161F2B;
  --white:         #F5F7FA;
  --amber-accent:  #C89B3C;
  --amber-soft:    #E2C47A;

  --shadow-sm:  0 4px 20px rgba(0,0,0,0.22);
  --shadow-md:  0 10px 40px rgba(0,0,0,0.32);
  --shadow-lg:  0 20px 70px rgba(0,0,0,0.44);
  --shadow-xl:  0 30px 100px rgba(0,0,0,0.55);

  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --transition:    all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[dir="rtl"] body,
body[dir="rtl"] {
  font-family: 'Tajawal', system-ui, sans-serif;
  line-height: 1.75;
}

/* RTL typography adjustments */
[dir="rtl"] .hero-title       { letter-spacing: 0; }
[dir="rtl"] .section-title    { letter-spacing: 0; }
[dir="rtl"] .page-hero-title  { letter-spacing: 0; }
[dir="rtl"] .stat-number      { letter-spacing: 0; }
[dir="rtl"] .tl-year          { letter-spacing: 0; }

/* Dark-theme Tailwind bg-white override (sections only) */
section.bg-white { background-color: var(--bg-secondary) !important; }

/* Fix text colors in bg-white sections (Tailwind gray classes are too dark on dark bg) */
section.bg-white .text-gray-500,
section.bg-white .text-gray-400 { color: var(--text-secondary) !important; }
section.bg-white .text-gray-700,
section.bg-white .text-gray-600 { color: var(--text-primary) !important; }
section.bg-white .text-gray-900,
section.bg-white .text-gray-800 { color: var(--text-primary) !important; }

img { max-width: 100%; height: auto; display: block; }
a   { transition: var(--transition-fast); text-decoration: none; }

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.transparent {
  background: linear-gradient(
    to bottom,
    rgba(5,8,13,0.7) 0%,
    rgba(5,8,13,0.3) 65%,
    transparent 100%
  );
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.navbar.scrolled {
  background: rgba(11,15,20,0.92);
  backdrop-filter: blur(28px) saturate(160%);
  -webkit-backdrop-filter: blur(28px) saturate(160%);
  padding: 10px 0;
  box-shadow: 0 1px 0 rgba(200,155,60,0.12), 0 8px 40px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(200,155,60,0.1);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-img {
  height: 72px;
  width: auto;
  background: transparent;
  transition: var(--transition-fast);
  margin-left: -4px;
  filter: drop-shadow(0 2px 14px rgba(200,155,60,0.4)) drop-shadow(0 0 8px rgba(0,0,0,0.7));
}
.nav-logo-img:hover {
  filter: drop-shadow(0 2px 22px rgba(200,155,60,0.6)) drop-shadow(0 0 12px rgba(0,0,0,0.8));
  transform: scale(1.03);
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name {
  font-size: 1.35rem; font-weight: 800;
  color: var(--text-primary); letter-spacing: -0.5px;
}
.nav-logo-name span { color: var(--accent-gold); }
.nav-logo-tagline {
  display: block; font-size: 0.5rem; font-weight: 400;
  letter-spacing: 2.2px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; margin-top: 3px;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.8px; text-transform: uppercase;
  position: relative; padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent-gold);
  transition: width 0.3s var(--ease);
}
.nav-link:hover              { color: var(--text-primary); }
.nav-link:hover::after,
.nav-link.active::after      { width: 100%; }
.nav-link.active             { color: var(--accent-gold); }

[dir="rtl"] .nav-link::after         { left: auto; right: 0; }
[dir="rtl"] .hero-scroll-indicator   { left: auto; right: 50%; transform: translateX(50%); }

/* Language Switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 100px; padding: 3px;
  border: 1px solid rgba(200,155,60,0.18);
}
.lang-btn {
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.5); transition: var(--transition-fast);
}
.lang-btn.active          { background: var(--accent-gold); color: var(--bg-primary); }
.lang-btn:hover:not(.active) { color: var(--text-primary); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0;
  background: rgba(11,15,20,0.99);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease);
}
.mobile-menu.open         { transform: translateX(0); }
.mobile-nav-link {
  color: rgba(255,255,255,0.6);
  font-size: 1.15rem; font-weight: 500;
  letter-spacing: 0.2px; padding: 10px 24px;
  transition: color 0.2s ease;
}
.mobile-nav-link:hover    { color: var(--accent-gold); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-gold);
  color: var(--bg-primary);
  padding: 12px 28px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  border: 1.5px solid var(--accent-gold);
  cursor: pointer; transition: var(--transition);
  box-shadow: 0 2px 20px rgba(200,155,60,0.25);
}
.btn-primary:hover {
  background: var(--accent-gold-hover);
  border-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(200,155,60,0.4);
  color: var(--bg-primary);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,155,60,0.06);
  color: var(--text-primary);
  padding: 12px 28px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.8px; text-transform: uppercase;
  border: 1.5px solid rgba(200,155,60,0.3);
  cursor: pointer; transition: var(--transition);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(200,155,60,0.12);
  border-color: rgba(200,155,60,0.55);
  color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,155,60,0.15);
}

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-surface);
  color: var(--text-primary);
  padding: 12px 28px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  border: 1.5px solid var(--border-soft);
  cursor: pointer; transition: var(--transition);
}
.btn-dark:hover {
  background: var(--bg-soft); border-color: var(--border-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.4);
  color: var(--text-primary);
}

.btn-green-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--accent-gold);
  padding: 12px 28px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  border: 1.5px solid var(--accent-gold);
  cursor: pointer; transition: var(--transition);
}
.btn-green-outline:hover {
  background: var(--accent-gold); color: var(--bg-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,155,60,0.35);
}

.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--text-primary); color: var(--bg-primary);
  padding: 12px 28px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px;
  border: 1.5px solid var(--text-primary);
  cursor: pointer; transition: var(--transition);
}
.btn-white:hover {
  background: transparent; color: var(--text-primary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  background: #4CAF7D; color: white;
  padding: 12px 26px; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.3px;
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #3D9E6E; transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(76,175,125,0.3); color: white;
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(5,8,13,0.82) 0%, rgba(5,8,13,0.1) 35%),
    linear-gradient(
      105deg,
      rgba(7,10,16,0.94) 0%,
      rgba(200,155,60,0.08) 50%,
      rgba(7,10,16,0.82) 100%
    );
}
.hero-content { position: relative; z-index: 10; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(200,155,60,0.1);
  border: 1px solid rgba(200,155,60,0.28);
  color: var(--amber-soft);
  padding: 8px 20px; border-radius: 100px;
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 2.2px; text-transform: uppercase; margin-bottom: 26px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--accent-gold); border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50%     { transform: scale(1.5); opacity: 0.5; }
}

.hero-title {
  font-size: clamp(1.9rem, 3.6vw, 3.4rem);
  font-weight: 700; color: var(--text-primary);
  line-height: 1.14; letter-spacing: -1px;
  margin-bottom: 24px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.5);
}
.hero-title .accent {
  color: var(--accent-gold);
  text-shadow: 0 0 40px rgba(200,155,60,0.45);
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.4vw, 1.02rem);
  color: rgba(245,247,250,0.58);
  max-width: 500px; line-height: 1.88;
  margin-bottom: 38px; font-weight: 300; letter-spacing: 0.15px;
}

.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase;
  animation: float-ud 2.5s ease-in-out infinite;
}
.hero-scroll-indicator i { font-size: 1rem; }
@keyframes float-ud {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%     { transform: translateX(-50%) translateY(8px); }
}

/* Geometric decorations */
.hero-geo {
  position: absolute; border: 1px solid rgba(255,255,255,0.03);
  border-radius: 50%; pointer-events: none;
}
.hero-geo-1 {
  width: 500px; height: 500px; right: 5%; top: 50%;
  transform: translateY(-50%); animation: spin-slow 30s linear infinite;
  border-color: rgba(200,155,60,0.07);
}
.hero-geo-2 {
  width: 350px; height: 350px; right: 10%; top: 50%;
  transform: translateY(-50%); animation: spin-slow 20s linear infinite reverse;
  border-color: rgba(200,155,60,0.1);
}
.hero-geo-3 {
  width: 200px; height: 200px; right: 17%; top: 50%;
  transform: translateY(-50%); border-color: rgba(200,155,60,0.15);
}
@keyframes spin-slow {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* ===== SECTION STRUCTURE ===== */
.section-label {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 2.4px; text-transform: uppercase; margin-bottom: 14px;
}
[dir="rtl"] .section-label { letter-spacing: 0.5px; font-size: 0.72rem; }

.section-title {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
  font-weight: 700; color: var(--text-primary);
  line-height: 1.22; letter-spacing: -0.3px;
}
.section-title.white { color: var(--text-primary); }
.section-title .accent { color: var(--accent-gold); }

.section-sub {
  font-size: 0.925rem; color: var(--text-secondary);
  line-height: 1.82; max-width: 560px;
}
.section-sub.white { color: var(--text-secondary); }

.section-divider { display: none; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative; padding: 170px 0 90px; overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,10,16,0.97) 0%, rgba(200,155,60,0.12) 100%);
}
.page-hero-content { position: relative; z-index: 10; }

.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 20px; flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,0.38); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.breadcrumb a:hover { color: var(--accent-gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.18); font-size: 0.7rem; }
.breadcrumb .cur {
  color: rgba(255,255,255,0.65); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}

.page-hero-title {
  font-size: clamp(1.75rem, 3.6vw, 3.1rem);
  font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.7px; margin-bottom: 14px; line-height: 1.14;
}
.page-hero-sub {
  font-size: 0.95rem; color: rgba(245,247,250,0.58);
  max-width: 520px; line-height: 1.85;
}

/* ===== STATS COUNTER ===== */
.stats-band {
  background: var(--bg-secondary);
  padding: 50px 0; position: relative; overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(200,155,60,0.05) 0%, transparent 50%, rgba(200,155,60,0.04) 100%);
}
.stat-item { text-align: center; padding: 12px 16px; position: relative; z-index: 1; }
.stat-number {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 700; color: var(--text-primary);
  line-height: 1; letter-spacing: -1px; margin-bottom: 8px;
}
.stat-number .suffix { color: var(--accent-gold); }
.stat-label {
  font-size: 0.68rem; color: var(--text-muted);
  font-weight: 400; letter-spacing: 1.8px; text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 40px;
  background: rgba(200,155,60,0.15); margin: auto;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background: var(--bg-surface);
  border-radius: 6px; padding: 34px 28px;
  border: 1px solid var(--border-soft);
  position: relative; overflow: hidden;
  transition: var(--transition); cursor: default;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent-gold);
  transform: scaleX(0); transition: transform 0.4s var(--ease);
  transform-origin: left;
}
[dir="rtl"] .service-card::after { transform-origin: right; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
  border-color: var(--border-strong);
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  background: rgba(200,155,60,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; transition: var(--transition);
}
.service-icon i { font-size: 1.5rem; color: var(--accent-gold); transition: var(--transition-fast); }
.service-card:hover .service-icon { background: var(--accent-gold); }
.service-card:hover .service-icon i { color: var(--bg-primary); }

.service-card-title {
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-primary); margin-bottom: 10px; letter-spacing: -0.2px;
}
.service-card-desc { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 20px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--accent-gold); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase; transition: gap 0.2s ease;
}
.service-link:hover { gap: 10px; }

/* ===== PROJECT CARDS ===== */
.project-card {
  border-radius: 6px; overflow: hidden; position: relative;
  background: var(--bg-surface); cursor: pointer; display: block;
}
.project-card img {
  width: 100%; height: 300px; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-card:hover img { transform: scale(1.08); }

.project-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,10,16,0.97) 0%, rgba(7,10,16,0.15) 55%, transparent 100%);
  transition: var(--transition);
}
.project-card:hover .project-overlay {
  background: linear-gradient(to top, rgba(7,10,16,0.98) 0%, rgba(200,155,60,0.15) 60%, transparent 100%);
}

.project-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 26px 24px; transform: translateY(10px); transition: var(--transition);
}
.project-card:hover .project-info { transform: translateY(0); }

.project-tag {
  display: inline-block; background: var(--accent-gold);
  color: var(--bg-primary); padding: 3px 12px; border-radius: 100px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 8px;
}
.project-name { font-size: 1.1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 5px; letter-spacing: -0.2px; }
.project-loc { font-size: 0.75rem; color: rgba(245,247,250,0.5); display: flex; align-items: center; gap: 5px; }

/* ===== WHY CHOOSE ===== */
.why-card {
  display: flex; gap: 18px; padding: 24px;
  border-radius: 8px; border: 1px solid transparent; transition: var(--transition);
}
.why-card:hover {
  background: var(--bg-surface); border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
}
.why-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: rgba(200,155,60,0.1);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold); font-size: 1.2rem; transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--accent-gold); color: var(--bg-primary); }
.why-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.why-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== VISION 2030 SECTION ===== */
.vision-section {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #131c28 100%);
  position: relative; overflow: hidden;
}
.vision-section::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,155,60,0.1) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.vision-section::after {
  content: '';
  position: absolute; bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,155,60,0.06) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.vision-pillar {
  padding: 26px; border-radius: 8px;
  border: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.02);
  transition: var(--transition); position: relative; z-index: 1;
}
.vision-pillar:hover {
  background: rgba(200,155,60,0.08);
  border-color: var(--border-strong); transform: translateY(-5px);
}
.vision-pillar-icon {
  width: 52px; height: 52px;
  background: rgba(200,155,60,0.12); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; font-size: 1.4rem; color: var(--accent-gold);
}
.vision-pillar-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.vision-pillar-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #16120a 0%, #1e1608 50%, #0e1016 100%);
  position: relative; overflow: hidden; padding: 64px 0;
  border-top: 1px solid var(--border-strong);
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(200,155,60,0.1) 0%, transparent 65%);
}
.cta-title {
  font-size: clamp(1.75rem, 3.4vw, 2.7rem);
  font-weight: 700; color: var(--text-primary);
  letter-spacing: -0.7px; line-height: 1.18; margin-bottom: 14px;
}
.cta-sub { font-size: 0.95rem; color: var(--text-secondary); line-height: 1.82; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding: 20px 0; }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0; width: 1.5px;
  background: linear-gradient(to bottom, transparent 0%, var(--accent-gold) 15%, var(--accent-gold) 85%, transparent 100%);
  transform: translateX(-50%);
}
[dir="rtl"] .timeline::before { left: auto; right: 50%; transform: translateX(50%); }
[dir="rtl"] .timeline          { direction: rtl; }

.tl-item {
  display: flex; gap: 60px; margin-bottom: 56px;
  position: relative; align-items: flex-start;
}
.tl-item:nth-child(even) { flex-direction: row-reverse; }
.tl-dot {
  position: absolute; left: 50%; top: 24px; transform: translateX(-50%);
  width: 16px; height: 16px; background: var(--accent-gold); border-radius: 50%;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 3px var(--accent-gold); z-index: 2;
}
[dir="rtl"] .tl-dot { left: auto; right: 50%; transform: translateX(50%); }

.tl-content {
  width: calc(50% - 50px);
  background: var(--bg-surface);
  padding: 28px; border-radius: 8px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft); transition: var(--transition);
}
.tl-content:hover { box-shadow: var(--shadow-strong); border-color: var(--border-strong); }

.tl-year {
  font-size: 2.2rem; font-weight: 800; color: var(--accent-gold);
  letter-spacing: -2px; line-height: 1; margin-bottom: 10px;
}
.tl-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.tl-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }

/* ===== VALUE CARDS ===== */
.value-card {
  background: var(--bg-surface); border-radius: 8px; padding: 34px 26px;
  text-align: center; border: 1px solid var(--border-soft); transition: var(--transition);
}
.value-card:hover {
  transform: translateY(-7px); border-color: var(--border-strong);
  box-shadow: 0 20px 60px rgba(200,155,60,0.12);
}
.value-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(200,155,60,0.2), rgba(200,155,60,0.06));
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 1.8rem; color: var(--accent-gold);
  transform: rotate(-5deg); transition: var(--transition);
}
.value-card:hover .value-icon { transform: rotate(0deg) scale(1.06); background: var(--accent-gold); color: var(--bg-primary); }
.value-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 10px; }
.value-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.75; }

/* ===== FLEET CARDS ===== */
.fleet-card {
  background: var(--bg-surface); border-radius: 8px; overflow: hidden;
  border: 1px solid var(--border-soft); transition: var(--transition);
}
.fleet-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-strong); border-color: var(--border-strong); }
.fleet-card img   { width: 100%; height: 220px; object-fit: cover; }
.fleet-card-body  { padding: 24px; }
.fleet-card-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.fleet-card-desc  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; }
.fleet-spec {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem; color: var(--text-muted); padding: 4px 0;
}
.fleet-spec i { color: var(--accent-gold); font-size: 0.82rem; }

/* ===== QUALITY ===== */
.quality-card {
  display: flex; gap: 22px; padding: 30px;
  background: var(--bg-surface); border-radius: 8px;
  border: 1px solid var(--border-soft); transition: var(--transition);
}
.quality-card:hover { box-shadow: var(--shadow-soft); border-color: var(--border-strong); }
.quality-icon {
  width: 56px; height: 56px; min-width: 56px;
  background: rgba(200,155,60,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold); font-size: 1.4rem; transition: var(--transition);
}
.quality-card:hover .quality-icon { background: var(--accent-gold); color: var(--bg-primary); }

/* ===== JOB CARDS ===== */
.job-card {
  background: var(--bg-surface); border-radius: 8px; padding: 26px 30px;
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-soft); transform: translateX(4px); }
[dir="rtl"] .job-card:hover { transform: translateX(-4px); }
.job-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.job-meta  { display: flex; gap: 14px; flex-wrap: wrap; }
.job-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.05); color: var(--text-muted);
  padding: 4px 12px; border-radius: 100px;
  font-size: 0.73rem; font-weight: 500;
}

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 0.8rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: 8px; letter-spacing: 0.3px;
}
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border-soft); border-radius: 5px;
  font-size: 0.875rem; color: var(--text-primary);
  background: var(--bg-surface); font-family: inherit; outline: none;
  transition: var(--transition-fast);
}
.form-input:focus   { border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(200,155,60,0.1); }
.form-input::placeholder { color: var(--text-muted); }
textarea.form-input  { resize: vertical; min-height: 140px; }
select.form-input    { cursor: pointer; }

/* ===== CONTACT INFO ===== */
.contact-block {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 8px; transition: var(--transition-fast);
}
.contact-block:hover { background: var(--bg-soft); }
.contact-icon {
  width: 48px; height: 48px; min-width: 48px;
  background: rgba(200,155,60,0.1); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold); font-size: 1.15rem;
}
.contact-label { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }
.contact-value { font-size: 0.92rem; color: var(--text-primary); font-weight: 600; }
.contact-value a { color: inherit; }
.contact-value a:hover { color: var(--accent-gold); }

/* ===== MAP PLACEHOLDER ===== */
.map-placeholder {
  width: 100%; height: 400px;
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-soft) 100%);
  border: 1px solid var(--border-soft); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.5px; position: relative; overflow: hidden;
}
.map-placeholder i { font-size: 2.8rem; display: block; margin-bottom: 14px; color: var(--accent-gold); }

/* ===== FILTER TABS ===== */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab {
  padding: 9px 22px; border-radius: 100px;
  font-size: 0.8rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid var(--border-soft); color: var(--text-muted);
  background: var(--bg-surface); transition: var(--transition-fast); letter-spacing: 0.3px;
}
.filter-tab:hover,
.filter-tab.active { background: var(--accent-gold); border-color: var(--accent-gold); color: var(--bg-primary); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-primary); position: relative; }
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(200,155,60,0.4) 50%, transparent 100%);
}
.footer-main { padding: 60px 0 48px; border-bottom: 1px solid var(--border-soft); }
.footer-logo { display: inline-block; margin-bottom: 20px; text-decoration: none; line-height: 1; }
.footer-logo-img {
  height: 62px; width: auto; display: block;
  filter: drop-shadow(0 2px 14px rgba(200,155,60,0.25));
  transition: var(--transition-fast);
}
.footer-logo:hover .footer-logo-img { filter: drop-shadow(0 2px 22px rgba(200,155,60,0.5)); }
.footer-logo-text { font-size: 1.4rem; font-weight: 900; color: var(--text-primary); letter-spacing: -0.5px; line-height: 1; }
.footer-logo-text span { color: var(--accent-gold); }
.footer-desc {
  font-size: 0.875rem; line-height: 1.9;
  color: var(--text-muted); max-width: 320px; margin-bottom: 28px;
}
.footer-heading {
  font-size: 0.65rem; font-weight: 700; color: rgba(245,247,250,0.8);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 18px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border-soft);
}
.footer-link {
  display: flex; align-items: center; gap: 9px;
  color: var(--text-muted); font-size: 0.875rem; margin-bottom: 10px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-link:hover { color: var(--accent-gold); padding-left: 4px; }
.footer-link i { font-size: 0.6rem; flex-shrink: 0; color: rgba(200,155,60,0.4); transition: color 0.2s ease; }
.footer-link:hover i { color: var(--accent-gold); }

.social-links { display: flex; gap: 8px; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft); border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.88rem; transition: var(--transition-fast);
}
.social-link:hover {
  background: var(--accent-gold); border-color: var(--accent-gold);
  color: var(--bg-primary); transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(200,155,60,0.35);
}

.footer-bottom {
  padding: 22px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.footer-copyright { font-size: 0.72rem; color: rgba(245,247,250,0.2); letter-spacing: 0.3px; }

/* RTL footer overrides */
[dir="rtl"] .footer-link          { flex-direction: row-reverse; }
[dir="rtl"] .footer-link:hover    { padding-left: 0; padding-right: 4px; }
[dir="rtl"] .footer-bottom        { flex-direction: row-reverse; }
[dir="rtl"] .footer-heading       { text-align: right; }
[dir="rtl"] .footer-desc          { text-align: right; }
[dir="rtl"] .social-links         { justify-content: flex-start; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px; background: var(--accent-gold);
  color: var(--bg-primary); border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.95rem; z-index: 500;
  opacity: 0; transform: translateY(20px); transition: var(--transition);
  box-shadow: 0 8px 28px rgba(200,155,60,0.45);
}
[dir="rtl"] .scroll-top { right: auto; left: 30px; }
.scroll-top.visible   { opacity: 1; transform: translateY(0); }
.scroll-top:hover     { background: var(--accent-gold-hover); transform: translateY(-4px); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal       { opacity: 0; transform: translateY(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in    { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal-scale.in { opacity: 1; transform: scale(1); }

.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; } .d6 { transition-delay: 0.6s; }
.d7 { transition-delay: 0.7s; } .d8 { transition-delay: 0.8s; }

/* Hero load animations */
.hero-anim { opacity: 0; animation: heroFadeUp 0.9s var(--ease) forwards; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ha1 { animation-delay: 0.2s; }  .ha2 { animation-delay: 0.45s; }
.ha3 { animation-delay: 0.65s; } .ha4 { animation-delay: 0.85s; }
.ha5 { animation-delay: 1.0s; }

/* ===== PROCESS STEPS ===== */
.process-step { text-align: center; padding: 22px 16px; }
.process-num {
  width: 54px; height: 54px; background: var(--accent-gold);
  color: var(--bg-primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 800; margin: 0 auto 18px;
}

/* ===== COMPANY INTRO ===== */
.intro-image-wrap { position: relative; border-radius: 8px; overflow: hidden; }
.intro-image-wrap::before {
  content: ''; position: absolute; bottom: -20px; right: -20px;
  width: 180px; height: 180px; background: var(--accent-gold);
  opacity: 0.05; border-radius: 8px; z-index: -1;
}
[dir="rtl"] .intro-image-wrap::before { right: auto; left: -20px; }

.intro-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--accent-gold); color: var(--bg-primary);
  padding: 11px 20px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700;
  position: absolute; bottom: -20px; right: 28px;
  box-shadow: 0 10px 36px rgba(200,155,60,0.45);
}
[dir="rtl"] .intro-badge { right: auto; left: 28px; }

/* ===== TRUST BADGES ===== */
.trust-badge {
  display: flex; align-items: center; gap: 12px; padding: 18px;
  background: var(--bg-surface); border-radius: 8px;
  border: 1px solid var(--border-soft); transition: var(--transition);
}
.trust-badge:hover { box-shadow: var(--shadow-soft); transform: translateY(-3px); border-color: var(--border-strong); }
.trust-badge i           { font-size: 1.7rem; color: var(--accent-gold); }
.trust-badge-title       { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.trust-badge-sub         { font-size: 0.78rem; color: var(--text-secondary); }

/* ===== UTILITY ===== */
.container-main    { max-width: 1220px; margin: 0 auto; padding: 0 28px; }
.text-primary      { color: var(--accent-gold) !important; }
.text-amber-a      { color: var(--accent-gold) !important; }
.bg-primary        { background: var(--accent-gold) !important; }
.bg-dark-full      { background: var(--bg-secondary) !important; }
.bg-off            { background: var(--bg-soft) !important; }
.overflow-x-hidden { overflow-x: hidden; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .timeline::before { left: 22px; }
  .tl-item,
  .tl-item:nth-child(even) { flex-direction: column !important; padding-left: 65px; }
  .tl-content { width: 100%; }
  .tl-dot     { left: 13px; transform: none; top: 22px; }
  [dir="rtl"] .tl-item,
  [dir="rtl"] .tl-item:nth-child(even) { padding-left: 0; padding-right: 65px; }
  [dir="rtl"] .tl-dot           { left: auto; right: 13px; }
  [dir="rtl"] .timeline::before { left: auto; right: 22px; }
}

@media (max-width: 768px) {
  .hero-geo      { display: none; }
  .hero-bg       { background-attachment: scroll; }
  .page-hero     { padding: 130px 0 70px; }
  .job-card      { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-primary, .btn-outline, .btn-dark, .btn-white { padding: 11px 22px; font-size: 0.77rem; }
  .container-main { padding: 0 18px; }
}

@media (max-width: 480px) {
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn-primary,
  .hero-cta-group .btn-outline { text-align: center; justify-content: center; }
  .stat-divider { display: none; }
}

/* ===== PARTNERS MARQUEE ===== */
.partners-section {
  padding: 100px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
  position: relative;
}
.partners-section::before,
.partners-section::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 180px;
  z-index: 2;
  pointer-events: none;
}
.partners-section::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}
.partners-section::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}
.partners-header {
  text-align: center;
  margin-bottom: 72px;
  position: relative;
  z-index: 3;
}
.partners-header .section-label { display: block; text-align: center; margin-bottom: 14px; }
.partners-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-top: 10px;
  letter-spacing: 0.2px;
  line-height: 1.7;
}
.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  margin-bottom: 0;
}
.marquee-track:last-child { margin-bottom: 0; }

.marquee-row {
  overflow: hidden;
  position: relative;
  margin-bottom: 48px;
}
.marquee-row:last-child { margin-bottom: 0; }
.marquee-row--fwd  .marquee-track { animation: marquee-ltr 40s linear infinite; }
.marquee-row--rev  .marquee-track { animation: marquee-rtl 48s linear infinite; }

@keyframes marquee-ltr {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.marquee-row:hover .marquee-track { animation-play-state: paused; }

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 80px;
  flex-shrink: 0;
}
.partner-logo img {
  height: 52px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(1) invert(1) opacity(0.45) brightness(1.1);
  mix-blend-mode: screen;
  transition: filter 0.5s ease, transform 0.5s ease;
  display: block;
}
.partner-logo img:hover {
  filter: grayscale(0) invert(0) opacity(1) brightness(1);
  transform: scale(1.08);
}
/* text placeholder — shown until real logo images are dropped in */
.partner-logo .partner-name {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.28);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 4px;
  padding: 7px 16px;
  transition: color 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}
.partner-logo:hover .partner-name {
  color: var(--accent-gold);
  border-color: rgba(200,155,60,0.5);
  background: rgba(200,155,60,0.07);
}
@media (max-width: 768px) {
  .partners-section { padding: 72px 0; }
  .partners-section::before,
  .partners-section::after { width: 80px; }
  .partner-logo { padding: 0 44px; }
  .partner-logo img { height: 38px; }
  .marquee-row { margin-bottom: 32px; }
}

/* ===== PRINT ===== */
@media print {
  .navbar, .mobile-menu, .scroll-top { display: none !important; }
  .hero { min-height: auto; padding: 60px 0; }
}
