:root {
  --navy: #06284e;
  --navy-deep: #041f3e;
  --navy-dark: #03182f;
  --gold: #c89634;
  --gold-light: #e1bb70;
  --text: #18263a;
  --muted: #6f7883;
  --line: #d9dee5;
  --white: #ffffff;
  --soft: #f7f8fa;
  --shadow: 0 12px 28px rgba(0,0,0,.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}
body.rtl { font-family: "Cairo", Arial, sans-serif; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1500px, calc(100% - 42px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid #e8e8e8;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 90px;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 32px;
}
.brand img { width: 270px; height: 66px; object-fit: contain; object-position: left center; }
.rtl .brand img { object-position: right center; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: 32px; }
.main-nav a {
  position: relative;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 35px 0 31px;
  white-space: nowrap;
}
.rtl .main-nav a { font-size: 16px; text-transform: none; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 19px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: .25s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.lang-switch {
  border: 1px solid rgba(6,40,78,.2);
  color: var(--navy);
  background: white;
  border-radius: 8px;
  padding: 10px 11px;
  font-weight: 800;
  cursor: pointer;
}
.helpline {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 9px;
  color: white;
  background: var(--navy);
  box-shadow: 0 8px 20px rgba(6,40,78,.16);
}
.helpline-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 22px;
}
.helpline small, .helpline strong { display: block; }
.helpline small { font-size: 11px; font-weight: 700; opacity: .82; letter-spacing: .3px; }
.helpline strong { font-size: 16px; margin-top: 2px; white-space: nowrap; }
.menu-toggle { display: none; background: transparent; border: 0; width: 42px; height: 42px; padding: 8px; cursor: pointer; }
.menu-toggle span { height: 3px; background: var(--navy); display: block; margin: 5px 0; border-radius: 8px; }

.hero {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.04) 2px, transparent 2px),
    linear-gradient(115deg, var(--navy-deep) 0%, var(--navy) 45%, #0e335b 46%, #0e335b 100%);
  background-size: 18px 18px, 100% 100%;
  overflow: hidden;
}
.hero-grid {
  min-height: 355px;
  display: grid;
  grid-template-columns: 42% 58%;
  position: relative;
  direction: ltr; /* Force physical layout to stay fixed */
}
.hero-copy {
  position: relative;
  z-index: 3;
  padding: 26px 24px 18px 0;
  color: white;
}
.rtl .hero-copy { padding: 26px 0 18px 24px; direction: rtl; }
.eyebrow { color: var(--gold-light); font-weight: 700; font-size: 14px; letter-spacing: 1.6px; margin: 0 0 8px; }
.hero h1 { margin: 0; max-width: 700px; font-size: clamp(38px, 4.5vw, 64px); line-height: 1.1; letter-spacing: -.8px; text-align: center; margin-inline: auto; }
.rtl .hero h1 { font-size: clamp(40px, 4.5vw, 64px); line-height: 1.35; letter-spacing: 0; text-align: center; margin-inline: auto; }
.hero h1 span { color: var(--gold); }
.hero-divider { display: flex; width: fit-content; align-items: center; justify-content: center; gap: 10px; margin: 24px auto; background: var(--gold); color: var(--navy-dark); padding: 12px 28px; border-radius: 8px; font-size: 18px; font-weight: 700; box-shadow: 0 4px 15px rgba(200, 150, 52, 0.3); }
.hero-divider .icon { font-size: 22px; line-height: 1; }
.hero-divider em { font-style: normal; white-space: nowrap; }
.hero-text { max-width: 700px; font-size: 16px; line-height: 1.55; margin: 0 0 24px; color: rgba(255,255,255,.92); }
.rtl .hero-text { font-size: 17px; line-height: 1.75; margin: 0 0 24px; }
.fuel-grid { display: flex; justify-content: center; gap: 16px; max-width: 700px; margin: 0; }
.fuel-card {
  min-height: 80px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: rgba(14, 51, 91, 0.5);
  flex: 1;
  min-width: 220px;
  text-align: left;
}
.rtl .fuel-card { text-align: right; }
.fuel-icon {
  width: 44px; height: 52px;
  display: grid; place-items: center;
  color: var(--gold-light);
  border: 2px solid var(--gold);
  border-radius: 48% 48% 52% 52%;
  transform: rotate(45deg);
  font-size: 16px;
}
.fuel-icon img { transform: rotate(-45deg); width: 24px; height: 24px; object-fit: contain; }
.fuel-card h3 { margin: 0 0 4px; font-size: 14px; line-height: 1.25; }
.fuel-card p { margin: 0; font-size: 12px; line-height: 1.45; color: rgba(255,255,255,.82); }
.trust-inline { display: flex; gap: 20px; margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.86); white-space: nowrap; }
.trust-inline span { display: flex; align-items: center; gap: 6px; }
.trust-inline span::first-letter { color: var(--gold); }

