/* ============================================================
   Shati Cargo — style.css
   Dark luxury theme · gold/copper accents · RTL-first (logical props)
   ============================================================ */

:root {
  --bg0: #050d1a;
  --bg1: #08162c;
  --bg2: #0c1f3d;
  --bg3: #102950;
  --card: rgba(255, 255, 255, 0.04);
  --card-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(244, 247, 252, 0.09);
  --line-gold: rgba(94, 143, 242, 0.32);

  --ink: #f4f7fc;
  --mut: #9aa6be;
  --mut2: #77839c;

  /* accent = vivid blue (Ocean Crown palette reference) */
  --gold: #2e7ff0;
  --gold-2: #8db9ff;
  --gold-3: #1b5fc4;
  --gold-grad: linear-gradient(135deg, #5fa8ff 0%, #2168d8 52%, #123e8c 100%);
  --gold-text-grad: linear-gradient(120deg, #b9d4ff, #2e7ff0 60%, #69a5ff);

  --wa: #2bd46b;
  --wa-deep: #128c4a;
  --danger: #e0725f;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px -18px rgba(0, 0, 0, 0.65);
  --header-h: 74px;

  --font: "Cairo", "Segoe UI", Tahoma, "Helvetica Neue", Arial, sans-serif;
  --tr: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  font-family: var(--font);
  background: var(--bg1);
  color: var(--ink);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
input, select, textarea, button { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul, ol { padding: 0; list-style: none; }
h1, h2, h3, h4 { line-height: 1.35; font-weight: 800; }
::selection { background: rgba(46, 127, 240, 0.35); color: #fff; }

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; border-radius: 4px; }

.container { width: min(1200px, 100% - 40px); margin-inline: auto; }

.skip-link {
  position: fixed; inset-inline-start: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: #ffffff; font-weight: 700;
  padding: 10px 18px; border-radius: 0 0 12px 12px; transition: top var(--tr);
}
.skip-link:focus { top: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  transition: transform var(--tr), box-shadow var(--tr), filter var(--tr), background var(--tr), border-color var(--tr);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-gold {
  background: var(--gold-grad); color: #ffffff;
  box-shadow: 0 10px 26px -10px rgba(46, 127, 240, 0.55);
}
.btn-gold:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(46, 127, 240, 0.6); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.03); border-color: var(--line-gold); color: var(--ink);
}
.btn-ghost:hover { background: rgba(46, 127, 240, 0.12); border-color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 9px 18px; font-size: 0.92rem; }
.btn-lg { padding: 15px 32px; font-size: 1.06rem; }
.btn .icon { width: 20px; height: 20px; }
.btn .icon.wa { color: #1c5c37; }
.btn-ghost .icon.wa { color: var(--wa); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 100;
  height: var(--header-h);
  transition: background var(--tr), box-shadow var(--tr), border-color var(--tr);
  border-block-end: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(8, 13, 27, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block-end-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 46px; width: auto; }
.brand-wordmark b { font-size: 1.35rem; font-weight: 900; letter-spacing: 1.5px; }
.brand-wordmark .gold { color: var(--gold); }
.brand-wordmark small { display: block; font-size: 0.62rem; letter-spacing: 3.5px; color: var(--mut); margin-top: -4px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; padding: 8px 12px; font-weight: 600; font-size: 0.98rem;
  color: var(--mut); border-radius: 8px; transition: color var(--tr), background var(--tr);
}
.nav-link::after {
  content: ""; position: absolute; inset-inline: 12px; bottom: 2px; height: 2px;
  background: var(--gold-grad); border-radius: 2px;
  transform: scaleX(0); transform-origin: center; transition: transform var(--tr);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }
.nav-cta { margin-inline-start: 10px; }

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

/* Language switch */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  color: var(--ink); padding: 8px 14px; border-radius: 999px; cursor: pointer;
  font-weight: 600; font-size: 0.95rem; transition: border-color var(--tr), background var(--tr);
}
.lang-btn:hover { border-color: var(--line-gold); background: rgba(46, 127, 240, 0.08); }
.lang-btn .icon { width: 18px; height: 18px; color: var(--gold-2); }
.lang-btn .chev { width: 14px; height: 14px; transition: transform var(--tr); }
.lang-switch.open .chev { transform: rotate(180deg); }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 10px);
  min-width: 160px; background: #0d1526; border: 1px solid var(--line);
  border-radius: 14px; padding: 6px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu li {
  padding: 10px 14px; border-radius: 9px; cursor: pointer; font-weight: 600;
  color: var(--mut); transition: background var(--tr), color var(--tr);
}
.lang-menu li:hover { background: rgba(46, 127, 240, 0.12); color: var(--ink); }
.lang-menu li[aria-selected="true"] { color: var(--gold-2); background: rgba(46, 127, 240, 0.1); }
.lang-menu li[aria-selected="true"]::after { content: "✓"; float: inline-end; }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line);
  border-radius: 12px; cursor: pointer;
}
.burger span { display: block; height: 2px; border-radius: 2px; background: var(--ink); transition: transform var(--tr), opacity var(--tr); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset-block-start: var(--header-h); inset-inline: 0; z-index: 99;
  background: rgba(8, 13, 27, 0.97); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-block-end: 1px solid var(--line);
  padding: 18px 20px 26px; transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.mobile-nav { display: flex; flex-direction: column; }
.m-link {
  padding: 13px 10px; font-weight: 700; font-size: 1.06rem; color: var(--mut);
  border-block-end: 1px solid var(--line); transition: color var(--tr), padding-inline-start var(--tr);
}
.m-link:last-child { border-block-end: none; }
.m-link:hover { color: var(--gold-2); padding-inline-start: 18px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center; text-align: center;
  padding: calc(var(--header-h) + 56px) 0 90px;
  background:
    radial-gradient(1100px 520px at 50% -8%, rgba(32, 45, 92, 0.55), transparent 62%),
    linear-gradient(180deg, #0b1226 0%, var(--bg1) 58%, var(--bg1) 100%);
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(5, 13, 26, 0.84) 0%, rgba(8, 22, 44, 0.66) 45%, rgba(8, 22, 44, 0.94) 100%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.hero-glow.g1 { width: 480px; height: 480px; background: rgba(46, 127, 240, 0.13); inset-block-start: -140px; inset-inline-end: -120px; }
.hero-glow.g2 { width: 420px; height: 420px; background: rgba(46, 72, 150, 0.35); inset-block-end: -160px; inset-inline-start: -130px; }
.dot-map {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(46, 127, 240, 0.20) 1.1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 42%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 42%, #000 0%, transparent 75%);
  opacity: 0.55;
}
.route-line { position: absolute; inset-inline: 0; inset-block-start: 12%; opacity: 0.5; }
.route-line svg { width: 100%; height: 340px; }
.route-line .route {
  stroke: url(#routeGrad); stroke: rgba(46, 127, 240, 0.4); stroke-width: 1.6;
  stroke-dasharray: 7 9; animation: dashMove 26s linear infinite;
}
.route-dot { fill: var(--gold-2); animation: dotPulse 2.6s ease-in-out infinite; }
.route-dot.d2 { animation-delay: 0.9s; }
.route-dot.d3 { animation-delay: 1.8s; }
@keyframes dashMove { to { stroke-dashoffset: -320; } }
@keyframes dotPulse { 0%, 100% { opacity: 0.35; r: 4; } 50% { opacity: 1; r: 6.5; } }

.hero-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 26px; }

/* ---------- إشعار الشحنة القادمة (Next-shipment notice) ----------
   البيانات: assets/js/shipment-notice.js — لا حاجة لتعديل هذا القسم.  */
.ship-notice {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  max-width: 100%; padding: 12px 34px 14px;
  border: 1px solid var(--line-gold); border-radius: 999px;
  background: linear-gradient(140deg, rgba(46, 127, 240, 0.22), rgba(10, 22, 44, 0.62));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 12px 34px -18px rgba(46, 127, 240, 0.60);
  animation: shipBreathe 4.4s ease-in-out infinite;
}
.ship-notice[hidden] { display: none; }
.ship-notice-date {
  color: #ffffff; font-weight: 900; line-height: 1.16; letter-spacing: 0.3px;
  font-size: clamp(1.8rem, 5vw, 2.9rem);
  animation: shipGlow 4.4s ease-in-out infinite; /* نبض ضوئي هادئ */
}
.ship-notice-route {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  color: #dbe7fb; font-weight: 700; text-align: center;
  font-size: clamp(0.82rem, 1.8vw, 0.98rem); line-height: 1.5;
}
[dir="ltr"] .ship-notice-route { letter-spacing: 1px; }
.ship-notice-route::before, .ship-notice-route::after {
  content: ""; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold-2); box-shadow: 0 0 10px 2px rgba(141, 185, 255, 0.70);
  animation: shipDot 4.4s ease-in-out infinite;
}
.ship-notice-soon {
  color: #ffffff; font-weight: 800; text-align: center;
  font-size: clamp(1rem, 2.6vw, 1.28rem); padding: 4px 0; line-height: 1.5;
}
/* حركة ضوء عابرة تلفت الانتباه من دون وميض */
.ship-notice-sheen {
  position: absolute; inset-block: -25%; inset-inline-start: 0; width: 36%; z-index: 1;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-16deg) translateX(-200%);
  animation: shipSheen 5.6s ease-in-out infinite;
  pointer-events: none;
}
.ship-notice.is-soon .ship-notice-sheen { display: none; }

@keyframes shipGlow {
  0%, 100% { text-shadow: 0 0 12px rgba(255, 255, 255, 0.20), 0 0 34px rgba(46, 127, 240, 0.28); }
  50%      { text-shadow: 0 0 20px rgba(255, 255, 255, 0.42), 0 0 62px rgba(46, 127, 240, 0.55); }
}
@keyframes shipBreathe {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10), 0 12px 34px -18px rgba(46, 127, 240, 0.50); }
  50%      { box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 18px 46px -16px rgba(46, 127, 240, 0.85); }
}
@keyframes shipSheen {
  0%        { transform: skewX(-16deg) translateX(-200%); }
  45%, 100% { transform: skewX(-16deg) translateX(360%); }
}
@keyframes shipDot { 0%, 100% { opacity: 0.55; } 50% { opacity: 1; } }

