/* ============================================================
   Overland for Land Cargo Transport
   Shared stylesheet — modern clean theme
   Deep blue primary, warm orange accent, bilingual (AR/EN)
   ============================================================ */

:root {
  --primary: #0F2A5C;
  --primary-dark: #081A3E;
  --primary-light: #1E3A8A;
  --accent: #F97316;
  --accent-dark: #C2410C;
  --bg: #ffffff;
  --bg-soft: #F8FAFC;
  --bg-section: #F1F5F9;
  --text: #0F172A;
  --text-muted: #475569;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(15, 42, 92, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 42, 92, 0.10);
  --shadow-lg: 0 20px 50px rgba(15, 42, 92, 0.15);
  --radius: 12px;
  --radius-lg: 18px;
  --container: 1200px;
  --font-en: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-ar: 'Tajawal', 'Cairo', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-en);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="ar"] body { font-family: var(--font-ar); }
html[lang="ar"] { direction: rtl; }
html[lang="en"] { direction: ltr; }

.lang-ar, .lang-en { display: none; }
html[lang="ar"] .lang-ar { display: inline; }
html[lang="ar"] .lang-ar.block { display: block; }
html[lang="ar"] .lang-ar.flex { display: flex; }
html[lang="ar"] .lang-ar.grid { display: grid; }
html[lang="en"] .lang-en { display: inline; }
html[lang="en"] .lang-en.block { display: block; }
html[lang="en"] .lang-en.flex { display: flex; }
html[lang="en"] .lang-en.grid { display: grid; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-weight: 600; font-size: 0.95rem; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s ease;
  font-family: inherit; text-align: center; justify-content: center;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.4); }
.btn-ghost:hover { background: #fff; color: var(--primary); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.25rem; color: var(--primary); letter-spacing: -0.02em; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.brand img { height: 60px; width: auto; max-width: 240px; object-fit: contain; display: block; }
.footer-brand .brand img { height: 100px; max-width: 200px; }
@media (max-width: 560px) { .brand img { height: 44px; max-width: 150px; } }

/* Hero with video background */
.hero-video { position: relative; min-height: 600px; display: flex; align-items: center; padding: 100px 0; overflow: hidden; }
.hero-bg-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(15,42,92,0.78) 0%, rgba(8,26,62,0.6) 60%, rgba(249,115,22,0.3) 100%);
}
.hero-video .container { position: relative; z-index: 2; width: 100%; }
.hero-video .hero-content { max-width: 720px; color: #fff; }
.hero-video h1 { font-size: clamp(2rem, 4.8vw, 3.8rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 22px; color: #fff; }
.hero-video h1 .accent { color: var(--accent); }
.hero-video p.lead { font-size: 1.2rem; opacity: 0.95; margin-bottom: 36px; max-width: 620px; color: rgba(255,255,255,0.95); }
.hero-video .hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 768px) { .hero-video { min-height: 480px; padding: 70px 0; } }
.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--text); padding: 8px 0; position: relative; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--accent); border-radius: 2px; }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.lang-toggle { background: var(--bg-section); border: 1px solid var(--border); color: var(--text); padding: 8px 14px; border-radius: 8px; font-weight: 600; font-size: 0.85rem; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.lang-toggle:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--primary); margin: 5px 0; transition: 0.3s; }

/* Hero */
.hero { position: relative; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding: 100px 0 120px; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 80% 30%, rgba(249,115,22,0.15), transparent 50%), radial-gradient(ellipse at 10% 90%, rgba(30,58,138,0.4), transparent 50%); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.hero h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); }
.hero p.lead { font-size: 1.15rem; opacity: 0.9; margin-bottom: 36px; max-width: 560px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { position: relative; height: 420px; border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.1); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,42,92,0.2), rgba(249,115,22,0.15));
  pointer-events: none;
}

