@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800;900&family=Inter:wght@400;500;700;800;900&display=swap');

:root {
  --navy: #0b1f3a;
  --navy-2: #102c52;
  --yellow: #ffd200;
  --yellow-2: #f3b700;
  --red: #e6332a;
  --white: #ffffff;
  --muted: #6f7a88;
  --soft: #f4f7fb;
  --line: rgba(11, 31, 58, 0.12);
  --shadow: 0 24px 70px rgba(11, 31, 58, 0.16);
  --radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Cairo', 'Inter', system-ui, sans-serif;
  color: var(--navy);
  background: #fff;
  line-height: 1.8;
}

body.en {
  font-family: 'Inter', 'Cairo', system-ui, sans-serif;
}

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

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.top-strip {
  background: var(--navy);
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

.top-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 16px;
}

.top-strip a { color: var(--yellow); font-weight: 800; direction: ltr; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background .25s ease;
}

.site-header.is-scrolled { box-shadow: 0 16px 40px rgba(11,31,58,.1); }

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand img {
  width: auto;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(11,31,58,.12));
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 20px;
  font-weight: 900;
  color: var(--navy);
  white-space: nowrap;
}

.brand-text small {
  font-size: 12px;
  font-weight: 900;
  color: var(--muted);
  white-space: nowrap;
}

body.en .brand-text strong {
  font-size: 17px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  font-size: 14px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--navy);
  opacity: .9;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-links a:hover::after { transform: scaleX(1); }

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

.lang-toggle {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
  min-width: 48px;
  height: 42px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
  border: 2px solid var(--yellow);
  box-shadow: 0 16px 34px rgba(255, 210, 0, .28);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(255, 210, 0, .34);
}

.btn--small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn--ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.38);
  box-shadow: none;
}

.btn--full { width: 100%; border: none; }

.menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 10px;
}

.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background:
    radial-gradient(circle at 12% 22%, rgba(255, 210, 0, .24), transparent 30%),
    linear-gradient(135deg, #07172b 0%, #0b1f3a 52%, #173c6b 100%);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: .5;
}

.hero::after {
  content: "";
  position: absolute;
  inset-inline: -10%;
  bottom: -150px;
  height: 270px;
  background: #fff;
  transform: rotate(-3deg);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 50px;
  align-items: center;
  min-height: 720px;
  padding: 72px 0 120px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-weight: 900;
  letter-spacing: .4px;
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -1.5px;
}

.hero p {
  max-width: 630px;
  color: rgba(255,255,255,.82);
  font-size: 20px;
  margin: 24px 0 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
  max-width: 630px;
}

.trust-row div {
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}

.trust-row strong {
  display: block;
  font-size: 30px;
  color: var(--yellow);
  line-height: 1;
}

.trust-row span {
  color: rgba(255,255,255,.78);
  font-weight: 700;
  font-size: 13px;
}

.hero-card {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 40px 90px rgba(0,0,0,.28);
  overflow: hidden;
}

.truck-visual {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 24%, rgba(255,210,0,.38), transparent 25%),
    linear-gradient(180deg, rgba(255,255,255,.10), transparent 52%);
}

.road {
  position: absolute;
  inset-inline: -20%;
  bottom: 84px;
  height: 72px;
  background: rgba(255,255,255,.14);
  transform: rotate(-4deg);
}

.road::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 34px;
  border-top: 5px dashed rgba(255,255,255,.55);
}

.truck {
  position: absolute;
  width: 390px;
  height: 170px;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  animation: floatTruck 4.4s ease-in-out infinite;
}

body[dir="rtl"] .truck { left: 48%; }

.box {
  position: absolute;
  width: 250px;
  height: 120px;
  top: 20px;
  left: 0;
  border-radius: 18px 22px 12px 12px;
  background: var(--yellow);
  box-shadow: inset 0 -14px 0 rgba(0,0,0,.1);
}

.box::before {
  content: "TAHA KAYTOUH";
  position: absolute;
  top: 44px;
  left: 42px;
  font-family: Arial, sans-serif;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1px;
}

