/* =========================================================
   Roventis — Design System
   ========================================================= */

:root {
  /* Brand colors — chrome / cobalt, matching the Roventis "R" mark */
  --navy-950: #060B1A;
  --navy-900: #0A1330;
  --navy-800: #121F45;
  --navy-700: #182b5c;
  --navy-600: #223d7d;
  --gold-300: #C7D6FF;
  --gold-400: #7FA3F5;
  --gold-500: #3563E0;
  --gold-600: #234BBD;
  --gold-700: #1A3A99;
  --chrome-100: #F4F6FB;
  --chrome-300: #D7DDEA;
  --chrome-500: #9BA8C4;
  --ink: #0E1424;
  --ink-soft: #4B5470;
  --paper: #FFFFFF;
  --paper-soft: #F5F7FC;
  --paper-mute: #EBEEF6;
  --line: #E2E6F0;
  --whatsapp: #25D366;
  --whatsapp-dark: #1DA851;
  --success: #1DA851;
  --danger: #D64545;

  /* Bright accent trio — used alongside blue so sections don't read monochrome */
  --teal-300: #99F6E4;
  --teal-400: #2DD4BF;
  --teal-600: #0D9488;
  --coral-300: #FFC3B0;
  --coral-400: #FB7A5C;
  --coral-600: #E4573A;
  --amber-300: #FDE68A;
  --amber-400: #FBBF24;
  --amber-600: #D97706;

  /* Type */
  --font-ar: 'IBM Plex Sans Arabic', 'Cairo', sans-serif;
  --font-en: 'IBM Plex Sans', 'Inter', sans-serif;

  /* Layout */
  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(15, 30, 61, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 30, 61, 0.10);
  --shadow-lg: 0 20px 60px rgba(15, 30, 61, 0.16);
  --shadow-gold: 0 10px 30px rgba(53, 99, 224, 0.35);

  --ease: cubic-bezier(.22,1,.36,1);
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html[lang="ar"] body { font-family: var(--font-ar); }
html[lang="en"] body { font-family: var(--font-en); }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }

/* Use logical properties so RTL/LTR flips automatically with zero glitches */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-700);
  background: linear-gradient(90deg, rgba(53,99,224,0.14), rgba(53,99,224,0.05));
  border: 1px solid rgba(53,99,224,0.35);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-block-end: 18px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}

h1, .h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; line-height: 1.18; letter-spacing: -0.01em; }
h2, .h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 800; line-height: 1.25; letter-spacing: -0.01em; }
h3, .h3 { font-size: 21px; font-weight: 700; line-height: 1.4; }

.section-head { max-width: 680px; margin-block-end: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.lede { font-size: 18px; color: var(--ink-soft); margin-block-start: 14px; }

.text-muted { color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s ease, color .3s ease, border-color .3s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(53,99,224,0.45); }

.btn-dark {
  background: var(--navy-900);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); background: var(--navy-800); }

.btn-outline {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-3px); }

.btn-outline-dark {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--line);
}
.btn-outline-dark:hover { background: var(--paper-mute); transform: translateY(-3px); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 10px 26px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(37,211,102,0.45); }

.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 500;
  padding-block: 16px;
  transition: padding .35s var(--ease), background .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.navbar.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: var(--shadow-sm);
  padding-block: 10px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 42px; height: 42px; border-radius: 12px; }
