@import url("https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap");

:root {
  --background: #fafafa;
  --foreground: #101010;
  --card: #ffffff;
  --muted: #f2f2f2;
  --muted-foreground: #5a5a5a;
  --border: #e5e5e5;
  --primary: #d4af37;
  --primary-dark: #b98f0c;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Almarai", Tahoma, "Segoe UI", Arial, sans-serif;
  background: var(--background);
  color: var(--foreground);
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.muted {
  background: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted-foreground);
  font-size: 14px;
}

.nav-links a:hover,
.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--primary-dark);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang {
  width: 34px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.lang img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lang.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: #111;
}

.btn.primary:hover {
  background: #c59f2a;
}

.btn.ghost {
  color: var(--muted-foreground);
  border-color: var(--border);
}

.btn.outline {
  border-color: var(--border);
}

.btn.light {
  background: #fff;
  color: #111;
}

.menu-btn {
  display: none;
  border: 0;
  background: transparent;
  font-size: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero.section {
  padding-top: 38px;
  padding-bottom: 26px;
}

.hero-rings {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.13) 0 18%, transparent 19% 100%),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.07) 0 32%, transparent 33% 100%),
    radial-gradient(circle at center, rgba(212, 175, 55, 0.04) 0 44%, transparent 45% 100%);
  opacity: 0.8;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: calc(84vh - 74px);
}

.eyebrow {
  color: var(--primary-dark);
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 10px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.15;
  margin-bottom: 16px;
}

h2 {
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.2;
  margin-bottom: 14px;
}

h1 span,
h2 span {
  color: var(--primary);
}

.lead {
  max-width: 620px;
  color: var(--muted-foreground);
  line-height: 1.9;
  margin-bottom: 18px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  background: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
}

.tags.centered {
  justify-content: center;
}

.hero-cards {
  height: 520px;
  position: relative;
}

.partner-logos {
  padding: 10px 0 32px;
}

.partner-logos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.partner-logo-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.partner-logo-card img {
  width: 100%;
  max-height: 170px;
  object-fit: contain;
}

.partner-tagline {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.25;
}

.services-transport-note {
  margin-top: 14px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.card p {
  color: var(--muted-foreground);
  margin-top: 8px;
  line-height: 1.8;
}

.card.mini {
  position: absolute;
  width: 210px;
}

.float-1 {
  top: 0;
  right: 0;
}

.float-2 {
  top: 88px;
  left: 0;
}

.float-3 {
  width: 260px;
  position: absolute;
  bottom: 20px;
  right: 84px;
  overflow: hidden;
  padding: 0;
}

.float-4 {
  width: 200px;
  bottom: 18px;
  left: 14px;
}

.image-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 12px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  font-size: 13px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

#about {
  padding-top: 120px;
  padding-bottom: 120px;
}

#about .split > .reveal:first-child {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.05);
}

#about h2 {
  font-size: clamp(40px, 5vw, 66px);
  margin-bottom: 22px;
}

#about p {
  font-size: 20px;
  line-height: 1.9;
  color: #2f2f2f;
}

#about .plain-list {
  margin-top: 22px;
  padding-inline-start: 20px;
}

#about .plain-list li {
  margin-bottom: 10px;
  line-height: 1.9;
  color: #2f2f2f;
  font-size: 19px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  border-radius: 30px;
  border: 1px solid var(--border);
  min-height: 640px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.16);
  object-fit: cover;
}

.stats {
  position: absolute;
  left: 22px;
  bottom: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}

.stats b {
  display: block;
  color: var(--primary-dark);
  font-size: 34px;
}

.stats span {
  font-size: 14px;
  color: var(--muted-foreground);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}

.section-head p {
  color: var(--muted-foreground);
  line-height: 1.9;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.values-split {
  margin-bottom: 24px;
}

.team-box {
  background: var(--muted);
  border: 1px solid var(--border);
  border-radius: 24px;
  text-align: center;
  padding: 30px;
}

.gallery-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #ececec;
  border: 1px solid var(--border);
  min-height: 220px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  color: #fff;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 12px;
}

.cta {
  margin-top: 28px;
  border-radius: 24px;
  background: var(--primary);
  color: #111;
  padding: 30px;
  text-align: center;
}

.cta h3 {
  font-size: 28px;
}

.cta p {
  margin: 10px 0 16px;
}

.site-footer {
  background: #101010;
  color: #fafafa;
  border-top: 1px solid #2c2c2c;
  padding: 24px 0 12px;
}

.footer-row,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-logo {
  width: 220px;
}

.footer-links,
.footer-bottom div {
  display: flex;
  gap: 16px;
}

.footer-bottom {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #2c2c2c;
  font-size: 13px;
  color: #d0d0d0;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

body.reveal-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
}

body.reveal-enabled .reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: grid;
  place-items: center;
  z-index: 2000;
  padding: 24px;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(1000px, 92vw);
  max-height: 80vh;
  border-radius: 14px;
}

.lightbox p {
  color: #fff;
  margin-top: 10px;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  left: 20px;
  border: 0;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  #about .split > .reveal:first-child {
    padding: 28px;
  }

  #about p,
  #about .plain-list li {
    font-size: 18px;
  }

  .about-visual img {
    min-height: 480px;
  }

  .stats {
    left: 16px;
    bottom: 16px;
  }

  .hero-cards {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .hero.section {
    padding-top: 26px;
    padding-bottom: 18px;
  }

  .hero-grid {
    min-height: auto;
  }

  .card.mini,
  .float-3,
  .float-4 {
    position: static;
    width: auto;
  }

  .grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .partner-logos-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-logo-card {
    min-height: 180px;
    padding: 16px;
  }

  .partner-logo-card img {
    max-height: 130px;
  }
}

@media (max-width: 800px) {
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px;
    gap: 12px;
  }

  .nav-links a {
    display: block;
    font-size: 17px;
    font-weight: 700;
    padding: 11px 10px;
    border-bottom: 1px solid var(--border);
    border-radius: 10px;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a:hover {
    background: var(--muted);
    color: var(--primary-dark);
    transform: translateX(-3px);
  }

  .nav-links.open {
    display: flex;
  }

  .btn.primary {
    display: none;
  }

  .menu-btn {
    display: inline-block;
  }

  .grid.three,
  .grid.two {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero.section {
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .partner-logos-grid {
    grid-template-columns: 1fr;
  }

  .partner-logo-card {
    min-height: 165px;
  }

  .partner-tagline {
    margin-top: 18px;
    font-size: clamp(24px, 8vw, 38px);
  }

  .partner-logo-card img {
    max-height: 118px;
  }

  #about {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  #about .split > .reveal:first-child {
    padding: 22px;
    border-radius: 20px;
  }

  #about p,
  #about .plain-list li {
    font-size: 16px;
  }

  .about-visual img {
    min-height: 380px;
    border-radius: 22px;
  }

  .stats {
    position: static;
    margin-top: 14px;
    min-width: 100%;
  }

  .footer-row,
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
  }
}