/* Photo-based fleet card */
.fleet-visual.photo { background: none; padding: 0; height: 220px; }
.fleet-visual.photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Photo strip section */
.photo-strip { position: relative; height: 320px; overflow: hidden; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-strip::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,42,92,0.85), rgba(8,26,62,0.7));
}
.photo-strip .container { position: relative; z-index: 1; height: 100%; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; color: #fff; padding: 0 24px; }
.photo-strip h2 { color: #fff !important; font-size: clamp(1.6rem, 2.8vw, 2.2rem); margin-bottom: 12px; font-weight: 800; }
.photo-strip p { color: rgba(255,255,255,0.9); max-width: 640px; }

/* Image cards (services, features with photo) */
.img-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; }
.img-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.img-card .img-wrap { height: 200px; overflow: hidden; }
.img-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.img-card:hover .img-wrap img { transform: scale(1.05); }
.img-card .img-body { padding: 24px 28px 28px; }
.img-card h3 { color: var(--primary); margin-bottom: 10px; font-size: 1.15rem; }
.img-card p { color: var(--text-muted); font-size: 0.95rem; }

/* About photo grid */
.about-photo { width: 100%; height: 420px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-md); }
.about-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-photo-grid img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

@media (max-width: 960px) {
  .hero-visual { height: 280px; }
  .about-photo { height: 300px; }
  .about-photo-grid { grid-template-columns: 1fr; }
  .about-photo-grid img { height: 200px; }
}