.hero-title { font-size: clamp(2.1rem, 5.4vw, 3.9rem); font-weight: 900; max-width: 900px; }
.grad {
  background: var(--gold-text-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lead { font-size: clamp(1.05rem, 2.2vw, 1.3rem); color: var(--mut); max-width: 760px; font-weight: 500; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 14px; margin-top: 26px; width: min(880px, 100%);
}
.stat-chip {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 10px 10px; transition: transform var(--tr), border-color var(--tr);
  display: flex; flex-direction: column;
}
.stat-chip:hover { transform: translateY(-3px); border-color: var(--line-gold); }
.stat-chip b { display: block; font-size: 1.28rem; font-weight: 900; color: var(--gold-2); }
.stat-chip span { font-size: 0.86rem; color: var(--mut); }
/* إطار مربع تمامًا: العرض = الطول (نسبة 1:1 على الحاوية الخارجية)،
   والصورة تملؤه بقص متوازن من المنتصف دون تمديد أو تشويه.        */
.stat-photo-frame {
  position: relative; display: block; width: 100%;
  aspect-ratio: 1 / 1;               /* الحاوية الخارجية مربعة */
  overflow: hidden; border-radius: 10px;
  border: 1px solid var(--line); margin-top: 11px;
  background: var(--card);
}
.stat-photo {
  position: absolute; inset: 0;      /* تملأ الإطار كاملًا */
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;  /* قص متوازن من المنتصف */
  border: 0; border-radius: 0; margin: 0;
}

.scroll-hint {
  position: absolute; inset-block-end: 26px; inset-inline-start: 50%; transform: translateX(-50%);
  width: 26px; height: 44px; border: 2px solid var(--line-gold); border-radius: 14px; z-index: 2;
}
[dir="ltr"] .scroll-hint { transform: translateX(50%); }
.scroll-hint span {
  position: absolute; inset-inline-start: 50%; top: 8px; width: 4px; height: 9px;
  background: var(--gold-2); border-radius: 3px; transform: translateX(-50%);
  animation: hintDrop 1.8s ease-in-out infinite;
}
@keyframes hintDrop { 0% { top: 8px; opacity: 1; } 70% { top: 24px; opacity: 0; } 100% { top: 8px; opacity: 0; } }

/* ---------- Sections ---------- */
.section { padding: 96px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0) 30%), var(--bg2); }
.section-alt::before { content: ""; position: absolute; inset-block-start: 0; inset-inline: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-gold), transparent); }
.section-alt::after { content: ""; position: absolute; inset-block-end: 0; inset-inline: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--line-gold), transparent); }

