:root {
  --navy: #0B1F3A;
  --blue: #2F6FED;
  --mint: #35D0BA;
  --bg: #F7F9FC;
  --white: #FFFFFF;
  --slate: #445068;
  --slate-light: #7C8AA5;
  --border: #E2E8F2;
  --radius: 14px;
  --maxw: 1140px;
  --font-display: 'Sora', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--bg);
  line-height: 1.6;
}

[dir="rtl"] body { direction: rtl; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.2;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

img, svg { max-width: 100%; display: block; }

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

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}

.nav-links a:hover { color: var(--blue); text-decoration: none; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-select {
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
}

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background: linear-gradient(120deg, var(--blue), var(--mint));
  color: var(--white);
}

.btn-primary:hover { opacity: 0.92; text-decoration: none; }

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--navy);
  color: var(--navy);
}

.btn-ghost:hover { background: var(--navy); color: var(--white); text-decoration: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--navy);
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 100px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-lede {
  font-size: 1.15rem;
  color: var(--slate);
  max-width: 46ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  height: 340px;
  border-radius: 20px;
  background: var(--navy);
  overflow: hidden;
}

.route-svg { width: 100%; height: 100%; }

/* Route / waypoint signature */
.route-track {
  position: relative;
  padding: 60px 0 20px;
}

.route-line {
  position: absolute;
  top: 108px;
  left: 0;
  right: 0;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--border) 0 10px, transparent 10px 18px);
  z-index: 0;
}

.route-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.waypoint-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  position: relative;
}

.waypoint-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--blue), var(--mint));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.waypoint-card h3 { margin-bottom: 8px; }

.waypoint-card p { font-size: 0.92rem; color: var(--slate-light); margin: 0; }

/* Sections */
section { padding: 80px 0; }

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

[dir="ltr"] .section-head { margin: 0 0 48px; text-align: left; }

.section-head p { color: var(--slate-light); font-size: 1.05rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

a.card {
  display: block;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

a.card:hover {
  text-decoration: none;
  border-color: var(--blue);
  transform: translateY(-2px);
}

a.card p { color: var(--slate-light); }

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.card-list li {
  padding-left: 26px;
  position: relative;
  color: var(--slate);
}

[dir="rtl"] .card-list li { padding-left: 0; padding-right: 26px; }

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
}

[dir="rtl"] .card-list li::before { left: auto; right: 0; }

/* Product spotlight */
.spotlight {
  background: var(--navy);
  border-radius: 24px;
  padding: 56px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.spotlight h2, .spotlight p { color: var(--white); }
.spotlight p { color: #C9D3E8; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

form { display: grid; gap: 16px; }

label { font-weight: 600; color: var(--navy); font-size: 0.92rem; }

input, textarea, select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--slate);
}

textarea { min-height: 120px; resize: vertical; }

/* Footer */
footer {
  background: var(--navy);
  color: #C9D3E8;
  padding: 50px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

footer h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 14px; }

footer a { color: #C9D3E8; }
footer a:hover { color: var(--mint); }

.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  font-size: 0.82rem;
  color: #8FA0C2;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.22);
}

[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }

.whatsapp-float svg { width: 30px; height: 30px; }

/* Utility */
.center { text-align: center; }
.mt-lg { margin-top: 48px; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero .container { grid-template-columns: 1fr; }
  .route-grid { grid-template-columns: 1fr 1fr; }
  .route-line { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .spotlight { grid-template-columns: 1fr; text-align: center; padding: 40px 26px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 520px) {
  .route-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

:focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 2px;
}