.page-hero { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: #fff; padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(249,115,22,0.15), transparent 60%); }
.page-hero h1 { position: relative; font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 12px; }
.page-hero p { position: relative; font-size: 1.1rem; opacity: 0.9; max-width: 640px; margin: 0 auto; }
.breadcrumbs { position: relative; margin-top: 20px; font-size: 0.9rem; opacity: 0.8; }
.breadcrumbs a { text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }

/* Sections */
section { padding: 80px 0; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--primary); color: #fff; }
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -0.02em; color: var(--primary); margin-bottom: 16px; }
.section-dark .section-head h2 { color: #fff; }
.section-head p { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; margin: 0 auto; }
.section-dark .section-head p { color: rgba(255,255,255,0.85); }

/* Cards / Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: all 0.25s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-dark)); display: grid; place-items: center; color: #fff; margin-bottom: 20px; }
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.2rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.card p { color: var(--text-muted); font-size: 0.95rem; }

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat .lbl { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
section:not(.section-dark) .stat .lbl { color: var(--text-muted); }
section:not(.section-dark) .stat .num { color: var(--primary); }

.cta-strip { background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); color: #fff; padding: 60px 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 800; margin-bottom: 16px; }
.cta-strip p { font-size: 1.05rem; opacity: 0.95; margin-bottom: 28px; }
.cta-strip .btn { background: #fff; color: var(--accent-dark); }
.cta-strip .btn:hover { background: var(--primary); color: #fff; }

.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.85); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-brand p { font-size: 0.92rem; line-height: 1.7; opacity: 0.8; margin-top: 16px; max-width: 320px; }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; opacity: 0.7; flex-wrap: wrap; gap: 16px; }

.wa-float { position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px; border-radius: 50%; background: #25D366; display: grid; place-items: center; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); z-index: 99; transition: transform 0.2s; }
html[dir="rtl"] .wa-float { right: auto; left: 24px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }

/* Forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; color: var(--text); margin-bottom: 8px; }
.form-group .required { color: var(--accent); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border); border-radius: 10px;
  font-size: 0.95rem; font-family: inherit; color: var(--text); background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(15, 42, 92, 0.1); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 14px; margin-top: 8px; flex-wrap: wrap; }
.success-msg { display: none; background: #DCFCE7; border: 1.5px solid #16A34A; color: #14532D; padding: 16px 20px; border-radius: 12px; margin-top: 20px; font-weight: 600; }

/* Coverage */
.coverage-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.coverage-item { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; display: flex; align-items: center; gap: 14px; transition: all 0.2s; }
.coverage-item:hover { border-color: var(--accent); transform: translateX(4px); }
html[dir="rtl"] .coverage-item:hover { transform: translateX(-4px); }
.coverage-item .flag { width: 44px; height: 44px; border-radius: 8px; background: var(--bg-section); display: grid; place-items: center; font-size: 1.4rem; flex-shrink: 0; }
.coverage-item .country { font-weight: 700; color: var(--primary); }
.coverage-item .role { font-size: 0.85rem; color: var(--text-muted); }

/* Fleet */
.fleet-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: all 0.25s; }
.fleet-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.fleet-visual { height: 180px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); position: relative; overflow: hidden; display: grid; place-items: center; }
.fleet-visual svg { width: 70%; height: auto; opacity: 0.95; }
.fleet-body { padding: 24px 28px 28px; }
.fleet-body h3 { color: var(--primary); margin-bottom: 8px; }
.fleet-specs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.spec-chip { background: var(--bg-section); color: var(--primary); padding: 5px 12px; border-radius: 999px; font-size: 0.8rem; font-weight: 600; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { color: var(--primary); font-size: 2rem; margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 40px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-item .v-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--bg-section); color: var(--accent); display: grid; place-items: center; flex-shrink: 0; }
.value-item h4 { color: var(--primary); margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 24px 24px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: -18px; left: 24px; width: 36px; height: 36px; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 800; box-shadow: 0 4px 12px rgba(249,115,22,0.4); }
html[dir="rtl"] .step::before { left: auto; right: 24px; }
.step h4 { color: var(--primary); margin-bottom: 8px; margin-top: 4px; }
.step p { font-size: 0.92rem; color: var(--text-muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-block { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; }
.contact-block .ci-icon { width: 44px; height: 44px; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.contact-block h4 { color: var(--primary); margin-bottom: 4px; font-size: 1rem; }
.contact-block p, .contact-block a { color: var(--text-muted); font-size: 0.95rem; }
.contact-block a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-links.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px 24px; border-bottom: 1px solid var(--border); gap: 16px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 260px; }
  .grid-3, .grid-4, .coverage-list, .steps, .stats, .values-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  section { padding: 60px 0; }
  .hero { padding: 60px 0 80px; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .coverage-list, .steps, .stats, .values-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-card { padding: 24px; }
  .nav { padding: 14px 0; }
  .brand { font-size: 1.05rem; }
  .nav-cta .btn { display: none; }
}

/* ============================================================
   FUTURISTIC UPGRADE — animations, marquee, globe, route map,
   page transitions, stat counters, advanced hovers
   ============================================================ */

/* ---- Reveal on scroll ---- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-left.in { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-right.in { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: opacity 0.8s, transform 0.8s; }
.reveal-scale.in { opacity: 1; transform: scale(1); }

/* ---- Marquee (scrolling banner) ---- */
.marquee {
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
  color: #fff;
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee.marquee-accent { background: linear-gradient(90deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-dark) 100%); }
.marquee.marquee-light { background: var(--bg-section); color: var(--primary); border-color: var(--border); }
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 30s linear infinite;
  width: max-content;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.marquee-item .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; box-shadow: 0 0 12px rgba(249, 115, 22, 0.8); }
.marquee.marquee-accent .marquee-item .dot { background: #fff; box-shadow: 0 0 12px rgba(255,255,255,0.8); }
.marquee-item svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ---- Page transition overlay (track-style) ---- */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translateX(100%);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-transition.in { transform: translateX(0); transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1); pointer-events: auto; }
.page-transition.out { transform: translateX(-100%); transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1); }
.page-transition .road {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 80px;
  transform: translateY(-50%);
  background: repeating-linear-gradient(90deg, transparent 0 60px, #F97316 60px 100px, transparent 100px 140px);
  opacity: 0.7;
  animation: road-flow 0.4s linear infinite;
}
@keyframes road-flow {
  from { background-position: 0 0; }
  to { background-position: -140px 0; }
}
.page-transition .truck {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 6rem;
  filter: drop-shadow(0 8px 24px rgba(249,115,22,0.6));
  animation: truck-drive 1s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}
@keyframes truck-drive {
  0% { left: -120px; }
  100% { left: calc(100% + 120px); }
}
.page-transition .pt-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 60px);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.3em;
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.85;
}

