:root {
  --green-dark: #0b5b2a;
  --green: #168238;
  --green-soft: #eff8f0;
  --gold: #d9a11b;
  --gold-soft: #fff6df;
  --text: #17311f;
  --muted: #647064;
  --white: #ffffff;
  --border: #e7eadf;
  --shadow: 0 18px 45px rgba(18, 66, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "Inter", Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.8;
}

body.en-mode {
  direction: ltr;
  font-family: "Inter", "Cairo", Arial, sans-serif;
}

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

.container {
  width: min(1120px, calc(100% - 32px));
  margin: auto;
}

.hidden {
  display: none !important;
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--green-dark);
  font-size: 1.2rem;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 700;
}

.nav-links a {
  color: var(--text);
}

.nav-links a:hover {
  color: var(--green);
}

.lang-btn,
.menu-toggle {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.lang-btn {
  background: var(--gold-soft);
  color: #7a5610;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  background: var(--green);
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 22px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at top right, rgba(217, 161, 27, 0.18), transparent 35%),
    radial-gradient(circle at bottom left, rgba(22, 130, 56, 0.15), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

.eyebrow,
.section-label {
  color: var(--gold);
  font-weight: 800;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 22px;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.35;
  color: var(--green-dark);
  margin-bottom: 18px;
  font-weight: 800;
}

h3 {
  color: var(--green-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.hero-desc,
.lead {
  font-size: 1.12rem;
  color: var(--muted);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 145px;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 14px 24px rgba(22, 130, 56, 0.24);
}

.btn.secondary {
  color: var(--green-dark);
  background: var(--gold-soft);
  border: 1px solid rgba(217, 161, 27, 0.28);
}

.hero-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.section {
  padding: 84px 0;
}

.two-col {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.services,
.why {
  background: #fbfdf9;
}

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

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

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(14, 61, 29, 0.07);
}

.icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  border-radius: 18px;
  font-size: 28px;
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

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

.feature {
  background: linear-gradient(135deg, var(--green-soft), #fff);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  font-weight: 800;
  color: var(--green-dark);
  text-align: center;
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  border-radius: 32px;
  padding: 46px;
  box-shadow: var(--shadow);
}

.contact-box h2,
.contact-box p,
.contact-box .section-label {
  color: #fff;
}

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

.contact-list a,
.contact-list span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 14px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
}

.site-footer {
  background: #092f17;
  color: #dceee0;
  padding: 24px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: 78px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 16px;
  }

  body.en-mode .nav-links {
    right: 16px;
    left: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .lang-btn {
    padding: 10px 12px;
  }

  .hero {
    padding: 58px 0;
  }

  .hero-grid,
  .two-col,
  .contact-box {
    grid-template-columns: 1fr;
  }

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

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

  .contact-box {
    padding: 32px 22px;
  }
}

@media (max-width: 560px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .brand span {
    font-size: 1rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .section {
    padding: 60px 0;
  }

  .hero-card {
    padding: 18px;
    border-radius: 24px;
  }
}