.brand-name { font-weight: 800; font-size: 19px; line-height: 1.1; color: var(--navy-950); }
.navbar:not(.scrolled) .brand-name { color: #fff; }
.brand-name small { display: block; font-weight: 500; font-size: 10.5px; opacity: 0.65; letter-spacing: 0.08em; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  position: relative;
  padding-block: 4px;
  transition: color .3s ease;
}
.navbar.scrolled .nav-links a { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  inset-inline-start: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--gold-500);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold-500); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  transition: background .3s ease, border-color .3s ease, color .3s ease, transform .2s ease;
}
.navbar.scrolled .lang-toggle { background: var(--paper-mute); border-color: var(--line); color: var(--navy-900); }
.lang-toggle:hover { transform: translateY(-2px); }
.lang-toggle svg { width: 15px; height: 15px; }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  align-items: center;
  justify-content: center;
  color: #fff;
}
.navbar.scrolled .nav-burger { color: var(--navy-900); border-color: var(--line); background: var(--paper-mute); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block-start: 120px;
  padding-block-end: 90px;
  background: radial-gradient(1100px 620px at 82% -10%, #1c3260 0%, var(--navy-900) 46%, var(--navy-950) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: radial-gradient(rgba(199,214,255,0.16) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  mask-image: radial-gradient(700px 500px at 78% 30%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 500px at 78% 30%, black, transparent 75%);
}
.hero-glow {
  position: absolute;
  width: 620px; height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53,99,224,0.38), rgba(45,212,191,0.18) 45%, transparent 72%);
  filter: blur(10px);
  top: -180px;
  inset-inline-end: -180px;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  inset-block-end: -120px;
  inset-inline-start: -120px;
  width: 480px; height: 480px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.hero-shape::before {
  content: "";
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy p.lede { color: rgba(255,255,255,0.78); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-block-start: 34px; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-block-start: 56px;
  padding-block-start: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
  max-width: 560px;
}
.hero-stat b { display: block; font-size: 26px; font-weight: 800; color: var(--gold-300); }
.hero-stat span { font-size: 13.5px; color: rgba(255,255,255,0.68); }
.hero-stat:nth-child(2) b { color: var(--teal-300); }
.hero-stat:nth-child(3) b { color: var(--coral-300); }

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.hero-card-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-card-icon svg { width: 22px; height: 22px; color: var(--navy-950); }
.hero-card-row:nth-of-type(2) .hero-card-icon { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); }
.hero-card-row:nth-of-type(3) .hero-card-icon { background: linear-gradient(135deg, var(--coral-400), var(--coral-600)); }
.hero-card-row h4 { font-size: 15.5px; font-weight: 700; margin-block-end: 4px; }
.hero-card-row p { font-size: 13.5px; color: rgba(255,255,255,0.68); line-height: 1.6; }