/* Optional: View Transitions API support (Chromium) */
@supports (view-transition-name: none) {
  ::view-transition-old(root) { animation: vt-out 0.5s cubic-bezier(0.65,0,0.35,1) both; }
  ::view-transition-new(root) { animation: vt-in 0.5s cubic-bezier(0.65,0,0.35,1) both; }
  @keyframes vt-out { to { opacity: 0; transform: translateX(-30px); } }
  @keyframes vt-in { from { opacity: 0; transform: translateX(30px); } }
}

/* ---- Stat counter glow ---- */
.stat .num {
  background: linear-gradient(135deg, var(--accent) 0%, #FFB97A 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(249,115,22,0.3);
  position: relative;
}

/* ---- Globe section ---- */
.globe-section {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(ellipse at center, #0a1a3a 0%, #050d20 100%);
  color: #fff;
  overflow: hidden;
}
.globe-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(249,115,22,0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(30,58,138,0.4) 0%, transparent 50%);
  pointer-events: none;
}
.globe-section .container { position: relative; z-index: 2; }
.globe-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.globe-text h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 20px; font-weight: 800; letter-spacing: -0.02em; }
.globe-text h2 .accent { color: var(--accent); }
.globe-text p { color: rgba(255,255,255,0.85); font-size: 1.08rem; margin-bottom: 28px; }
.globe-pins { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 32px; }
.globe-pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.25s;
}
.globe-pin:hover { background: rgba(249,115,22,0.2); border-color: var(--accent); transform: translateY(-2px); }
.globe-pin .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(249,115,22,0.7); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(249,115,22,0.7); }
  70% { box-shadow: 0 0 0 10px rgba(249,115,22,0); }
  100% { box-shadow: 0 0 0 0 rgba(249,115,22,0); }
}
#globe-canvas {
  width: 100%;
  height: 500px;
  position: relative;
  cursor: grab;
}
#globe-canvas:active { cursor: grabbing; }
#globe-canvas canvas { width: 100% !important; height: 100% !important; display: block; }
.globe-loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---- Route Map (SVG, GCC) ---- */
.route-map-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #0a1530 0%, #0f2a5c 50%, #0a1530 100%);
  color: #fff;
  overflow: hidden;
}
.route-map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(249,115,22,0.08), transparent 60%);
}
.route-map-section .container { position: relative; z-index: 2; }
.route-map-section .section-head h2 { color: #fff; }
.route-map-section .section-head p { color: rgba(255,255,255,0.85); }
.route-map-wrap {
  position: relative;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  backdrop-filter: blur(10px);
}
.route-svg { width: 100%; height: auto; max-height: 600px; }
.route-svg .country { fill: rgba(255,255,255,0.05); stroke: rgba(255,255,255,0.15); stroke-width: 1; transition: all 0.3s; }
.route-svg .country:hover { fill: rgba(249,115,22,0.15); stroke: var(--accent); cursor: pointer; }
.route-svg .country.active { fill: rgba(249,115,22,0.2); stroke: var(--accent); }
.route-svg .city {
  fill: var(--accent);
  stroke: #fff;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(249,115,22,0.8));
  cursor: pointer;
}
.route-svg .city.hq { fill: #FFB97A; stroke: var(--accent); stroke-width: 3; }
.route-svg .city-pulse {
  fill: var(--accent);
  opacity: 0;
  animation: city-pulse 2.4s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
@keyframes city-pulse {
  0% { opacity: 0.8; transform: scale(1); }
  100% { opacity: 0; transform: scale(4); }
}
.route-svg .route {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  stroke-linecap: round;
  opacity: 0.6;
  animation: route-dash 30s linear infinite;
}
@keyframes route-dash {
  to { stroke-dashoffset: -1000; }
}
.route-svg .route.draw {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: route-draw 2s ease-out forwards;
  opacity: 0;
}
@keyframes route-draw {
  to { stroke-dashoffset: 0; opacity: 0.7; }
}
.route-svg .city-label {
  fill: #fff;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  pointer-events: none;
}
.route-svg .city-label.ar { font-family: var(--font-ar); }
.route-legend { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-top: 28px; }
.route-legend-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.route-legend-item .swatch { width: 16px; height: 16px; border-radius: 50%; }
.route-legend-item .swatch.hq { background: #FFB97A; border: 2px solid var(--accent); }
.route-legend-item .swatch.dest { background: var(--accent); }
.route-legend-item .swatch.regional { background: transparent; border: 2px dashed var(--accent); }

/* ---- Clients / Partners section ---- */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}
.client-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 110px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0) 0%, rgba(249,115,22,0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.client-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(15, 42, 92, 0.15);
  border-color: var(--accent);
}
.client-card:hover::before { opacity: 1; }
.client-card .client-icon { font-size: 1.8rem; margin-bottom: 8px; position: relative; z-index: 1; transition: transform 0.4s; }
.client-card:hover .client-icon { transform: scale(1.2) rotate(-6deg); }
.client-card .client-name {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
}

/* ---- Ports & Warehouses showcase ---- */
.ports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.port-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  border: 1px solid var(--border);
}
.port-card:hover { transform: translateY(-8px); box-shadow: 0 24px 60px rgba(15, 42, 92, 0.18); border-color: var(--accent); }
.port-card .port-img { height: 180px; position: relative; overflow: hidden; }
.port-card .port-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.port-card:hover .port-img img { transform: scale(1.08); }
.port-card .port-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,42,92,0) 0%, rgba(15,42,92,0.6) 100%);
}
.port-card .port-flag {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
html[dir="rtl"] .port-card .port-flag { left: auto; right: 14px; }
.port-card .port-type {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
html[dir="rtl"] .port-card .port-type { right: auto; left: 14px; }
.port-card .port-body { padding: 20px 22px 24px; }
.port-card .port-body h3 { color: var(--primary); font-size: 1.05rem; margin-bottom: 4px; }
.port-card .port-body .port-location { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 12px; }
.port-card .port-stats { display: flex; gap: 14px; font-size: 0.8rem; color: var(--text-muted); }
.port-card .port-stats span { display: flex; align-items: center; gap: 4px; }

/* ---- Service card upgrade ---- */
.card { position: relative; overflow: hidden; }
.card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(249,115,22,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.card:hover::after { opacity: 1; }
.card .card-icon { transition: transform 0.5s cubic-bezier(0.5, -0.5, 0.5, 1.5); }
.card:hover .card-icon { transform: rotate(-8deg) scale(1.1); }
.card .card-arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-section);
  color: var(--primary);
  display: grid;
  place-items: center;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(-10px);
}
html[dir="rtl"] .card .card-arrow { right: auto; left: 24px; transform: translateX(10px); }
.card:hover .card-arrow { opacity: 1; background: var(--accent); color: #fff; transform: translateX(0); }

/* ---- Button shimmer effect ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.3) 50%, transparent 100%);
  transition: left 0.6s;
}
.btn-primary:hover::before { left: 100%; }

/* ---- Nav link hover ---- */
.nav-links a { position: relative; }
.nav-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  right: 50%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: left 0.3s, right 0.3s;
}
.nav-links a:hover::before { left: 0; right: 0; }
.nav-links a.active::after { display: none; }
.nav-links a.active::before { left: 0; right: 0; }

/* ---- Lang toggle pop ---- */
.lang-toggle { transition: transform 0.2s, background 0.2s; }
.lang-toggle:active { transform: scale(0.95); }

/* ---- Brand logo subtle scale ---- */
.brand img { transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.brand:hover img { transform: scale(1.05) rotate(-2deg); }

/* ---- WhatsApp pulse ---- */
.wa-float {
  animation: wa-breathing 3s ease-in-out infinite;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.6;
  animation: wa-ripple 2.5s ease-out infinite;
}
@keyframes wa-breathing {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
@keyframes wa-ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.wa-float:hover { animation: none; transform: scale(1.12); }
.wa-float:hover::before { animation: none; opacity: 0; }

/* ---- Hero photo treatment ---- */
.hero-photo-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 120px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #1a3470 100%);
}
.hero-photo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(249,115,22,0.25) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30,58,138,0.5) 0%, transparent 50%);
}
.hero-photo-section .container { position: relative; z-index: 2; }
.hero-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-photo-text { color: #fff; }
.hero-photo-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}
.hero-photo-text .eyebrow .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
.hero-photo-text h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  color: #fff;
}
.hero-photo-text h1 .accent {
  background: linear-gradient(135deg, var(--accent) 0%, #FFB97A 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-photo-text p.lead {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-photo-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-photo-image:hover { transform: perspective(1200px) rotateY(-3deg) rotateX(1deg) scale(1.02); }
.hero-photo-image img { width: 100%; height: auto; display: block; }
.hero-photo-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, transparent 50%, rgba(15,42,92,0.2) 100%);
  pointer-events: none;
}
.hero-photo-image .floating-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.96);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  backdrop-filter: blur(20px);
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-photo-image .floating-card .fc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: grid; place-items: center; color: #fff;
}
.hero-photo-image .floating-card .fc-text strong { display: block; color: var(--primary); font-size: 0.9rem; }
.hero-photo-image .floating-card .fc-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- Section divider with truck icon ---- */
.divider-truck {
  height: 80px;
  position: relative;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.divider-truck::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 30px, transparent 30px 50px);
  transform: translateY(-50%);
}