.cab {
  position: absolute;
  width: 125px;
  height: 92px;
  top: 48px;
  left: 240px;
  border-radius: 16px 44px 12px 10px;
  background: #fff;
  box-shadow: inset -12px -10px 0 rgba(11,31,58,.1);
}

.cab::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 34px;
  right: 20px;
  top: 13px;
  border-radius: 8px 22px 7px 7px;
  background: var(--navy-2);
}

.wheel {
  position: absolute;
  bottom: 8px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #121820;
  border: 10px solid rgba(255,255,255,.85);
  box-shadow: 0 0 0 8px rgba(0,0,0,.12);
}

.wheel-1 { left: 64px; }
.wheel-2 { left: 276px; }

.shipment-card {
  position: absolute;
  inset-inline: 28px;
  bottom: 26px;
  border-radius: 22px;
  padding: 20px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.shipment-card p {
  margin: 0 0 12px;
  font-weight: 900;
}

.track-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 12px 0;
}

.track-line::before {
  content: "";
  position: absolute;
  inset-inline: 8px;
  top: 8px;
  height: 4px;
  background: var(--line);
  border-radius: 99px;
}

.track-line span {
  position: relative;
  z-index: 1;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--yellow);
  border: 4px solid #fff;
  box-shadow: 0 0 0 2px rgba(255,210,0,.6);
}

.shipment-card small {
  color: var(--muted);
  font-weight: 700;
}

@keyframes floatTruck {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-12px); }
}

.logo-marquee {
  overflow: hidden;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.marquee-track {
  display: flex;
  gap: 54px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 28s linear infinite;
}

.marquee-track span::before {
  content: "◆";
  margin-inline-end: 16px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

body[dir="rtl"] .marquee-track {
  animation-name: marqueeRtl;
}

@keyframes marqueeRtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}

.section {
  padding: 104px 0;
}

.section--dark {
  background: var(--navy);
  color: #fff;
}

.section--soft {
  background: var(--soft);
}

.two-col {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 50px;
  align-items: start;
}

.section-copy h2,
.section-head h2,
.quote-copy h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -.8px;
}

.section-copy p,
.section-head p,
.quote-copy p {
  color: var(--muted);
  font-size: 18px;
  margin: 18px 0 0;
}

.section--dark .section-head p { color: rgba(255,255,255,.72); }

.about-long {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.about-long p {
  margin: 0 !important;
  font-size: 16.5px;
  line-height: 2;
}

.about-long p:first-child {
  color: var(--navy);
  font-weight: 800;
}

body.en .about-long p {
  line-height: 1.72;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.about-points span {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  font-weight: 900;
  flex: 0 0 auto;
}

.about-points p { margin: 0; font-weight: 800; color: var(--navy); }

.about-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 24px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255,210,0,.15), transparent 34%),
    var(--navy);
  box-shadow: var(--shadow);
}

.metric-card {
  min-height: 150px;
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
  color: #fff;
}

.metric-card strong {
  display: block;
  color: var(--yellow);
  font-size: 44px;
  line-height: 1;
  margin-bottom: 16px;
}

.metric-card span { color: rgba(255,255,255,.82); font-weight: 800; }

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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s ease, background .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,.11);
}

.icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  color: var(--navy);
  font-size: 28px;
  margin-bottom: 22px;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 900;
}

.service-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
}

.destinations-map {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 26px;
  padding: 32px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 20%, rgba(255,210,0,.26), transparent 24%),
    linear-gradient(135deg, #0b1f3a, #173c6b);
  color: #fff;
  box-shadow: var(--shadow);
}

.map-copy {
  padding: 20px;
}

.map-copy h3 {
  margin: 0 0 12px;
  font-size: 31px;
  line-height: 1.25;
}

.map-copy p { color: rgba(255,255,255,.76); }

.destination-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.destination-list span {
  display: grid;
  place-items: center;
  min-height: 92px;
  border-radius: 22px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.13);
  font-weight: 900;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #dfe7f0;
  box-shadow: 0 20px 46px rgba(11,31,58,.12);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,.58));
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-item figcaption {
  position: absolute;
  inset-inline: 22px;
  bottom: 18px;
  z-index: 1;
}