/* ---------- Logos / trust strip ---------- */
.trust-strip {
  background: var(--paper-soft);
  padding-block: 26px;
  border-bottom: 1px solid var(--line);
}
.trust-strip .container { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.trust-item svg { width: 18px; height: 18px; color: var(--gold-600); flex-shrink: 0; }
.trust-item:nth-child(2) svg { color: var(--teal-600); }
.trust-item:nth-child(3) svg { color: var(--coral-600); }
.trust-item:nth-child(4) svg { color: var(--amber-600); }

/* ---------- Generic section spacing ---------- */
.section { padding-block: 110px; }
.section-tight { padding-block: 80px; }
.bg-soft { background: var(--paper-soft); }
.bg-navy { background: linear-gradient(160deg, var(--navy-900), var(--navy-950)); color: #fff; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-950));
  aspect-ratio: 4/5;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.about-visual .pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .6;
}
.about-badge { position: relative; display: inline-flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 10px 16px; border-radius: var(--radius-pill); font-size: 13px; font-weight: 700; width: fit-content; }
.about-visual .big-num { position: relative; font-size: 64px; font-weight: 800; color: var(--gold-300); line-height: 1; }
.about-visual .big-num + p { position: relative; margin-block-start: 10px; color: rgba(255,255,255,0.75); font-size: 15px; max-width: 280px; }

.feature-list { display: grid; gap: 22px; margin-block-start: 28px; }
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-ico {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(53,99,224,0.18), rgba(53,99,224,0.06));
  border: 1px solid rgba(53,99,224,0.3);
  display: flex; align-items: center; justify-content: center;
}
.feature-ico svg { width: 22px; height: 22px; color: var(--gold-700); }
.feature-item h4 { font-size: 16.5px; font-weight: 700; margin-block-end: 4px; }
.feature-item p { font-size: 14.5px; color: var(--ink-soft); }
.feature-item:nth-child(2) .feature-ico { background: linear-gradient(135deg, rgba(45,212,191,0.2), rgba(45,212,191,0.06)); border-color: rgba(45,212,191,0.35); }
.feature-item:nth-child(2) .feature-ico svg { color: var(--teal-600); }
.feature-item:nth-child(3) .feature-ico { background: linear-gradient(135deg, rgba(251,122,92,0.2), rgba(251,122,92,0.06)); border-color: rgba(251,122,92,0.35); }
.feature-item:nth-child(3) .feature-ico svg { color: var(--coral-600); }
.feature-item:nth-child(4) .feature-ico { background: linear-gradient(135deg, rgba(251,191,36,0.22), rgba(251,191,36,0.07)); border-color: rgba(251,191,36,0.4); }
.feature-item:nth-child(4) .feature-ico svg { color: var(--amber-600); }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute; inset-inline-start: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(var(--gold-400), var(--gold-600));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease);
}
.service-card:nth-child(2)::before { background: linear-gradient(var(--teal-400), var(--teal-600)); }
.service-card:nth-child(3)::before { background: linear-gradient(var(--coral-400), var(--coral-600)); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-ico {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  display: flex; align-items: center; justify-content: center;
  margin-block-end: 22px;
}
.service-ico svg { width: 27px; height: 27px; color: #fff; }
.service-card:nth-child(2) .service-ico { background: linear-gradient(135deg, var(--teal-400), var(--teal-600)); }
.service-card:nth-child(3) .service-ico { background: linear-gradient(135deg, var(--coral-400), var(--coral-600)); }
.service-card h3 { margin-block-end: 12px; }
.service-card p { color: var(--ink-soft); font-size: 15px; margin-block-end: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.service-tags span {
  font-size: 12.5px; font-weight: 600; color: var(--navy-800);
  background: var(--paper-mute); padding: 6px 12px; border-radius: var(--radius-pill);
}

/* ---------- Process ---------- */
.process-tabs { display: flex; gap: 10px; margin-block-end: 44px; flex-wrap: wrap; }
.process-tab {
  padding: 12px 22px; border-radius: var(--radius-pill);
  background: var(--paper-mute); font-weight: 700; font-size: 14.5px;
  border: 1px solid transparent; color: var(--ink-soft);
  transition: all .3s ease;
}
.process-tab.active { background: var(--navy-950); color: #fff; box-shadow: var(--shadow-md); }
.process-panel { display: none; }
.process-panel.active { display: block; animation: fadeUp .5s var(--ease); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px 22px; position: relative;
}
.process-step .num {
  width: 38px; height: 38px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-950); font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
  margin-block-end: 16px;
}
.process-step h4 { font-size: 15.5px; font-weight: 700; margin-block-end: 8px; }
.process-step p { font-size: 13.5px; color: var(--ink-soft); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Careers ---------- */
.careers-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-block-end: 34px;
  padding: 18px 22px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.careers-filters { display: flex; gap: 10px; flex-wrap: wrap; }
.select-wrap { position: relative; }
.select-wrap select {
  appearance: none; -webkit-appearance: none;
  padding: 11px 38px 11px 16px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--paper-soft);
  font-weight: 600; font-size: 14px; color: var(--ink); min-width: 160px;
}
html[dir="rtl"] .select-wrap select { padding: 11px 16px 11px 38px; }
.select-wrap svg { position: absolute; inset-inline-end: 14px; top: 50%; transform: translateY(-50%); width: 14px; height: 14px; pointer-events: none; color: var(--ink-soft); }
.careers-count { font-size: 14px; color: var(--ink-soft); font-weight: 600; }
.careers-count b { color: var(--navy-950); }

.jobs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; min-height: 140px; }
.job-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.job-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.job-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; margin-block-end: 14px; }
.job-badge {
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(29,168,81,0.1); color: var(--success); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px;
}
.job-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.job-card h3 { margin-block-end: 6px; }
.job-dept { font-size: 13.5px; color: var(--gold-700); font-weight: 700; margin-block-end: 14px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-block-end: 16px; }
.job-meta span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--paper-mute); padding: 6px 11px; border-radius: var(--radius-pill);
}
.job-meta svg { width: 13px; height: 13px; }
.job-desc { font-size: 14px; color: var(--ink-soft); margin-block-end: 20px; flex-grow: 1; }
.job-card-actions { display: flex; gap: 10px; margin-block-start: auto; }