/* ---- Counter (will be set via JS) ---- */
.counter { display: inline-block; }

/* ---- Responsive globe & route map ---- */
@media (max-width: 960px) {
  .globe-grid { grid-template-columns: 1fr; gap: 40px; }
  #globe-canvas { height: 380px; }
  .hero-photo-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo-image { transform: none; }
  .ports-grid { grid-template-columns: repeat(2, 1fr); }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .ports-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-photo-section { padding: 60px 0 80px; min-height: auto; }
  .hero-photo-image .floating-card { left: 10px; bottom: 10px; padding: 10px 12px; }
}

/* ============================================================
   V2 UPGRADE — Dropdown nav, SVG truck transition, globe labels,
   realistic country map, service detail page styles
   ============================================================ */

/* ---- Dropdown nav ---- */
.nav-links li.has-dropdown { position: relative; }
.nav-links li.has-dropdown > a::after {
  content: '▾';
  margin-left: 4px;
  font-size: 0.7rem;
  opacity: 0.6;
  transition: transform 0.2s;
}
html[dir="rtl"] .nav-links li.has-dropdown > a::after { margin-left: 0; margin-right: 4px; }
.nav-links li.has-dropdown:hover > a::after { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 16px 50px rgba(15, 42, 92, 0.15);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 100;
}
html[dir="rtl"] .dropdown-menu { left: auto; right: 0; }
.nav-links li.has-dropdown:hover .dropdown-menu,
.nav-links li.has-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--text);
  transition: all 0.2s;
}
.dropdown-menu a:hover { background: var(--bg-section); color: var(--primary); }
.dropdown-menu a::before { display: none; }
.dropdown-menu .dd-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--bg-section);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.dropdown-menu .dd-text strong { display: block; color: var(--primary); font-size: 0.92rem; }
.dropdown-menu .dd-text span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- Mobile: convert dropdown to inline ---- */
@media (max-width: 960px) {
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0 0 0 20px;
    min-width: auto;
  }
  html[dir="rtl"] .dropdown-menu { padding: 0 20px 0 0; }
  .dropdown-menu a { padding: 8px 0; }
  .dropdown-menu .dd-icon { display: none; }
  .nav-links li.has-dropdown > a::after { display: none; }
}

