* {
  box-sizing: border-box;
}

:root {
  --green-900: #063f22;
  --green-800: #07532d;
  --green-700: #087038;
  --green-100: #ecf8ef;
  --orange: #ff7614;
  --orange-soft: #fff1e6;
  --ink: #102015;
  --muted: #66736b;
  --line: rgba(6, 63, 34, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 63, 34, 0.12);
  --radius: 28px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 15%, rgba(255, 118, 20, 0.12), transparent 28rem),
    radial-gradient(circle at 85% 8%, rgba(8, 112, 56, 0.11), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f8fbf7 55%, #ffffff 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.cursor-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 118, 20, 0.18), rgba(8, 112, 56, 0.08), transparent 66%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 0;
  filter: blur(4px);
}

.page-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 255px;
}

.brand img {
  width: 64px;
  height: 50px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 18px;
  font-weight: 900;
  color: var(--green-900);
  line-height: 1.25;
}

.brand small {
  display: block;
  direction: ltr;
  text-align: right;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.desktop-nav {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 10px 15px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--green-900);
  transition: 0.25s ease;
}

.desktop-nav a:hover {
  background: var(--green-100);
  color: var(--green-700);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 16px;
  background: var(--green-900);
  cursor: pointer;
  padding: 13px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--white);
  transition: 0.25s ease;
}

.mobile-panel {
  display: none;
}

.section-block {
  padding: 86px 0;
}

.hero {
  padding-top: 64px;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  background: var(--orange);
  border-radius: 999px;
}

.hero h1,
.section-heading h2,
.center-heading h2,
.contact-card h2 {
  margin: 0;
  color: var(--green-900);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 82px);
  max-width: 780px;
}

.hero p,
.about-text p {
  margin: 24px 0 0;
  font-size: 19px;
  line-height: 2;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-btn,
.secondary-btn,
.message-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.25s ease;
}

.primary-btn,
.message-form button {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: 0 18px 42px rgba(7, 112, 56, 0.22);
}

.secondary-btn {
  color: var(--green-900);
  background: var(--white);
  border: 1px solid var(--line);
}

.primary-btn:hover,
.secondary-btn:hover,
.message-form button:hover {
  transform: translateY(-3px);
}

.hero-card {
  position: relative;
  padding: 28px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(236, 248, 239, 0.72)),
    radial-gradient(circle at 80% 15%, rgba(255, 118, 20, 0.2), transparent 20rem);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 118, 20, 0.13);
}

.logo-stage {
  position: relative;
  z-index: 1;
  min-height: 380px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.logo-stage img {
  width: min(82%, 420px);
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(6, 63, 34, 0.13));
  animation: floatingLogo 6s ease-in-out infinite;
}

.quick-contact {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  direction: ltr;
}

.quick-contact a {
  text-align: center;
  padding: 14px 12px;
  border-radius: 18px;
  background: var(--white);
  color: var(--green-900);
  font-weight: 900;
  border: 1px solid var(--line);
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 46px;
  align-items: start;
}

.section-heading h2,
.center-heading h2,
.contact-card h2 {
  font-size: clamp(30px, 4.5vw, 54px);
}

.about-text,
.contact-card,
.message-form,
.product-card,
.map-frame {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.about-text {
  padding: 34px;
  border-radius: var(--radius);
}

.info-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.info-strip div {
  padding: 18px;
  border-radius: 20px;
  background: var(--green-100);
}

.info-strip strong,
.info-strip span {
  display: block;
}

.info-strip strong {
  color: var(--green-900);
  font-weight: 900;
  margin-bottom: 6px;
}

.info-strip span {
  color: var(--muted);
  font-weight: 700;
}

.center-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.center-heading .eyebrow {
  justify-content: center;
}

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

.product-card {
  position: relative;
  min-height: 265px;
  padding: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: 0.25s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(236, 248, 239, 0), rgba(236, 248, 239, 0.72));
  opacity: 0;
  transition: 0.25s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card > * {
  position: relative;
  z-index: 1;
}

.icon {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  margin-bottom: 28px;
  position: relative;
}

.icon::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 3px solid var(--white);
  border-radius: 50% 0 50% 0;
  transform: rotate(20deg);
}

.grain-icon::after {
  border-radius: 999px;
  width: 10px;
  inset: 15px auto 15px 25px;
  box-shadow: 12px 0 0 rgba(255, 255, 255, 0.7), -12px 0 0 rgba(255, 255, 255, 0.7);
}

.box-icon::after {
  border-radius: 7px;
  transform: rotate(0deg);
}

.supply-icon::after {
  border-radius: 999px;
  border-left-color: transparent;
  transform: rotate(-35deg);
}

.product-card h3 {
  margin: 0 0 14px;
  color: var(--green-900);
  font-size: 23px;
  font-weight: 900;
}

.product-card p {
  margin: 0;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 600;
}

.contact {
  background:
    linear-gradient(135deg, rgba(6, 63, 34, 0.04), rgba(255, 118, 20, 0.04)),
    transparent;
}

.contact-card,
.message-form {
  border-radius: var(--radius);
  padding: 34px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-list a {
  padding: 18px;
  border-radius: 20px;
  background: var(--green-100);
  transition: 0.25s ease;
}

.contact-list a:hover {
  transform: translateX(-4px);
  background: var(--orange-soft);
}

.contact-list span,
.contact-list strong {
  display: block;
}

.contact-list span {
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-list strong {
  color: var(--green-900);
  font-size: 19px;
  font-weight: 900;
}

.message-form {
  display: grid;
  gap: 17px;
}

.message-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  color: var(--green-900);
}

.message-form input,
.message-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfdfb;
  padding: 15px 17px;
  font: inherit;
  outline: none;
  transition: 0.25s ease;
}