.sec-head { text-align: center; max-width: 800px; margin: 0 auto 54px; }
.sec-kicker { color: var(--gold); font-weight: 800; letter-spacing: 1.2px; font-size: 0.95rem; margin-bottom: 10px; }
.sec-title { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.sec-lead { color: var(--mut); margin-top: 14px; font-size: 1.08rem; }
.sec-rule {
  width: 84px; height: 3px; margin: 22px auto 0; border-radius: 3px;
  background: var(--gold-grad); position: relative;
}
.sec-rule::after {
  content: ""; position: absolute; inset-inline-start: 50%; top: 50%;
  width: 9px; height: 9px; border-radius: 50%; background: var(--gold-2);
  transform: translate(-50%, -50%); box-shadow: 0 0 0 4px var(--bg1);
}
.section-alt .sec-rule::after { box-shadow: 0 0 0 4px var(--bg2); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px; align-items: start; }
.about-text .lead { font-size: 1.14rem; }
.about-text p { color: #cfd7e6; margin-bottom: 18px; }
.about-text p b { color: var(--gold-2); font-weight: 800; }
.value-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.value-chips li {
  padding: 8px 18px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  background: rgba(46, 127, 240, 0.1); border: 1px solid var(--line-gold); color: var(--gold-2);
}
.about-card {
  background: linear-gradient(160deg, var(--card-strong), var(--card));
  border: 1px solid var(--line-gold); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow); position: sticky; top: calc(var(--header-h) + 20px);
}
.about-card h3 { color: var(--gold-2); margin-bottom: 16px; font-size: 1.2rem; }
.fact-list div { display: flex; gap: 12px; padding: 11px 0; border-block-end: 1px dashed var(--line); }
.fact-list div:last-child { border-block-end: 0; }
.fact-list dt { color: var(--mut); font-weight: 700; min-width: 108px; flex-shrink: 0; }
.fact-list dd { font-weight: 600; }

/* ---------- Cards grid ---------- */
.cards-grid { display: grid; gap: 20px; }
.services-grid { grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }
.why-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px;
  transition: transform var(--tr), border-color var(--tr), background var(--tr), box-shadow var(--tr);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset-inline: 0; top: 0; height: 2px;
  background: var(--gold-grad); opacity: 0; transition: opacity var(--tr);
}
.card:hover { transform: translateY(-5px); border-color: var(--line-gold); background: var(--card-strong); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.card p { color: var(--mut); font-size: 0.97rem; }

.card-img { margin: -26px -24px 16px; height: 148px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.045); }

