/* ============================================================
   CSL - Capable Supplies Logistics | Main Stylesheet v2
   © 2024 الامدادات المتمكنة - All Rights Reserved
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* ══════════════════════════════════════
   CSS VARIABLES
══════════════════════════════════════ */
:root {
  --navy:        #0A2558;
  --navy-dark:   #060E1E;
  --navy-mid:    #0D2E6B;
  --gold:        #C8960C;
  --gold-light:  #E8B420;
  --ocean:       #00B4D8;
  --ocean-dark:  #0077A8;
  --light:       #F8FAFF;
  --white:       #FFFFFF;
  --gray-100:    #F1F5F9;
  --gray-200:    #E2E8F0;
  --gray-400:    #94A3B8;
  --gray-600:    #475569;
  --gray-800:    #1E293B;
  --success:     #2ECC71;
  --danger:      #E74C3C;
  --purple:      #6C63FF;
  --font-ar:     'Cairo', sans-serif;
  --font-en:     'Poppins', sans-serif;
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   40px;
  --radius-full: 9999px;
  --shadow-sm:   0 2px 8px rgba(10,37,88,0.08);
  --shadow-md:   0 8px 32px rgba(10,37,88,0.15);
  --shadow-lg:   0 20px 60px rgba(10,37,88,0.25);
  --shadow-glow: 0 0 40px rgba(0,180,216,0.3);
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.2s ease;
  --nav-height:  80px;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-ar);
  background: var(--navy-dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
  direction: rtl;
}

body.lang-en { font-family: var(--font-en); direction: ltr; }
body.lang-ar { font-family: var(--font-ar); direction: rtl; }

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; }
a { text-decoration: none; color: inherit; transition: var(--transition-fast); }
img { max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { outline: none; font-family: inherit; }

/* ══════════════════════════════════════
   UTILITIES
══════════════════════════════════════ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.text-center { text-align: center; }
.w-full { width: 100%; }
.h-full { height: 100%; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ══════════════════════════════════════
   PAGE LOADER
══════════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo { margin-bottom: 8px; }
.loader-logo img { 
  height: 54px; 
  width: auto; 
  animation: pulse 1.5s infinite; 
  background: #ffffff;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  box-sizing: content-box;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 3px;
  overflow: hidden;
}

.loader-bar-inner {
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--gold), var(--ocean));
  border-radius: 3px;
  animation: loadingBar 1.5s ease-in-out infinite;
}

@keyframes loadingBar {
  0%   { transform: translateX(-100%); }
  50%  { transform: translateX(150%); }
  100% { transform: translateX(350%); }
}

/* ══════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════ */
.section-header { margin-bottom: 60px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,12,0.12);
  border: 1px solid rgba(200,150,12,0.3);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-400);
  max-width: 600px;
  line-height: 1.8;
}

.text-center .section-subtitle { margin: 0 auto; }

.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--ocean));
  border-radius: var(--radius-full);
  margin: 16px 0;
}

.text-center .divider { margin: 16px auto; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--ocean));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  font-family: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 8px 32px rgba(200,150,12,0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(200,150,12,0.6); color: var(--navy-dark); }

.btn-ocean {
  background: linear-gradient(135deg, var(--ocean-dark), var(--ocean));
  color: var(--white);
  box-shadow: 0 8px 32px rgba(0,180,216,0.3);
}
.btn-ocean:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(0,180,216,0.5); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-3px); color: var(--white); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }

.btn-lg { padding: 18px 44px; font-size: 17px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ══════════════════════════════════════
   CARDS
══════════════════════════════════════ */
.card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,150,12,0.3);
  box-shadow: var(--shadow-lg);
}

