:root {
  --bg: #070708;
  --bg-soft: #121214;
  --card: rgba(255, 255, 255, 0.03);
  --text: #f3f3f4;
  --muted: #b2b2ba;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #d8b06a;
  --gold-strong: #f2d9a4;
  --radius: 14px;
  --font-ar: "Noto Kufi Arabic", "Tajawal", "Cairo", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ar);
  color: var(--text);
  background:
    radial-gradient(circle at 86% 8%, rgba(216, 176, 106, 0.12), transparent 32%),
    radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #0f0f11 0%, var(--bg) 42%, #080808 100%);
}

h1, h2, h3, h4 { font-family: var(--font-ar); line-height: 1.2; margin: 0; font-weight: 700; }
p { margin: 0; color: var(--muted); line-height: 1.8; }
a { color: inherit; }
button, input, select, textarea, label, li, span { font-family: var(--font-ar); }

.container { width: min(1220px, 92%); margin: 0 auto; }
.section { padding: clamp(72px, 9vw, 122px) 0; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-strong);
  margin-bottom: 10px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #050506;
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.loader.done { opacity: 0; visibility: hidden; }
.loader-mark p {
  margin-top: 12px;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: #f0d8a8;
}
.loader-dot {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 0 26px rgba(216, 176, 106, 0.8);
  display: inline-block;
  animation: pulse 1.2s infinite ease-in-out;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.45); opacity: 0.6; }
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: #050505;
  transform: translateY(100%);
  transition: transform 0.45s ease;
}
.page-transition.active { transform: translateY(0); }

.progress-line {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #7f6335, var(--gold-strong));
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid transparent;
  background: rgba(9, 9, 10, 0.34);
  backdrop-filter: blur(12px);
  transition: 0.28s ease;
}
.site-header.scrolled {
  background: rgba(8, 8, 9, 0.9);
  border-bottom-color: var(--line);
}

.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.brand-wordmark {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
  padding: 6px 10px 7px;
  border-radius: 10px;
  border: 1px solid rgba(216, 176, 106, 0.35);
  background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}
.brand-wordmark strong {
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  font-family: "Noto Kufi Arabic", "Tajawal", "Cairo", sans-serif;
  color: #f4ddb0;
  text-shadow: 0 3px 14px rgba(216, 176, 106, 0.38);
}
.brand-wordmark small {
  margin-top: 2px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-family: "Noto Kufi Arabic", "Tajawal", "Cairo", sans-serif;
  color: #cda96f;
}
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-menu a,
.dropdown-toggle {
  text-decoration: none;
  color: #d6d6dd;
  border: 0;
  background: transparent;
  font: 600 0.9rem "Noto Kufi Arabic", "Cairo", sans-serif;
  padding: 10px 12px;
  border-radius: 999px;
  transition: 0.2s ease;
  cursor: pointer;
}
.nav-menu a:hover,
.nav-menu a.active,
.dropdown-toggle:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown { position: relative; }
.mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 290px;
  background: rgba(10, 10, 11, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s ease;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-menu a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
}
.mega-menu a i { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #21190b;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  box-shadow: 0 10px 26px rgba(216, 176, 106, 0.28);
}
.btn-outline {
  color: #fff;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.btn-sm { padding: 9px 14px; font-size: 0.86rem; }

.menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  transition: 0.2s ease;
}
.menu-btn.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(216, 176, 106, 0.42), transparent 38%),
    radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.08), transparent 45%),
    linear-gradient(to right, rgba(0,0,0,0.78), rgba(0,0,0,0.45)),
    url("img/hero-new.png") center/cover no-repeat;
  transform: scale(1.03);
}
.smoke-layer {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 40%, rgba(255,255,255,0.08), transparent 30%),
    radial-gradient(circle at 70% 60%, rgba(255,255,255,0.06), transparent 25%),
    radial-gradient(circle at 45% 75%, rgba(216,176,106,0.08), transparent 28%);
  mix-blend-mode: screen;
  animation: smoke 14s linear infinite alternate;
}
@keyframes smoke {
  from { transform: translateY(-1%) translateX(-1%); }
  to { transform: translateY(1%) translateX(1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.82));
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 90px;
}
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #f2d9a8;
  font-size: 0.77rem;
}
.hero h1 {
  margin: 12px auto 12px;
  max-width: 980px;
  font-size: clamp(2rem, 5vw, 4.3rem);
}
.hero p {
  max-width: 760px;
  margin: 0 auto;
  color: #d7d7de;
}
.hero-cta { margin-top: 24px; display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }

.metrics {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0;
}
.metrics-grid article {
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  padding: 14px;
}
.metrics-grid i {
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 10px;
  color: #251c0d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}
.metrics-grid strong {
  margin-top: 8px;
  display: block;
  font-size: 1.35rem;
  color: #fff;
}
.metrics-grid span { font-size: 0.84rem; color: #c6c6ce; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 34px;
  align-items: center;
}
.section h2 { font-size: clamp(1.5rem, 3vw, 2.8rem); margin-bottom: 12px; }
.timeline {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}
.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  padding: 10px;
}
.timeline span {
  color: #22190c;
  font-weight: 800;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  text-align: center;
  display: grid;
  place-items: center;
}
.timeline p { font-size: 0.9rem; }

.panel-img {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 25px 54px rgba(0, 0, 0, 0.5);
}
.panel-img img { width: 100%; display: block; min-height: 430px; object-fit: cover; }