.card-ic {
  width: 54px; height: 54px; border-radius: 15px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: rgba(46, 127, 240, 0.12); border: 1px solid var(--line-gold);
  color: var(--gold-2);
}
.card-ic svg { width: 27px; height: 27px; }

.card.value { padding-top: 30px; }
.card.value h3 { color: var(--gold-2); font-size: 1.2rem; }
.v-icon {
  display: grid; place-items: center; width: 58px; height: 58px; border-radius: 16px;
  margin: -4px 0 16px;
  background: rgba(46, 127, 240, 0.12); border: 1px solid var(--line-gold); color: var(--gold-2);
}
.v-icon svg { width: 30px; height: 30px; }
.v-num {
  position: absolute; inset-block-start: 14px; inset-inline-end: 20px;
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(46, 127, 240, 0.4);
}

/* Why-us quote strip */
.why-quote { text-align: center; margin: 46px auto 0; max-width: 720px; }
.why-quote p {
  font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 800;
  background: var(--gold-text-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative; padding: 22px 10px;
}
.why-quote p::before, .why-quote p::after {
  content: ""; position: absolute; height: 1px; width: 120px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  inset-inline-start: 50%; transform: translateX(-50%);
}
.why-quote p::before { top: 0; }
.why-quote p::after { bottom: 0; }

/* Corridor banner */
.corridor { margin-top: 44px; }
.corridor-inner {
  display: flex; align-items: center; justify-content: center; gap: 26px; text-align: center;
  background: linear-gradient(135deg, rgba(46, 127, 240, 0.1), rgba(46, 127, 240, 0.03));
  border: 1px solid var(--line-gold); border-radius: var(--radius);
  padding: 28px 30px; position: relative; overflow: hidden;
}
.c-flag { font-size: 2.1rem; filter: drop-shadow(0 4px 10px rgba(0,0,0,.5)); }
.c-txt b { display: block; color: var(--gold-2); font-size: 1.12rem; }
.c-txt span { color: var(--mut); font-size: 1rem; }
.corridor-line { display: flex; justify-content: center; gap: 34px; margin-top: 14px; font-size: 1.5rem; opacity: 0.85; }
.corridor-motto { text-align: center; margin-top: 20px; font-style: italic; font-weight: 700; color: var(--gold-2); font-size: 1.06rem; }
.c-plane { animation: floatY 3s ease-in-out infinite; display: inline-block; }
.c-ship { animation: floatY 3s ease-in-out infinite 1.4s; display: inline-block; }
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before {
  content: ""; position: absolute; inset-block: 12px; inset-inline-start: 23px; width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 8%, var(--gold) 92%, transparent);
  opacity: 0.5;
}
.t-item { position: relative; padding-inline-start: 76px; padding-block: 17px; }
.t-dot {
  position: absolute; inset-inline-start: 0; top: 22px;
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--bg3); border: 1.6px solid var(--gold);
  color: var(--gold-2); font-weight: 900; font-size: 1.15rem;
  box-shadow: 0 0 0 6px rgba(46, 127, 240, 0.08);
}
.t-body {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 22px; transition: border-color var(--tr), background var(--tr), transform var(--tr);
}
.t-item:hover .t-body { border-color: var(--line-gold); background: var(--card-strong); transform: translateY(-2px); }
.t-body h3 { color: var(--gold-2); font-size: 1.1rem; margin-bottom: 5px; }
.t-body p { color: var(--mut); font-size: 0.98rem; }