.empty-state, .loading-state {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: var(--ink-soft);
}
.empty-state svg, .loading-state svg { width: 46px; height: 46px; margin-block-end: 16px; color: var(--gold-500); }
.spinner {
  width: 30px; height: 30px; border-radius: 50%;
  border: 3px solid var(--paper-mute); border-top-color: var(--gold-500);
  margin-inline: auto; margin-block-end: 16px;
  animation: spin .8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  padding: 64px 50px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
  color: #fff;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(199,214,255,0.14) 1.4px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: radial-gradient(500px 300px at 85% 20%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(500px 300px at 85% 20%, black, transparent 75%);
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { max-width: 480px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.contact-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; display: flex; gap: 18px; align-items: flex-start;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card .ico {
  width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
}
.contact-card .ico svg { width: 23px; height: 23px; color: var(--gold-300); }
.contact-card h4 { font-size: 16px; margin-block-end: 6px; }
.contact-card p { font-size: 14.5px; color: var(--ink-soft); }
.contact-card a.link { color: var(--gold-700); font-weight: 700; font-size: 14.5px; display: inline-block; margin-block-start: 8px; }

.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-block-start: 26px; height: 320px; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: rgba(255,255,255,0.75); padding-block-start: 76px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-block-end: 50px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-block-end: 18px; }
.footer-brand img { width: 40px; height: 40px; border-radius: 11px; }
.footer-brand b { color: #fff; font-size: 18px; }
.footer p.desc { font-size: 14px; line-height: 1.8; max-width: 300px; }
.footer h5 { color: #fff; font-size: 14.5px; font-weight: 700; margin-block-end: 18px; }
.footer ul li { margin-block-end: 12px; }
.footer ul li a { font-size: 14px; transition: color .25s ease; }
.footer ul li a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-block: 24px; font-size: 13px; color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14);
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--gold-500); border-color: var(--gold-500); color: var(--navy-950); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  inset-block-end: 26px;
  inset-inline-end: 26px;
  z-index: 600;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.5);
  animation: floatPulse 2.6s ease-in-out infinite;
}
.wa-float svg { width: 28px; height: 28px; color: #fff; }
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 12px 40px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.12); }
}

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--navy-950); color: #fff; padding: 14px 26px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 600; box-shadow: var(--shadow-lg); z-index: 900;
  opacity: 0; pointer-events: none; transition: all .4s var(--ease);
  display: flex; align-items: center; gap: 10px;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast svg { width: 18px; height: 18px; color: var(--gold-400); flex-shrink: 0; }

/* ---------- Mobile nav drawer ---------- */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 800;
  background: var(--navy-950);
  display: flex; flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform .45s var(--ease);
}
.mobile-drawer.open { transform: translateY(0); }
.mobile-drawer-top { display: flex; align-items: center; justify-content: space-between; margin-block-end: 50px; }
.mobile-drawer-close {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.1);
  color: #fff; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.2);
}
.mobile-drawer nav { display: flex; flex-direction: column; gap: 6px; }
.mobile-drawer nav a { font-size: 24px; font-weight: 700; color: #fff; padding-block: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-drawer-foot { margin-block-start: auto; display: flex; flex-direction: column; gap: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .brand-name small { display: none; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .jobs-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding-block: 76px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 26px; flex-direction: column; align-items: flex-start; }
  .careers-toolbar { flex-direction: column; align-items: stretch; }
  .careers-filters { flex-direction: column; }
  .select-wrap select { width: 100%; }
  .wa-float { width: 54px; height: 54px; inset-block-end: 18px; inset-inline-end: 18px; }
  .nav-actions { gap: 8px; }
  #navCta { display: none; }
  .lang-toggle span { display: none; }
  .lang-toggle { padding: 9px 11px; }
  .brand-name { font-size: 16px; }
}
@media (max-width: 360px) {
  .brand-name { display: none; }
}

/* Language-loading guard: prevents any flash before JS applies translations */
html:not([data-i18n-ready]) body { visibility: hidden; }