.hero-visual { position: relative; min-width: 0; }
.hero-visual::before {
  display: block;
  content: "";
  position: absolute;
  z-index: 2;
  left: -100px; top: -10%;
  width: 185px; height: 120%;
  background: #0e335b;
  -webkit-mask-image: radial-gradient(85px 50% at 100% 50%, transparent 99.5%, black 100.5%);
  mask-image: radial-gradient(85px 50% at 100% 50%, transparent 99.5%, black 100.5%);
}
.hero-visual::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: 0; top: -10%;
  width: 170px; height: 120%;
  box-sizing: border-box;
  border-radius: 50%;
  background: transparent;
  border-left: 5px solid var(--gold);
  border-right: none;
}
.hero-visual img { width: 100%; height: 100%; min-height: 355px; object-fit: cover; object-position: center center; }
.visual-badges {
  position: absolute;
  z-index: 5;
  left: 10%; right: 4%; bottom: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(5,33,64,.94);
  border: 1px solid var(--gold);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.rtl .visual-badges { left: 4%; right: 10%; }
.visual-badges div { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; padding: 8px; color: white; border-inline-end: 1px solid rgba(255,255,255,.12); text-align: center; }
.visual-badges div:last-child { border-inline-end: 0; }
.visual-badges span { color: var(--gold-light); font-size: 28px; line-height: 1; }
.visual-badges b { font-size: 12px; line-height: 1.3; }
.rtl .visual-badges b { font-size: 14px; }

.why { background: white; border-bottom: 1px solid #e2e4e8; }
.section-heading { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 12px 0 10px; }
.section-heading span { flex: 1; max-width: 100px; height: 2px; background: var(--gold); }
.section-heading h2 { margin: 0; color: var(--navy); font-size: 22px; letter-spacing: .3px; text-align: center; }
.rtl .section-heading h2 { font-size: 24px; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.why-card {
  min-height: 110px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-inline-end: 1px solid var(--line);
}
.why-card:last-child { border-inline-end: 0; }
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy);
  color: var(--gold-light);
  border: 2px solid #e3c27d;
  font-size: 18px;
  font-weight: 800;
}
.why-card h3 { margin: 0 0 6px; color: var(--navy); font-size: 14px; line-height: 1.3; }
.why-card p { margin: 0; font-size: 12px; line-height: 1.5; color: #303945; }
.rtl .why-card h3 { font-size: 15px; }
.rtl .why-card p { font-size: 13px; line-height: 1.55; }

.contact-band { background: var(--navy-deep); color: white; border-top: 4px solid #14395f; }
.contact-grid { min-height: 130px; display: grid; grid-template-columns: 30% 1fr 300px; gap: 24px; align-items: center; }
.commitment { padding: 16px 24px 18px 0; border-inline-end: 1px solid rgba(226,188,111,.55); }
.rtl .commitment { padding: 16px 0 18px 24px; }
.contact-band h3 { margin: 0 0 8px; color: var(--gold); font-size: 14px; }
.commitment p { margin: 0; font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.88); }
.operations { padding: 12px 0; }
.operations > h3 { text-align: center; font-size: 16px; margin-bottom: 12px; }
.operation-items { display: grid; grid-template-columns: .92fr 1.2fr 1fr; gap: 16px; margin-top: 10px; }
.operation-item { display: grid; grid-template-columns: 48px 1fr; gap: 12px; align-items: center; min-width: 0; }
.operation-item > span { width: 48px; height: 48px; display: grid; place-items: center; color: var(--gold-light); border: 1px solid rgba(226,188,111,.6); border-radius: 8px; font-size: 24px; }
.operation-item small, .operation-item a, .operation-item strong { display: block; }
.operation-item small { color: rgba(255,255,255,.72); font-size: 10px; font-weight: 700; margin-bottom: 4px; }
.operation-item a, .operation-item strong { font-size: 12px; line-height: 1.45; font-weight: 600; overflow-wrap: anywhere; }
.port-photo { padding: 12px 0; }
.port-photo img { width: 100%; height: 110px; object-fit: cover; border: 2px solid white; border-radius: 10px; }

.trust-bar { background: #fff; color: var(--navy); border-top: 1px solid #eee; }
.trust-bar-grid { min-height: 44px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; text-align: center; }
.trust-bar span { font-size: 12px; padding: 0 16px; border-inline-end: 1px solid #d7c49e; white-space: nowrap; }
.trust-bar span:last-child { border-inline-end: 0; }
.trust-bar span::first-letter { color: var(--gold); }

@media (max-width: 1080px) {
  .header-inner { grid-template-columns: 240px 1fr auto; gap: 12px; }
  .brand img { width: 225px; }
  .main-nav { gap: 15px; }
  .main-nav a { font-size: 10px; }
  .helpline { padding: 8px 9px; }
  .lang-switch { padding: 9px; }
  .hero-grid { grid-template-columns: 47% 53%; }
  .hero h1 { font-size: 34px; }
  .hero-copy { padding-right: 12px; }
  .fuel-card h3 { font-size: 9px; }
  .trust-inline { gap: 9px; font-size: 7px; }
  .why-card { grid-template-columns: 48px 1fr; padding-inline: 9px; }
  .why-icon { width: 43px; height: 43px; }
  .contact-grid { grid-template-columns: 26% 1fr 185px; }
}

@media (max-width: 900px) {
  .container { width: min(100% - 28px, 820px); }
  .header-inner { grid-template-columns: 1fr auto auto; min-height: 70px; }
  .brand img { width: 220px; height: 58px; }
  .menu-toggle { display: block; order: 3; }
  .header-actions { justify-self: end; }
  .helpline { display: none; }
  .main-nav {
    position: absolute;
    top: 70px; left: 14px; right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border: 1px solid #e5e7ea;
    border-radius: 10px;
    box-shadow: var(--shadow);
    padding: 6px 0;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 18px; }
  .main-nav a::after { display: none; }

  .hero-grid { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 28px 0 22px; }
  .rtl .hero-copy { padding: 28px 0 22px; }
  .hero h1 { max-width: 720px; font-size: 42px; }
  .hero-text { max-width: 720px; }
  .fuel-grid { max-width: 650px; }
  .hero-visual { min-height: 360px; }
  .hero-visual::before, .hero-visual::after { display: none; }
  .hero-visual img { height: 360px; }
  .visual-badges { left: 4%; right: 4%; }
  .rtl .visual-badges { left: 4%; right: 4%; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card:nth-child(2) { border-inline-end: 0; }
  .why-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .contact-grid { grid-template-columns: 1fr 220px; }
  .commitment { grid-column: 1 / -1; border-inline-end: 0; border-bottom: 1px solid rgba(226,188,111,.35); padding: 14px 0; }
  .commitment p { font-size: 10px; }
  .operation-item a, .operation-item strong { font-size: 9px; }
  .trust-bar-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar span { padding: 9px 5px; }
  .trust-bar span:nth-child(2) { border-inline-end: 0; }
  .trust-bar span:nth-child(-n+2) { border-bottom: 1px solid #eee; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 20px, 600px); }
  .header-inner { grid-template-columns: 1fr auto auto; gap: 7px; }
  .brand img { width: 185px; height: 54px; }
  .lang-switch { font-size: 12px; padding: 8px 9px; }
  .menu-toggle { width: 38px; }
  .hero-copy { padding-top: 22px; }
  .eyebrow { font-size: 8px; }
  .hero h1, .rtl .hero h1 { font-size: 31px; line-height: 1.2; }
  .rtl .hero h1 { line-height: 1.5; }
  .hero-divider { font-size: 14px; padding: 10px 20px; margin: 16px auto; }
  .hero-divider .icon { font-size: 16px; }
  .hero-text, .rtl .hero-text { font-size: 12px; }
  .fuel-grid { flex-direction: column; }
  .fuel-card { min-height: 62px; }
  .trust-inline { flex-direction: column; gap: 4px; font-size: 8px; }
  .hero-visual { min-height: 260px; }
  .hero-visual img { height: 260px; }
  .visual-badges { position: relative; left: auto; right: auto; bottom: auto; grid-template-columns: 1fr 1fr; border-radius: 0; border: 0; }
  .rtl .visual-badges { left: auto; right: auto; }
  .visual-badges div { min-height: 62px; border-bottom: 1px solid rgba(255,255,255,.08); }

  .section-heading { padding: 12px 0 8px; }
  .section-heading h2 { font-size: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { border-inline-end: 0; border-bottom: 1px solid var(--line); min-height: 82px; }
  .why-card:last-child { border-bottom: 0; }

  .contact-grid { grid-template-columns: 1fr; padding: 2px 0 12px; }
  .operations > h3 { text-align: start; margin-top: 7px; }
  .operation-items { grid-template-columns: 1fr; }
  .operation-item { padding: 4px 0; }
  .port-photo img { height: 125px; }
  .trust-bar-grid { grid-template-columns: 1fr; }
  .trust-bar span { border-inline-end: 0; border-bottom: 1px solid #eee; padding: 9px; }
  .trust-bar span:last-child { border-bottom: 0; }
}