/* ---------- Gallery ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 34px; }
.g-filter {
  padding: 9px 22px; border-radius: 999px; cursor: pointer; font-weight: 700; font-size: 0.95rem;
  background: var(--card); color: var(--mut); border: 1px solid var(--line);
  transition: all var(--tr);
}
.g-filter:hover { border-color: var(--line-gold); color: var(--ink); }
.g-filter.active { background: var(--gold-grad); color: #ffffff; border-color: transparent; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.g-item {
  position: relative; border-radius: var(--radius-sm); overflow: hidden; cursor: zoom-in;
  border: 1px solid var(--line); aspect-ratio: 4 / 5; background: var(--bg3);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr);
}
.g-item:hover { transform: translateY(-4px); border-color: var(--line-gold); box-shadow: var(--shadow); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.05); }
.g-cap {
  position: absolute; inset-inline: 0; bottom: 0; padding: 34px 14px 12px;
  font-size: 0.85rem; font-weight: 600; color: #fff; text-align: center;
  background: linear-gradient(180deg, transparent, rgba(4, 7, 14, 0.88));
  opacity: 0; transition: opacity var(--tr);
}
.g-item:hover .g-cap, .g-item:focus-visible .g-cap { opacity: 1; }
.gallery-note { text-align: center; color: var(--mut2); font-size: 0.94rem; margin-top: 26px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(4, 7, 13, 0.94); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 30px;
}
.lightbox[hidden] { display: none; }
.lb-figure { max-width: min(860px, 92vw); text-align: center; }
.lb-figure img { max-height: 80vh; max-width: 100%; width: auto; margin-inline: auto; border-radius: 12px; box-shadow: var(--shadow); }
.lb-figure figcaption { margin-top: 14px; color: var(--mut); font-size: 0.98rem; padding-inline: 30px; }
.lb-close, .lb-nav {
  position: absolute; width: 48px; height: 48px; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, 0.06); border: 1px solid var(--line-gold); color: var(--gold-2);
  font-size: 1.35rem; line-height: 1; display: grid; place-items: center;
  transition: background var(--tr), transform var(--tr);
}
.lb-close:hover, .lb-nav:hover { background: rgba(46, 127, 240, 0.2); transform: scale(1.06); }
.lb-close { top: 20px; inset-inline-end: 20px; }
.lb-prev { inset-inline-start: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { inset-inline-end: 18px; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.06); }
.lb-next:hover { transform: translateY(-50%) scale(1.06); }

/* ---------- Quote form ---------- */
.quote-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
.quote-form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.f-field { display: flex; flex-direction: column; gap: 7px; }
.f-field label { font-weight: 700; font-size: 0.98rem; }
.req { color: var(--gold-2); }
.f-field input, .f-field select, .f-field textarea {
  background: rgba(255, 255, 255, 0.045); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 13px 16px; color: var(--ink);
  transition: border-color var(--tr), box-shadow var(--tr), background var(--tr);
  width: 100%;
}
.f-field textarea { resize: vertical; min-height: 110px; }
.f-field input::placeholder, .f-field textarea::placeholder { color: var(--mut2); }
.f-field input:focus, .f-field select:focus, .f-field textarea:focus {
  outline: none; border-color: var(--gold); background: rgba(46, 127, 240, 0.05);
  box-shadow: 0 0 0 4px rgba(46, 127, 240, 0.12);
}
.f-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold-2) 50%), linear-gradient(135deg, var(--gold-2) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; padding-inline-end: 40px; }
[dir="rtl"] .f-field select { background-position: 21px 50%, 15px 50%; }
.f-field select option { background: #0d1526; color: var(--ink); }
.f-field.invalid input, .f-field.invalid select { border-color: var(--danger); box-shadow: 0 0 0 4px rgba(224, 114, 95, 0.1); }
.f-err { color: var(--danger); font-size: 0.85rem; font-weight: 600; min-height: 0; display: none; }
.f-field.invalid .f-err { display: block; }
.f-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.f-note { color: var(--mut2); font-size: 0.88rem; }
.f-success {
  background: rgba(43, 212, 107, 0.1); border: 1px solid rgba(43, 212, 107, 0.4);
  color: #7fe6a8; padding: 13px 16px; border-radius: var(--radius-sm); font-weight: 600; font-size: 0.95rem;
}

.quote-side {
  background: linear-gradient(165deg, rgba(46, 127, 240, 0.13), rgba(46, 127, 240, 0.03));
  border: 1px solid var(--line-gold); border-radius: var(--radius);
  padding: 30px 28px; position: sticky; top: calc(var(--header-h) + 20px);
}
.quote-side h3 { color: var(--gold-2); margin-bottom: 18px; font-size: 1.18rem; }
.check-list li { position: relative; padding-inline-start: 30px; margin-bottom: 13px; color: #d4dbe9; }
.check-list li::before {
  content: "✓"; position: absolute; inset-inline-start: 0; top: 0;
  width: 21px; height: 21px; border-radius: 50%; font-size: 0.75rem;
  background: rgba(46, 127, 240, 0.18); color: var(--gold-2);
  display: grid; place-items: center; font-weight: 900;
}
.side-qr { margin-top: 22px; padding-top: 20px; border-block-start: 1px dashed var(--line-gold); display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.side-qr p { font-weight: 700; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(265px, 1fr)); gap: 20px; }
.contact-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column; gap: 10px;
  transition: transform var(--tr), border-color var(--tr), background var(--tr);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--line-gold); background: var(--card-strong); }