/* ══════════════════════════════════════
   ALERTS
══════════════════════════════════════ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
}

.alert-success { background: rgba(46,204,113,0.12); border: 1px solid rgba(46,204,113,0.3); color: var(--success); }
.alert-error   { background: rgba(231,76,60,0.12);  border: 1px solid rgba(231,76,60,0.3);  color: #ff6b6b; }

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(6,14,30,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo img { 
  height: 44px; 
  width: auto; 
  transition: var(--transition); 
  background: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  box-sizing: content-box;
}
.nav-logo:hover img { transform: scale(1.05); box-shadow: var(--shadow-md); }

.logo-text { display: flex; flex-direction: column; line-height: 1; }

.logo-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
}

.logo-sub {
  font-size: 10px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 3px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.nav-link i { font-size: 12px; opacity: 0.8; }

.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-full);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

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

.nav-cta {
  padding: 9px 20px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-dark) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 4px 16px rgba(200,150,12,0.4) !important;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,150,12,0.6) !important; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

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

#ocean-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,14,30,0.88) 0%, rgba(10,37,88,0.6) 50%, rgba(6,14,30,0.85) 100%);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,12,0.15);
  border: 1px solid rgba(200,150,12,0.4);
  color: var(--gold);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInDown 0.8s ease both;
}

.hero-title {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s 0.1s ease both;
}

.hero-title .line1 { display: block; color: var(--white); }

.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--ocean));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.8;
  animation: fadeInUp 1s 0.2s ease both;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.1s 0.3s ease both;
}

/* Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(6,14,30,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 24px;
}

.hero-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-item:last-child { border: none; }
body.lang-en .hero-stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.08); }
body.lang-en .hero-stat-item:last-child { border: none; }

.hero-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(200,150,12,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-stat-value { font-size: 26px; font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 12px; color: var(--gray-400); margin-top: 4px; }

/* ══════════════════════════════════════
   HERO SECTION - ULTRA PREMIUM
══════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #020B18;
  padding-top: 100px; /* Prevent overlap with fixed navbar */
  padding-bottom: 140px; /* Prevent overlap with stats bar */
}

#ocean-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Cinematic multi-layer overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 120% 80% at 50% 50%, rgba(2,11,24,0) 0%, rgba(2,11,24,0.2) 60%, rgba(2,11,24,0.7) 100%),
    linear-gradient(to bottom, rgba(2,11,24,0.4) 0%, rgba(2,11,24,0) 30%, rgba(2,11,24,0) 60%, rgba(2,11,24,0.8) 100%);
}

/* Particles layer */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 50%, rgba(200,150,12,0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(0,180,216,0.05) 0%, transparent 50%);
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 960px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,150,12,0.12);
  border: 1px solid rgba(200,150,12,0.45);
  color: var(--gold);
  padding: 9px 22px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease both;
  box-shadow: 0 0 30px rgba(200,150,12,0.15);
  letter-spacing: 0.5px;
  backdrop-filter: blur(6px);
}

.hero-badge i { font-size: 13px; }

/* Hero line decorators */
.hero-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  vertical-align: middle;
  margin: 0 12px;
}

.hero-title {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1.08;
  margin-bottom: 22px;
  animation: fadeInUp 0.9s 0.15s ease both;
  text-shadow: 0 4px 40px rgba(0,0,0,0.8);
  letter-spacing: -0.5px;
}

.hero-title .line1 {
  display: block;
  color: var(--white);
}

.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 45%, var(--ocean) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 12px rgba(200,150,12,0.4));
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 20px);
  color: rgba(255,255,255,0.72);
  margin-bottom: 44px;
  line-height: 1.9;
  animation: fadeInUp 1s 0.25s ease both;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 1.1s 0.35s ease both;
  margin-bottom: 60px; /* Prevent overlapping with scroll indicator */
}

/* Enhanced CTA buttons in hero */
.hero-actions .btn-primary {
  box-shadow: 0 8px 40px rgba(200,150,12,0.5), 0 0 0 1px rgba(200,150,12,0.3);
  font-size: 16px;
}

.hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.06);
  font-size: 16px;
}

/* Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(2,11,24,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 24px;
}

.hero-stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.hero-stat-item:last-child { border: none; }
body.lang-en .hero-stat-item { border-right: none; border-left: 1px solid rgba(255,255,255,0.07); }
body.lang-en .hero-stat-item:last-child { border: none; }

.hero-stat-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(200,150,12,0.2), rgba(200,150,12,0.08));
  border: 1px solid rgba(200,150,12,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

.hero-stat-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 5px;
  letter-spacing: 0.3px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 130px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: bounceDown 2.5s infinite;
}

@media (max-height: 800px) {
  .scroll-indicator {
    display: none; /* Hide on short screens to prevent overlap */
  }
}

.scroll-indicator .mouse {
  width: 20px;
  height: 34px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.scroll-indicator .wheel {
  width: 2px;
  height: 7px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite;
}

/* ══════════════════════════════════════
   PAGE HERO (Inner pages)
══════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 160px 24px 80px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--navy-dark) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,180,216,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-content { position: relative; z-index: 2; }

.tracking-hero {
  position: relative;
  padding: 150px 24px 100px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  overflow: hidden;
}

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

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--card-color, var(--gold)), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
  transition: var(--transition);
  background: rgba(var(--card-rgb, 200,150,12), 0.12);
  color: var(--card-color, var(--gold));
}

.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-5deg); }

.service-title { font-size: 19px; font-weight: 700; margin-bottom: 12px; color: var(--white); }
.service-desc { font-size: 14px; color: var(--gray-400); line-height: 1.8; margin-bottom: 20px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  text-decoration: none;
}
.service-link:hover { gap: 10px; color: var(--gold-light); }

/* Services Detail Page */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: var(--transition);
  scroll-margin-top: 100px;
}