/* ---- SVG truck for page transition ---- */
.page-transition .truck-svg {
  position: absolute;
  top: 50%;
  width: 200px;
  height: auto;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 24px rgba(249,115,22,0.5));
  animation: truck-drive 1s cubic-bezier(0.5, 0, 0.5, 1) forwards;
}
.page-transition .truck-svg .wheel { transform-origin: center; animation: wheel-spin 0.25s linear infinite; transform-box: fill-box; }
@keyframes wheel-spin { to { transform: rotate(360deg); } }
.page-transition .motion-line {
  stroke-dasharray: 6 8;
  animation: motion-dash 0.3s linear infinite;
}
@keyframes motion-dash { to { stroke-dashoffset: -28; } }

/* ---- Globe city labels (HTML overlay) ---- */
.globe-labels {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}
.globe-label {
  position: absolute;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 700;
  color: #FFB97A;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0,0,0,0.8), 0 0 4px rgba(0,0,0,0.6);
  transition: opacity 0.2s;
  padding: 2px 6px;
  background: rgba(8, 26, 62, 0.6);
  border-radius: 4px;
  border: 1px solid rgba(249,115,22,0.4);
  backdrop-filter: blur(4px);
}
.globe-label.hq { color: #fff; background: rgba(249, 115, 22, 0.6); border-color: var(--accent); }

/* ---- Globe controls hint ---- */
.globe-hint {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 5;
}
.globe-hint::before {
  content: '✋';
  font-size: 1rem;
}

/* ---- Service detail page styles ---- */
.service-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  overflow: hidden;
}
.service-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(249,115,22,0.2), transparent 60%);
}
.service-hero .container { position: relative; z-index: 2; }
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.service-hero p.lead { font-size: 1.1rem; opacity: 0.92; margin-bottom: 28px; line-height: 1.6; }
.service-hero-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
  transform: perspective(1000px) rotateY(-4deg);
}
.service-hero-img img { width: 100%; height: auto; display: block; }
.service-meta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }
.service-meta-chip {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.service-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  padding: 70px 0;
}
.service-detail h2 { color: var(--primary); font-size: 1.6rem; margin-bottom: 18px; font-weight: 800; }
.service-detail p { color: var(--text-muted); margin-bottom: 16px; font-size: 1.02rem; line-height: 1.75; }
.service-detail ul { list-style: none; padding: 0; margin: 20px 0; }
.service-detail ul li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font-size: 0.98rem;
}
html[dir="rtl"] .service-detail ul li { padding: 10px 32px 10px 0; }
.service-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 18px;
  height: 18px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(249,115,22,0.15);
}
html[dir="rtl"] .service-detail ul li::before { left: auto; right: 0; }
.service-aside { display: flex; flex-direction: column; gap: 18px; }
.service-aside .info-card {
  background: linear-gradient(135deg, var(--bg-soft), #fff);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
}
.service-aside .info-card h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.service-aside .info-card p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }
.service-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
  margin: 40px 0;
}
.service-gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; transition: transform 0.5s; }
.service-gallery img:hover { transform: scale(1.03); }
.service-gallery .main-img { grid-row: span 2; height: 100%; min-height: 280px; }
.service-gallery .sub-img { height: 134px; }

/* Client disclaimer */
.client-disclaimer {
  margin-top: 28px;
  padding: 14px 20px;
  background: rgba(249,115,22,0.05);
  border-left: 3px solid var(--accent);
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
html[dir="rtl"] .client-disclaimer { border-left: none; border-right: 3px solid var(--accent); }

@media (max-width: 960px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .service-hero-img { transform: none; }
  .service-detail { grid-template-columns: 1fr; gap: 30px; padding: 50px 0; }
  .service-gallery { grid-template-columns: 1fr 1fr; }
  .service-gallery .main-img { grid-row: auto; min-height: 200px; }
}
