:root {
  --primary-gold: #c9a227;
  --dark: #111827;
  --light: #f9fafb;
  --gray: #6b7280;
  --surface: #ffffff;
  --line: #e5e7eb;
  --gold-soft: #f1e6bf;
  --shadow: 0 18px 45px rgba(17, 24, 39, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: radial-gradient(circle at 8% 14%, rgba(201, 162, 39, 0.15), transparent 35%),
    radial-gradient(circle at 92% 0%, rgba(17, 24, 39, 0.16), transparent 40%),
    var(--light);
  color: var(--dark);
  line-height: 1.7;
}

body.lang-ar {
  font-family: "Cairo", sans-serif;
}

body.lang-en {
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(249, 250, 251, 0.9);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(140px, 18vw, 220px);
  height: auto;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 600;
  padding: 10px 14px;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.nav a:hover {
  color: var(--dark);
  background: #eef2f7;
}

.lang-toggle {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--dark);
  font-weight: 700;
  padding: 9px 13px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.lang-toggle:hover {
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 1.1rem;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: center;
  background-image: url("assets/import.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(17, 24, 39, 0.84), rgba(17, 24, 39, 0.58));
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 760px;
  padding-block: 80px;
  animation: fadeUp 0.9s ease both;
}

.eyebrow {
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 10px;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  line-height: 1.15;
}

.hero-text {
  margin: 18px 0 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, #dbc06a, var(--primary-gold));
  color: #241a05;
  box-shadow: 0 12px 26px rgba(201, 162, 39, 0.34);
  border: none;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.section {
  padding: 86px 0;
}

.section h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
}

.alt {
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
}

.split {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 26px;
  align-items: stretch;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 4px solid var(--primary-gold);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.stat-card h3 {
  margin: 0 0 12px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(17, 24, 39, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 34px rgba(17, 24, 39, 0.16);
}

.product-card img {
  height: 170px;
  width: 100%;
  object-fit: cover;
}

.product-body {
  padding: 16px;
}

.product-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.product-body p {
  margin: 0;
  color: var(--gray);
  font-size: 0.94rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gold);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--gray);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.gallery-grid img:hover {
  transform: scale(1.03);
  filter: saturate(1.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.contact-list li {
  margin-bottom: 10px;
  color: var(--gray);
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  font-weight: 700;
  font-size: 0.95rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

.map-wrap {
  min-height: 410px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1010;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.4);
  transition: transform 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
}

footer {
  background: var(--dark);
  color: #e5e7eb;
  padding: 24px 0;
  text-align: center;
}

.section-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    position: absolute;
    top: 76px;
    inset-inline: 4%;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    border-radius: 10px;
  }

  .services-grid,
  .gallery-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .map-wrap {
    min-height: 320px;
  }
}

@media (max-width: 640px) {
  .brand-logo {
    width: 180px;
  }

  .hero {
    min-height: 82vh;
  }

  .hero-content {
    padding-block: 66px;
  }

  .product-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .section {
    padding: 64px 0;
  }
}