.service-detail-card:hover {
  border-color: rgba(var(--card-color), 0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-detail-title { font-size: 22px; font-weight: 800; margin-bottom: 14px; }
.service-detail-desc { font-size: 15px; color: var(--gray-400); line-height: 1.9; margin-bottom: 24px; }

.service-features { display: flex; flex-direction: column; gap: 10px; }

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}

.feature-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(46,204,113,0.15);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════
   WHY US SECTION
══════════════════════════════════════ */
#why-us {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

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

.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.why-card:hover {
  border-color: rgba(0,180,216,0.3);
  background: rgba(255,255,255,0.06);
  transform: translateY(-6px);
}

.why-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: rgba(0,180,216,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  font-size: 22px;
  flex-shrink: 0;
}

.why-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-desc { font-size: 13px; color: var(--gray-400); line-height: 1.7; }

/* ══════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════ */
#testimonials { background: var(--navy); overflow: hidden; }

.testimonials-slider { position: relative; overflow: hidden; }

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testimonial-card {
  min-width: calc(33.33% - 16px);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  flex-shrink: 0;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(200,150,12,0.25);
  background: rgba(255,255,255,0.07);
}

.testimonial-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.star { color: var(--gold); font-size: 14px; }

.testimonial-text {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  color: var(--navy-dark);
}

.author-name { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.author-company { font-size: 13px; color: var(--gray-400); }

/* Slider Controls */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 14px;
}

.slider-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.slider-dots { display: flex; gap: 8px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active { background: var(--gold); width: 24px; border-radius: 4px; }

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(200,150,12,0.3); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.04);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-align: right;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}

body.lang-en .faq-question { text-align: left; }

.faq-item.open .faq-question { background: rgba(200,150,12,0.08); color: var(--gold); }
.faq-question:hover { background: rgba(255,255,255,0.06); }

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.3s;
  font-size: 12px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(200,150,12,0.2);
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

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

.faq-answer-inner {
  padding: 16px 24px 24px;
  font-size: 14px;
  color: var(--gray-400);
  line-height: 2;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* FAQ Tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.faq-tab {
  padding: 9px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  display: inline-block;
}

.faq-tab:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,150,12,0.08); }
.faq-tab.active { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

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

#cta::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,150,12,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-title { font-size: clamp(28px, 4vw, 52px); font-weight: 800; margin-bottom: 16px; }
.cta-subtitle { font-size: 16px; color: var(--gray-400); margin-bottom: 36px; max-width: 550px; margin-left: auto; margin-right: auto; }

/* ══════════════════════════════════════
   TRACKING PAGE
══════════════════════════════════════ */
.tracking-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.tracking-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  padding: 6px;
}

.tracking-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
}

.tracking-tab.active { background: var(--ocean-dark); color: var(--white); }
.tracking-tab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,0.06); }

.tracking-input-wrap { display: flex; gap: 0; border-radius: var(--radius-full); overflow: hidden; border: 1px solid rgba(255,255,255,0.15); }

.tracking-input {
  flex: 1;
  padding: 16px 24px;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: none;
  font-size: 15px;
  font-family: inherit;
  direction: inherit;
}

.tracking-input::placeholder { color: var(--gray-400); }
.tracking-input:focus { background: rgba(255,255,255,0.09); outline: none; }

.tracking-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--ocean-dark), var(--ocean));
  color: var(--white);
  border: none;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: inherit;
  white-space: nowrap;
}

.tracking-btn:hover { background: linear-gradient(135deg, var(--ocean), var(--ocean-dark)); }

/* Result */
.tracking-result {
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  animation: fadeInUp 0.4s ease;
}

.tracking-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  gap: 12px;
}

.tracking-number { font-size: 13px; color: var(--gray-400); margin-top: 4px; }

/* Status Badges */
.status-badge {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
}