.message-form input:focus,
.message-form textarea:focus {
  border-color: rgba(255, 118, 20, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 118, 20, 0.12);
}

.message-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.map-frame {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  padding: 10px;
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  border-radius: var(--radius);
}

.site-footer {
  padding: 38px 0;
  background: var(--green-900);
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.footer-inner img {
  width: 58px;
  height: 46px;
  object-fit: contain;
  padding: 5px;
  border-radius: 14px;
  background: var(--white);
}

.footer-inner p {
  margin: 0;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 20;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 38px rgba(255, 118, 20, 0.28);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: 0.25s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

.delay-3 {
  transition-delay: 0.32s;
}

@keyframes floatingLogo {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.02);
  }
}



body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
  opacity: 0.35;
}

section[id] {
  scroll-margin-top: 110px;
}

.scroll-progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 4px;
  z-index: 60;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--green-700));
  box-shadow: 0 0 20px rgba(255, 118, 20, 0.35);
  transition: width 0.12s linear;
}

.site-header {
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 40px rgba(6, 63, 34, 0.08);
}

.desktop-nav a.active,
.mobile-panel a.active {
  background: linear-gradient(135deg, rgba(8, 112, 56, 0.1), rgba(255, 118, 20, 0.14));
  color: var(--green-700);
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.55;
  pointer-events: none;
}

.orb-1 {
  width: 320px;
  height: 320px;
  right: -70px;
  top: 50px;
  background: radial-gradient(circle, rgba(255, 118, 20, 0.22), transparent 70%);
  animation: driftOrb 8s ease-in-out infinite;
}

.orb-2 {
  width: 280px;
  height: 280px;
  left: -90px;
  bottom: 40px;
  background: radial-gradient(circle, rgba(8, 112, 56, 0.18), transparent 72%);
  animation: driftOrb 10s ease-in-out infinite reverse;
}

.hero-copy,
.hero-card,
.about-text,
.product-card,
.contact-card,
.message-form,
.map-frame {
  position: relative;
  z-index: 1;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(6, 63, 34, 0.08);
  color: var(--green-900);
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(6, 63, 34, 0.08);
}

.hero-badges span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--green-700));
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--green-800);
  font-weight: 800;
  opacity: 0.9;
}

.scroll-cue i {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(6, 63, 34, 0.2);
  border-radius: 999px;
  position: relative;
}

.scroll-cue i::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 6px;
  height: 10px;
  border-radius: 999px;
  background: var(--orange);
  transform: translateX(-50%);
  animation: scrollCue 1.7s ease-in-out infinite;
}

.hero-card,
.about-text,
.product-card,
.contact-card,
.message-form,
.map-frame,
.quick-contact a,
.contact-list a {
  transform-style: preserve-3d;
  will-change: transform;
}

.product-card::after,
.quick-contact a::after,
.contact-list a::after,
.about-text::after,
.contact-card::after,
.message-form::after,
.map-frame::after,
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 118, 20, 0.14), transparent 32%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero-card::before,
.about-text::after,
.contact-card::after,
.message-form::after,
.map-frame::after {
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(8, 112, 56, 0.12), transparent 36%);
}

.product-card:hover::after,
.quick-contact a:hover::after,
.contact-list a:hover::after,
.hero-card:hover::before,
.about-text:hover::after,
.contact-card:hover::after,
.message-form:hover::after,
.map-frame:hover::after {
  opacity: 1;
}

.quick-contact a,
.contact-list a {
  position: relative;
  overflow: hidden;
}

.map-frame {
  position: relative;
}

.map-frame::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: calc(var(--radius) + 2px);
  pointer-events: none;
  z-index: 1;
}

.back-to-top {
  overflow: hidden;
}

.back-to-top::before {
  content: "";
  position: absolute;
  inset: -60% -20%;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.28), transparent 65%);
  transform: translateX(-120%) rotate(10deg);
  transition: transform 0.5s ease;
}

.back-to-top:hover::before {
  transform: translateX(120%) rotate(10deg);
}

@keyframes driftOrb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, -18px, 0) scale(1.06); }
}

@keyframes scrollCue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  80% { opacity: 0.8; transform: translate(-50%, 12px); }
  100% { opacity: 0; transform: translate(-50%, 16px); }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .mobile-panel {
    display: grid;
    position: fixed;
    inset: 82px 18px auto 18px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  body.menu-open .mobile-panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-panel a {
    padding: 14px 16px;
    font-weight: 900;
    color: var(--green-900);
    border-radius: 16px;
  }

  .mobile-panel a:hover {
    background: var(--green-100);
  }

  .hero-badges {
    margin-top: 20px;
  }

  .scroll-cue {
    margin-top: 22px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand img {
    width: 52px;
    height: 42px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 10px;
  }

  .scroll-progress {
    height: 3px;
  }

  .mobile-panel {
    inset-top: 72px;
  }

  .section-block {
    padding: 62px 0;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-badges span {
    width: 100%;
    justify-content: center;
  }

  .scroll-cue {
    width: 100%;
    justify-content: center;
  }

  .hero p,
  .about-text p {
    font-size: 16px;
  }

  .hero-card,
  .about-text,
  .contact-card,
  .message-form {
    padding: 20px;
    border-radius: 24px;
  }

  .logo-stage {
    min-height: 250px;
  }

  .quick-contact {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .map-frame iframe {
    height: 330px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .back-to-top {
    left: 14px;
    bottom: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-glow,
  .hero-orb,
  .scroll-progress,
  body::before {
    display: none !important;
  }
}