.gallery-item span {
  color: #fff;
  font-weight: 900;
  font-size: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}

.quote-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.quote-benefits {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.quote-benefits span {
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--soft);
  font-weight: 900;
}

.quote-form {
  padding: 30px;
  border-radius: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
  font-weight: 900;
}

input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 15px;
  font: inherit;
  outline: none;
  color: var(--navy);
  background: #f9fbfe;
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus, textarea:focus {
  border-color: var(--yellow-2);
  box-shadow: 0 0 0 4px rgba(255,210,0,.18);
}

textarea { resize: vertical; }

.form-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.contact-section {
  background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card {
  display: flex;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(11,31,58,.08);
}

.contact-card > span {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  font-weight: 900;
  flex: 0 0 auto;
}

.contact-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  word-break: break-word;
}

.map-placeholder {
  position: relative;
  margin-top: 24px;
  min-height: 330px;
  border-radius: 32px;
  overflow: hidden;
  background: #dce7f2;
  box-shadow: 0 18px 44px rgba(11,31,58,.08);
}

.map-placeholder iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-overlay {
  position: absolute;
  inset-inline: 24px;
  bottom: 24px;
  width: min(420px, calc(100% - 48px));
  padding: 22px;
  border-radius: 24px;
  text-align: start;
  background: rgba(11,31,58,.92);
  color: #fff;
  box-shadow: 0 18px 44px rgba(11,31,58,.18);
}

.map-placeholder strong {
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
}

.map-placeholder p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.78);
  font-weight: 800;
}

.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 900;
}

.floating-whatsapp {
  position: fixed;
  z-index: 30;
  inset-inline-end: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 16px 34px rgba(37,211,102,.34);
}

.footer {
  background: #07172b;
  color: #fff;
  padding-top: 58px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 34px;
  padding-bottom: 44px;
}

.footer img {
  width: auto;
  height: 102px;
  margin-bottom: 18px;
  object-fit: contain;
}

.footer p { color: rgba(255,255,255,.68); max-width: 420px; }

.footer h4 {
  margin: 0 0 14px;
  color: var(--yellow);
}

.footer a {
  display: block;
  color: rgba(255,255,255,.74);
  margin-bottom: 8px;
}

.copyright {
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  padding: 18px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.toast {
  position: fixed;
  z-index: 50;
  inset-inline: 22px;
  bottom: 92px;
  margin-inline: auto;
  width: min(460px, calc(100% - 44px));
  padding: 16px 20px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  text-align: center;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .nav-links { gap: 11px; font-size: 13px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .top-strip__inner { justify-content: center; flex-wrap: wrap; padding: 8px 0; }
  .menu-btn { display: block; }
  .nav { min-height: 72px; }
  .brand img { height: 54px; }
  .brand-text strong { font-size: 17px; }
  .brand-text small { font-size: 11px; }
  .nav-links {
    position: fixed;
    top: 112px;
    inset-inline: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 18px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }
  .nav-links.is-open { display: flex; }
  .nav-actions .btn { display: none; }
  .hero__grid, .two-col, .quote-grid, .destinations-map { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero__grid { padding: 58px 0 110px; min-height: auto; }
  .hero-card { min-height: 360px; }
  .trust-row { grid-template-columns: 1fr; }
  .destination-list { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1180px); }
  .section { padding: 72px 0; }
  .hero h1 { font-size: 42px; }
  .hero p { font-size: 17px; }
  .hero__actions { align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .truck { width: 310px; transform: translate(-50%, -50%) scale(.82); }
  .about-panel, .cards-grid, .gallery-grid, .contact-grid, .form-row { grid-template-columns: 1fr; }
  .destination-list { grid-template-columns: 1fr; }
  .quote-form { padding: 22px; }
}


@media (max-width: 420px) {
  .brand-text strong { font-size: 15px; }
  .brand-text small { font-size: 10px; }
  .brand img { height: 48px; }
}