.status-pending  { background: rgba(243,156,18,0.15);  color: #F39C12; border: 1px solid rgba(243,156,18,0.3); }
.status-transit  { background: rgba(0,180,216,0.15);   color: var(--ocean); border: 1px solid rgba(0,180,216,0.3); }
.status-cleared  { background: rgba(46,204,113,0.15);  color: var(--success); border: 1px solid rgba(46,204,113,0.3); }
.status-delivered{ background: rgba(108,99,255,0.15);  color: var(--purple); border: 1px solid rgba(108,99,255,0.3); }

/* Timeline */
.tracking-timeline { padding: 28px 24px; }

.timeline-track {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.timeline-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
}

.timeline-step:last-child { padding-bottom: 0; }

.timeline-step::before {
  content: '';
  position: absolute;
  top: 36px;
  right: 17px;
  width: 2px;
  height: calc(100% - 16px);
  background: rgba(255,255,255,0.1);
}

body.lang-en .timeline-step::before { right: auto; left: 17px; }
.timeline-step:last-child::before { display: none; }

.timeline-step.completed::before { background: rgba(46,204,113,0.4); }

.timeline-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border: 2px solid rgba(255,255,255,0.12);
  color: var(--gray-400);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.timeline-step.completed .timeline-icon {
  background: rgba(46,204,113,0.15);
  border-color: var(--success);
  color: var(--success);
}

.timeline-step.active .timeline-icon {
  background: rgba(0,180,216,0.15);
  border-color: var(--ocean);
  color: var(--ocean);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.15);
}

.timeline-body { padding-top: 6px; }
.timeline-label { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.timeline-date { font-size: 13px; color: var(--gray-400); }

/* ══════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,180,216,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-visual-inner {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
  position: relative;
}

.about-visual-logo { height: 80px; width: auto; margin-bottom: 16px; }

/* About Timeline */
.about-timeline { max-width: 700px; margin: 0 auto; }

.timeline-list { position: relative; }

.timeline-list::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  right: 50%;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

body.lang-en .timeline-list::before { right: auto; left: 50%; }

.timeline-list-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
}

.tl-content {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  text-align: right;
}

body.lang-en .tl-content { text-align: left; }
.tl-event { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.6; }

.tl-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  text-align: center;
  margin: 0 auto;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(200,150,12,0.1);
}

.tl-empty {}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-8px); border-color: rgba(200,150,12,0.3); }

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(200,150,12,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 18px;
}

.value-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.value-desc { font-size: 13px; color: var(--gray-400); line-height: 1.7; }

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover { transform: translateY(-8px); border-color: rgba(0,180,216,0.3); }

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--ocean-dark));
  border: 3px solid rgba(0,180,216,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 16px;
}

.team-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.team-role { font-size: 13px; color: var(--ocean); }

/* ══════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(0,180,216,0.12);
  color: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-info-label { font-size: 12px; color: var(--gray-400); margin-bottom: 4px; }
.contact-info-value { font-size: 14px; font-weight: 600; }

.contact-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ══════════════════════════════════════
   FORMS
══════════════════════════════════════ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.form-label span { color: var(--danger); }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
  direction: inherit;
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-400); }

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--ocean);
  background: rgba(255,255,255,0.09);
  outline: none;
}

.form-select { cursor: pointer; }
.form-select option { background: var(--navy-dark); color: var(--white); }

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

/* ══════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}

.blog-articles { display: flex; flex-direction: column; gap: 28px; }

.blog-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200,150,12,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.blog-card-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-category-tag {
  padding: 4px 12px;
  background: rgba(0,180,216,0.12);
  border: 1px solid rgba(0,180,216,0.25);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--ocean);
}

.blog-date, .blog-read-time { font-size: 12px; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }

.blog-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-card-title a { color: var(--white); transition: color 0.2s; }
.blog-card-title a:hover { color: var(--ocean); }

.blog-card-excerpt { font-size: 14px; color: var(--gray-400); line-height: 1.8; margin-bottom: 20px; flex: 1; }

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  transition: gap 0.2s;
  text-decoration: none;
}
.blog-read-btn:hover { gap: 10px; color: var(--gold-light); }

/* Blog Sidebar */
.blog-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-widget {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
}

.sidebar-cat-list { display: flex; flex-direction: column; gap: 4px; }

.sidebar-cat-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
  text-decoration: none;
}

.sidebar-cat-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.sidebar-cat-link.active { color: var(--gold); background: rgba(200,150,12,0.1); }

/* Blog Article Page */
.blog-article-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.article-hero-img {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(255,255,255,0.1);
  margin-bottom: 28px;
  overflow: hidden;
}

.article-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 24px;
}

.article-content { line-height: 2; }

.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.tag {
  padding: 5px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-full);
  font-size: 13px;
  color: var(--gray-400);
  transition: var(--transition-fast);
  text-decoration: none;
}

.tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,150,12,0.08); }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer {
  background: #030810;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.footer-logo img { 
  height: 44px; 
  width: auto; 
  background: #ffffff;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  box-sizing: content-box;
}

.footer-logo-name { font-size: 17px; font-weight: 800; color: var(--white); line-height: 1.2; }
.footer-logo-sub  { font-size: 11px; color: var(--gold); margin-top: 3px; font-weight: 500; }

.footer-desc {
  font-size: 14px;
  color: var(--gray-400);
  line-height: 1.9;
  margin-bottom: 24px;
}

.footer-socials { display: flex; gap: 10px; }

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 15px;
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-btn:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); transform: translateY(-3px); }

.footer-col-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-links-list { display: flex; flex-direction: column; gap: 10px; list-style: none; padding: 0; margin: 0; }

.footer-link {
  font-size: 14px;
  color: var(--gray-400);
  transition: color 0.2s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link::before { content: '←'; font-size: 10px; opacity: 0; transition: opacity 0.2s; }
body.lang-en .footer-link::before { content: '→'; }
.footer-link:hover { color: var(--gold); }
.footer-link:hover::before { opacity: 1; }

.footer-contact-list { display: flex; flex-direction: column; gap: 16px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(200,150,12,0.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright { font-size: 13px; color: var(--gray-400); }
.footer-copyright span { color: var(--gold); font-weight: 600; }

.footer-bottom-links { display: flex; gap: 20px; }

.footer-bottom-link {
  font-size: 13px;
  color: var(--gray-400);
  transition: color 0.2s;
  text-decoration: none;
}

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

/* ══════════════════════════════════════
   SCROLL TO TOP & WHATSAPP
══════════════════════════════════════ */
#scroll-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 20px rgba(200,150,12,0.5);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 500;
}

body.lang-ar #scroll-top { right: auto; left: 24px; }

#scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#scroll-top:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(200,150,12,0.7); }

#whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition);
  z-index: 500;
  animation: whatsappPulse 2s infinite;
}

body.lang-ar #whatsapp-btn { right: auto; left: 24px; }
#whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 8px 30px rgba(37,211,102,0.7); }

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* ══════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
══════════════════════════════════════ */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal        { transform: translateY(40px); }
.reveal-left   { transform: translateX(-50px); }
.reveal-right  { transform: translateX(50px); }

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

/* ══════════════════════════════════════
   KEYFRAME ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.05); }
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ══════════════════════════════════════
   RESPONSIVE - TABLET (max 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .why-grid       { grid-template-columns: repeat(2, 1fr); }
  .values-grid    { grid-template-columns: repeat(2, 1fr); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .blog-grid      { grid-template-columns: 1fr; }
  .blog-sidebar   { display: none; }
  .blog-article-grid { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonial-card { min-width: calc(50% - 12px); }
}

/* ══════════════════════════════════════
   RESPONSIVE - MOBILE (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
  .section-padding    { padding: 70px 0; }
  .section-padding-sm { padding: 40px 0; }

  /* Navbar mobile */
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(6,14,30,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    transform: translateY(-110%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    justify-content: flex-start;
    z-index: 999;
  }

  .nav-menu.open { transform: translateY(0); }

  .nav-link {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border-radius: var(--radius-md);
  }

  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .lang-btn { padding: 6px 12px; font-size: 12px; }

  /* Hero */
  .hero-content { padding: 0 16px; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-stat-item { border: none !important; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .scroll-indicator { display: none; }

  /* Grids */
  .services-grid   { grid-template-columns: 1fr; }
  .why-grid        { grid-template-columns: 1fr; }
  .values-grid     { grid-template-columns: repeat(2, 1fr); }
  .team-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid     { grid-template-columns: 1fr; gap: 28px; }
  .form-row        { grid-template-columns: 1fr; }
  .timeline-list-item { grid-template-columns: 1fr 60px; }
  .tl-empty        { display: none; }
  .hero-stats      { padding: 14px 16px; }

  /* Testimonials */
  .testimonial-card { min-width: calc(100%); }

  /* Tracking */
  .tracking-box    { padding: 24px 16px; }
  .tracking-input-wrap { flex-direction: column; border-radius: var(--radius-lg); }
  .tracking-input  { border-radius: var(--radius-lg) !important; }
  .tracking-btn    { border-radius: var(--radius-lg); justify-content: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  #scroll-top, #whatsapp-btn { right: 16px; }
  body.lang-ar #scroll-top, body.lang-ar #whatsapp-btn { right: auto; left: 16px; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .section-title { font-size: 24px; }
  .hero-stats-inner { grid-template-columns: 1fr 1fr; }
}