.premium-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(255,255,255,0.01), rgba(216,176,106,0.05), rgba(255,255,255,0.01));
}
.premium-inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.premium-inner article {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px 20px 20px 70px;
}
.premium-inner i {
  position: absolute;
  left: 18px;
  top: 20px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #1f170a;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}
.premium-inner h3 { margin-bottom: 8px; font-size: 1.38rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.category-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  padding: 20px;
  text-decoration: none;
  transition: 0.25s ease;
}
.category-card i {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #21190d;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}
.category-card h3 { margin: 12px 0 6px; font-size: 1.3rem; }
.category-card p { font-size: 0.9rem; }
.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 176, 106, 0.65);
  box-shadow: 0 16px 32px rgba(0,0,0,0.44);
}

.map-shell {
  height: 340px;
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 12px;
  background:
    radial-gradient(circle at 30% 50%, rgba(216,176,106,0.12), transparent 40%),
    url("img/fruits-flavor.png") center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.map-point {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--gold-strong);
  box-shadow: 0 0 22px rgba(216,176,106,0.9);
}
.p1 { top: 26%; left: 18%; }
.p2 { top: 38%; left: 45%; }
.p3 { top: 22%; left: 66%; }
.p4 { top: 56%; left: 76%; }
.line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(216,176,106,0), rgba(216,176,106,0.9), rgba(216,176,106,0));
  transform-origin: left center;
  animation: flow 2.2s infinite ease-in-out;
}
.l1 { top: 30%; left: 18%; width: 30%; transform: rotate(12deg); }
.l2 { top: 35%; left: 45%; width: 23%; transform: rotate(-22deg); animation-delay: .3s; }
.l3 { top: 52%; left: 44%; width: 33%; transform: rotate(8deg); animation-delay: .55s; }
@keyframes flow {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 1; }
}

.inline-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.inline-cards article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 14px;
}
.inline-cards strong { color: #fff; display: block; margin-bottom: 6px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.why-grid article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  transition: 0.2s ease;
}
.why-grid article i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: #221a0c;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  margin-bottom: 10px;
}
.why-grid article h3 { font-size: 1.1rem; margin-bottom: 8px; }
.why-grid article p { font-size: 0.88rem; }
.why-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 176, 106, 0.62);
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.corporate-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}
.corporate-card h3 { margin-bottom: 8px; }
.profile-preview {
  margin-top: 16px;
  border: 1px solid rgba(216,176,106,0.5);
  border-radius: 14px;
  padding: 22px;
  background:
    radial-gradient(circle at 90% 8%, rgba(216,176,106,0.14), transparent 40%),
    rgba(255,255,255,0.02);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.profile-preview h3 { margin-bottom: 8px; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 20px;
  background: #060607;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 16px;
}
.footer-wordmark {
  margin-bottom: 12px;
}
.footer-wordmark strong {
  font-size: 1.18rem;
}
.footer-wordmark small {
  font-size: 0.76rem;
}
.footer-grid h4 { margin-bottom: 10px; font-size: 1.14rem; }
.footer-grid a {
  display: block;
  text-decoration: none;
  color: #d4d4db;
  margin-bottom: 8px;
}
.footer-grid a:hover { color: var(--gold-strong); }
.newsletter-form {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 10px 12px;
}
.newsletter-form button {
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #22190d;
  font-weight: 700;
  padding: 10px 12px;
}
.social-links { margin-top: 10px; display: flex; gap: 8px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer-bottom p { font-size: 0.88rem; }
.footer-bottom a { color: var(--gold-strong); text-decoration: none; }

.contact-page-main {
  padding-top: 110px;
}
.contact-hero {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  padding: 26px;
}
.contact-layout {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-card,
.info-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  padding: 18px;
}
.contact-alt-card { display: grid; gap: 14px; }
.contact-steps { display: grid; gap: 10px; }
.step-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  padding: 10px;
}
.step-item span {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #251d0f;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
}
.step-item p { margin: 0; color: #d2d2d9; font-size: 0.9rem; }
.contact-direct-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.map-card { grid-column: 1 / -1; padding: 0; overflow: hidden; }
.map-card iframe { width: 100%; height: 320px; border: 0; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
  background: rgba(255,255,255,0.03);
  color: #fff;
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.form-status {
  margin-top: 10px;
  color: #92f0a7;
  display: none;
}
.form-status.show { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(5px);} to { opacity: 1; transform: translateY(0);} }
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  background: #1db954;
  box-shadow: 0 15px 28px rgba(29, 185, 84, 0.4);
  z-index: 90;
}

.products-hero {
  padding-top: 120px;
  padding-bottom: 40px;
}
.products-filter {
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: rgba(255,255,255,0.02);
}
.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  color: #eee;
  cursor: pointer;
}
.filter-btn.active {
  border-color: rgba(216,176,106,0.75);
  background: rgba(216,176,106,0.16);
}
.products-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.product-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  overflow: hidden;
  transition: 0.2s ease;
}
.product-card:hover { transform: translateY(-4px); }
.product-thumb {
  height: 170px;
  background: #0d0d0f;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-body { padding: 12px; }
.product-chip {
  display: inline-block;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-strong), var(--gold));
  color: #251c0e;
  padding: 4px 9px;
  margin-bottom: 8px;
}
.product-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.product-body p { font-size: 0.86rem; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1140px) {
  .category-grid,
  .products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .menu-btn { display: inline-flex; }
  .btn-sm { display: none; }
  .nav-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(7,7,8,0.97);
  }
  .nav-menu.open { display: flex; }
  .nav-dropdown .mega-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: none;
    grid-template-columns: 1fr;
    margin-top: 8px;
  }
  .nav-dropdown.open .mega-menu { display: grid; }
  .split,
  .premium-inner,
  .inline-cards,
  .corporate-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .brand-wordmark strong { font-size: 0.95rem; }
  .brand-wordmark small { font-size: 0.66rem; }
  .hero h1 { font-size: 2rem; }
  .metrics-grid,
  .category-grid,
  .products-grid,
  .why-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .contact-form { grid-template-columns: 1fr; }
}