.contact-card h3 { color: var(--gold-2); font-size: 1.14rem; }
.cc-ic {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(46, 127, 240, 0.12); border: 1px solid var(--line-gold); color: var(--gold-2);
  margin-bottom: 8px;
}
.cc-ic svg { width: 25px; height: 25px; }
.cc-line { color: var(--mut); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.cc-line a { color: var(--ink); font-weight: 600; transition: color var(--tr); }
.cc-line a:hover { color: var(--gold-2); }
.cc-line.addr { line-height: 1.6; font-weight: 600; color: var(--ink); }
.cc-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; padding-top: 14px; }
.icon.fb { width: 19px; height: 19px; color: var(--mut); }

/* QR featured card */
.qr-card {
  grid-row: span 2; align-items: center; text-align: center;
  background: linear-gradient(170deg, rgba(43, 212, 107, 0.07), rgba(46, 127, 240, 0.05));
  border-color: var(--line-gold);
}
.qr-frame {
  background: #ffffff; padding: 14px; border-radius: 16px;
  box-shadow: 0 12px 34px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(46, 127, 240, 0.35);
  transition: transform var(--tr); display: block;
}
.qr-frame img { width: min(272px, 62vw); height: auto; }
.qr-link:hover .qr-frame { transform: scale(1.03); }
.qr-caption { color: var(--mut); font-size: 0.92rem; max-width: 250px; }
.qr-fallback { display: flex; flex-direction: column; align-items: center; gap: 8px; color: #128c4a; padding: 18px; }
.qr-fallback .icon.big { width: 64px; height: 64px; }
.qr-fallback b { color: #0c1f14; font-size: 1.05rem; }

/* ---------- Footer ---------- */
.site-footer { background: #05080f; border-block-start: 1px solid var(--line-gold); }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 40px;
  padding: 64px 0 44px;
}
.f-brand { display: flex; flex-direction: column; gap: 16px; }
.parent-logo { height: 70px; width: auto; max-width: 260px; object-fit: contain; object-position: start; }
[dir="ltr"] .parent-logo { object-position: left; }
.f-wordmark b { font-size: 1.6rem; font-weight: 900; letter-spacing: 2px; }
.f-wordmark { font-size: 0.95rem; letter-spacing: 2.5px; color: var(--mut); font-weight: 700; }
.f-wordmark span { display: block; font-size: 0.72rem; color: var(--gold); margin-top: 4px; letter-spacing: 4px; }
.f-blurb { color: var(--mut); max-width: 320px; }
.f-social { display: flex; gap: 12px; }
.f-social a {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); color: var(--mut);
  transition: all var(--tr);
}
.f-social a:hover { background: rgba(46, 127, 240, 0.15); color: var(--gold-2); border-color: var(--line-gold); transform: translateY(-3px); }
.f-social .icon { width: 21px; height: 21px; }

.f-links h4, .f-contact h4 { color: var(--gold-2); font-size: 1.05rem; margin-bottom: 16px; }
.f-links { display: flex; flex-direction: column; gap: 4px; }
.f-links a { color: var(--mut); padding: 6px 0; transition: color var(--tr), padding-inline-start var(--tr); }
.f-links a:hover { color: var(--ink); padding-inline-start: 8px; }
.f-contact p { color: var(--mut); padding: 6px 0; font-size: 0.96rem; }
.f-contact a { color: var(--ink); font-weight: 600; }
.f-contact a:hover { color: var(--gold-2); }

.footer-bottom { border-block-start: 1px solid var(--line); padding: 20px 0; }
.fb-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.fb-inner p { color: var(--mut2); font-size: 0.9rem; }
.f-parent { color: var(--mut2); }

/* ---------- Floating ---------- */
.fab-wa {
  position: fixed; bottom: 22px; inset-inline-end: 22px; z-index: 95;
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(140deg, #3ddc78, #128c4a);
  display: grid; place-items: center; color: #fff;
  box-shadow: 0 12px 30px -8px rgba(18, 140, 74, 0.65);
  transition: transform var(--tr), box-shadow var(--tr);
}
.fab-wa .icon { width: 30px; height: 30px; }
.fab-wa:hover { transform: scale(1.08) translateY(-3px); }
.fab-wa::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(61, 220, 120, 0.5); animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(0.9); opacity: 1; } 100% { transform: scale(1.35); opacity: 0; } }

