:root {
  --primary: #0c3c78;
  --primary-dark: #082b56;
  --accent: #1f7ae0;
  --light: #f4f7fb;
  --text: #1d2633;
  --muted: #617086;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 14px 35px rgba(6, 28, 56, 0.12);
  /* Hero background (air + sea freight) */
  --hero-bg-image: url("https://images.unsplash.com/photo-1769144256227-5185141c3aca?auto=format&fit=crop&w=1800&q=80");
  /* Previous hero images (fallback / quick rollback) */
  --hero-bg-image-prev: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1800&q=80");
  --hero-bg-image-prev2: url("https://images.unsplash.com/photo-1578574577315-3fbeb0cecdc2?auto=format&fit=crop&w=1800&q=80");
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.section-eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 10px;
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 12px 26px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(140deg, var(--accent), var(--primary));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(9, 29, 57, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}

.logo-mark {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4f7fb;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
  padding: 5px;
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 2px;
  width: 0;
  background: #79c1ff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.lang-switcher select {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  border-radius: 8px;
  padding: 8px 10px;
  outline: none;
}

.lang-switcher option {
  color: #111;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(8, 21, 42, 0.52), rgba(8, 21, 42, 0.52)),
    var(--hero-bg-image, var(--hero-bg-image-prev, var(--hero-bg-image-prev2))) center/cover no-repeat;
}

.hero-content {
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.hero-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 12px;
}

.about-points {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.about-points i {
  color: var(--accent);
}

.services {
  background: var(--light);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--white);
  border-radius: 14px;
  padding: 24px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.service-card i {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #e8f3ff, #dbeafe);
  color: var(--primary);
  margin-bottom: 14px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.why-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
}

.why-item i {
  color: #16a34a;
}

.stats {
  background:
    linear-gradient(rgba(7, 25, 50, 0.84), rgba(7, 25, 50, 0.84)),
    url("https://images.unsplash.com/photo-1577412647305-991150c7d163?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-box {
  text-align: center;
  padding: 25px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.stat-box h3 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: 0.3s;
}

.process-step span {
  color: var(--accent);
  font-weight: 700;
}

.process-step h3 {
  margin: 8px 0;
}

.process-step p {
  color: var(--muted);
}

.process-step:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.cta-box {
  background: linear-gradient(120deg, var(--primary), #123f7a);
  border-radius: 18px;
  color: var(--white);
  text-align: center;
  padding: 50px 20px;
}

.cta-box h2 {
  max-width: 780px;
  margin: 0 auto 20px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.contact {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.contact-info,
.contact-form {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item i {
  color: var(--accent);
  margin-top: 4px;
}

.contact-item p {
  color: var(--muted);
}

.contact-link {
  color: var(--muted);
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.hp-field {
  display: none;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-check input {
  accent-color: var(--accent);
}

.captcha-wrap {
  margin: 4px 0 6px;
}

.toast {
  position: fixed;
  right: 20px;
  top: 90px;
  transform: translateY(-12px);
  background: #0a2344;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-shadow: var(--shadow);
  z-index: 9999;
  font-size: 0.95rem;
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d6dce6;
  border-radius: 10px;
  padding: 12px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(31, 122, 224, 0.25);
  border-color: var(--accent);
}

.footer {
  background: #081427;
  color: rgba(255, 255, 255, 0.92);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: inline-block;
  width: 120px;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #f4f7fb;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding: 10px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer h3,
.footer h4 {
  margin-bottom: 12px;
}

.footer-brand h3 {
  margin-bottom: 0;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 8px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.social-links a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding: 16px 0;
}

.scroll-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: none;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  cursor: pointer;
  z-index: 998;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .nav-wrap,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .about-points div,
html[dir="rtl"] .why-item,
html[dir="rtl"] .contact-item,
html[dir="rtl"] .social-links {
  direction: rtl;
}