.to-top {
  position: fixed; bottom: 94px; inset-inline-end: 28px; z-index: 95;
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  background: rgba(13, 21, 38, 0.9); border: 1px solid var(--line-gold); color: var(--gold-2);
  display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr), background var(--tr);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: rgba(46, 127, 240, 0.2); }
.to-top .icon { width: 22px; height: 22px; }

.toast {
  position: fixed; bottom: 30px; inset-inline-start: 50%; transform: translate(-50%, 20px);
  z-index: 400; background: #101a30; border: 1px solid var(--line-gold); color: var(--ink);
  padding: 12px 24px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  opacity: 0; visibility: hidden; transition: all var(--tr); box-shadow: var(--shadow);
  pointer-events: none; white-space: nowrap;
}
[dir="ltr"] .toast { transform: translate(-50%, 20px); }
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 0.9, 0.35, 1); }
.reveal.in { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.06s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
  .ship-notice, .ship-notice-date, .ship-notice-route::before, .ship-notice-route::after { animation: none; }
  .ship-notice-date { text-shadow: 0 0 16px rgba(255, 255, 255, 0.30); }
  .ship-notice-sheen { display: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .services-grid, .why-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); }
}
@media (max-width: 900px) {
  .about-grid, .quote-grid { grid-template-columns: 1fr; }
  .about-card, .quote-side { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .qr-card { grid-row: auto; grid-column: 1 / -1; order: -1; }
}
@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero-inner { gap: 20px; }
  .ship-notice { padding: 10px 22px 12px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .f-row { grid-template-columns: 1fr; }
  .header-inner { gap: 10px; }
  .brand-logo { height: 40px; }
  .lang-btn { padding: 8px 11px; font-size: 0.88rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .fb-inner { justify-content: center; text-align: center; }
  .lb-nav { width: 42px; height: 42px; }
  .lb-prev { inset-inline-start: 6px; }
  .lb-next { inset-inline-end: 6px; }
  .quote-form { padding: 24px 18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 420px) {
  .btn { padding: 12px 20px; font-size: 0.95rem; }
  .ship-notice { padding: 10px 18px 12px; gap: 0; }
  .ship-notice-route { font-size: 0.8rem; gap: 8px; }
  [dir="ltr"] .ship-notice-route { letter-spacing: 0.4px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; }
}

/* ---------- Nav icons ---------- */
.nav-link { display: inline-flex; align-items: center; gap: 6px; }
.nav-link .i { width: 15px; height: 15px; color: var(--gold-2); flex-shrink: 0; }
.nav-cta .i { width: 15px; height: 15px; color: #ffffff; }
.m-link { display: flex; align-items: center; gap: 10px; }
.m-link .i { width: 18px; height: 18px; color: var(--gold-2); flex-shrink: 0; }

/* Empty kicker (deleted label) collapses cleanly */
.sec-kicker:empty { display: none; }

/* ---------- Light (white) sections — reference palette ---------- */
.section-light { background: #f2f6fb; color: #153257; }
.section-light.section-alt { background: linear-gradient(180deg, #e9f1fa 0%, #f2f6fb 100%); }
.section-light::before, .section-light::after { background: linear-gradient(90deg, transparent, rgba(27, 95, 196, 0.30), transparent); }
.section-light .sec-kicker { color: #1b5fc4; }
.section-light .sec-title { color: #0d2547; }
.section-light .sec-lead { color: #53637a; }
.section-light .sec-rule { background: var(--gold-grad); }
.section-light .sec-rule::after { background: #2e7ff0; box-shadow: 0 0 0 4px #f2f6fb; }
.section-light.section-alt .sec-rule::after { box-shadow: 0 0 0 4px #edf4fb; }
.section-light .card {
  background: #ffffff; border-color: #dce6f2;
  box-shadow: 0 14px 30px -18px rgba(13, 37, 71, 0.16);
}
.section-light .card:hover { background: #ffffff; border-color: rgba(46, 127, 240, 0.55); box-shadow: 0 20px 40px -18px rgba(13, 37, 71, 0.24); }
.section-light .card h3 { color: #0d2547; }
.section-light .card p { color: #53637a; }
.section-light .card-ic { background: rgba(46, 127, 240, 0.10); border-color: rgba(46, 127, 240, 0.35); color: #2168d8; }
.section-light .card.value h3 { color: #1b5fc4; }
.section-light .v-num { -webkit-text-stroke-color: rgba(27, 95, 196, 0.32); }
.section-light .v-icon { background: rgba(46, 127, 240, 0.10); border-color: rgba(46, 127, 240, 0.35); color: #2168d8; }
.section-light .why-quote p { background: linear-gradient(120deg, #123e8c, #2168d8 55%, #2e7ff0); -webkit-background-clip: text; background-clip: text; }
.section-light .why-quote p::before, .section-light .why-quote p::after { background: linear-gradient(90deg, transparent, #2e7ff0, transparent); }
.section-light .corridor-inner { background: linear-gradient(135deg, rgba(46, 127, 240, 0.09), rgba(46, 127, 240, 0.02)); border-color: rgba(46, 127, 240, 0.35); }
.section-light .c-txt b { color: #123e8c; }
.section-light .c-txt span { color: #53637a; }
.section-light .corridor-motto { color: #1b5fc4; }
.section-light .contact-card { background: #ffffff; border-color: #dce6f2; box-shadow: 0 14px 30px -18px rgba(13, 37, 71, 0.14); }
.section-light .contact-card:hover { background: #ffffff; border-color: rgba(46, 127, 240, 0.55); }
.section-light .contact-card h3 { color: #1b5fc4; }
.section-light .cc-ic { background: rgba(46, 127, 240, 0.10); border-color: rgba(46, 127, 240, 0.35); color: #2168d8; }
.section-light .cc-line { color: #53637a; }
.section-light .cc-line a { color: #0d2547; }
.section-light .cc-line a:hover { color: #2168d8; }
.section-light .cc-line.addr { color: #0d2547; }
.section-light .icon.fb { color: #53637a; }
.section-light .qr-card { background: linear-gradient(170deg, rgba(43, 212, 107, 0.07), rgba(46, 127, 240, 0.05)); border-color: rgba(46, 127, 240, 0.35); }
.section-light .qr-frame { box-shadow: 0 12px 30px -12px rgba(13, 37, 71, 0.30), 0 0 0 1px rgba(46, 127, 240, 0.35); }
.section-light .qr-caption { color: #53637a; }

/* ---------- Relations page ---------- */
.rel-hero {
  padding: calc(var(--header-h) + 64px) 0 58px; text-align: center;
  background:
    radial-gradient(900px 420px at 50% -12%, rgba(46, 127, 240, 0.14), transparent 62%),
    var(--bg2);
  border-block-end: 1px solid var(--line);
}
.rel-hero .sec-kicker { margin-bottom: 12px; }
.rel-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.rel-hero p { color: var(--mut); max-width: 720px; margin: 16px auto 0; font-size: 1.08rem; }
.rel-article { max-width: 900px; margin: 0 auto; padding: 64px 0 20px; }
.rel-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; margin-bottom: 58px; }
.rel-row:nth-child(even) .rel-media { order: 2; }
[dir="ltr"] .rel-row:nth-child(even) .rel-media { order: 0; }
[dir="ltr"] .rel-row:nth-child(even) .rel-text { order: 2; }
.rel-media { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-gold); box-shadow: var(--shadow); }
.rel-media img { width: 100%; height: 100%; max-height: 420px; object-fit: cover; }
.rel-text h2 { color: var(--gold-2); font-size: 1.45rem; margin-bottom: 12px; }
.rel-text h2::before { content: ""; display: block; width: 52px; height: 3px; border-radius: 3px; background: var(--gold-grad); margin-bottom: 14px; }
.rel-text p { color: #cfd7e6; font-size: 1.04rem; }
.rel-cap { margin-top: 10px; text-align: center; font-size: 0.92rem; color: var(--mut); font-weight: 600; }
.rel-hero .rel-cap { margin: 26px auto 0; }
.rel-note {
  max-width: 800px; margin: 20px auto 0; padding: 14px 20px;
  border: 1px dashed var(--line-gold); border-radius: var(--radius-sm);
  color: var(--mut2); font-size: 0.92rem; text-align: center;
}
.rel-back { display: flex; justify-content: center; margin: 44px 0 6px; }
@media (max-width: 820px) {
  .rel-row { grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
  .rel-row:nth-child(even) .rel-media { order: 0; }
}

/* WhatsApp glyph readability on blue CTAs */
.btn-gold .icon.wa { color: #d6f7e4; }
