/* ============================================================
   ABOUT PAGE – PREMIUM STYLES
   Brand: Masarat Al Joud
   Colors: Green #3f8f3f / #336c2b  ·  Accent #ee8b1f
   ============================================================ */

/* ── Google Fonts + Reset ─────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #3f8f3f;
  --green-dark: #2e6b2e;
  --green-deep: #1d4d1d;
  --green-light: #e8f5e8;
  --accent: #ee8b1f;
  --accent-soft: #fdf3e7;
  --text: #1a2e1a;
  --muted: #5a7260;
  --surface: #ffffff;
  --border: rgba(63, 143, 63, 0.12);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;
  --shadow-sm: 0 4px 16px rgba(30, 60, 30, 0.07);
  --shadow: 0 12px 40px rgba(30, 60, 30, 0.12);
  --shadow-lg: 0 24px 60px rgba(30, 60, 30, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Tajawal', sans-serif;
  background: #f5f8f4;
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

.rtl body {
  font-family: 'Tajawal', 'Inter', sans-serif;
}

.rtl {
  font-family: 'Tajawal', 'Inter', sans-serif;
  direction: rtl;
}

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

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
}

/* ── Scroll-reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.delay-1 {
  transition-delay: 0.15s;
}

.reveal.delay-2 {
  transition-delay: 0.30s;
}

.reveal.delay-3 {
  transition-delay: 0.45s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ── Section helpers ─────────────────────────────────────── */
/* Common Quality Icons */
.quality-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.quality-icon svg {
  width: 42px;
  height: 42px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.quality-icon.light {
  color: #fff;
}

.quality-icon.light svg {
  stroke: rgba(255, 255, 255, 0.9);
}

.section-container {
  width: min(1140px, calc(100% - 2rem));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(238, 139, 31, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.section-eyebrow.light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.15);
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-title.light {
  color: #fff;
}

.section-desc {
  color: var(--muted);
  max-width: 600px;
  margin-inline: auto;
  font-size: 1.05rem;
}

.section-desc.muted {
  color: var(--muted);
}

.section-desc.light {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────── */
/*  NAVBAR                                                     */
/* ─────────────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

.nav-wrap.scrolled {
  padding: 0.75rem 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  transition: all 0.4s ease;
}

.nav-wrap.scrolled .nav-container {
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-right {
  justify-content: flex-end;
}

.nav-brand.centered {
  padding: 0 2rem;
}

.nav-brand img {
  height: 65px;
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease;
}

.nav-wrap.scrolled .nav-brand img {
  height: 50px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-wrap.scrolled .nav-link {
  color: var(--text);
}

.nav-link:hover {
  color: var(--accent) !important;
}

.nav-lang {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-wrap.scrolled .nav-lang {
  color: var(--accent);
  background: rgba(238, 139, 31, 0.08);
  border-color: rgba(238, 139, 31, 0.2);
}

.nav-lang:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.4rem;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-wrap.scrolled .nav-hamburger span {
  background: var(--text);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.3s ease;
}

.nav-mobile.open {
  max-height: 400px;
  opacity: 1;
}

.nav-mobile .nav-link {
  padding: 0.8rem 0.5rem;
  font-size: 1.1rem;
  color: var(--text) !important;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-mobile .nav-link:last-of-type {
  border-bottom: none;
}

.nav-lang-mobile {
  display: inline-block;
  margin-top: 0.5rem;
  color: var(--accent);
  font-weight: 700;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  background: rgba(238, 139, 31, 0.10);
}

/* ─────────────────────────────────────────────────────────── */
/*  HERO SECTION                                               */
/* ─────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
      rgba(18, 50, 18, 0.88) 0%,
      rgba(30, 70, 30, 0.80) 40%,
      rgba(46, 107, 46, 0.65) 70%,
      rgba(238, 139, 31, 0.25) 100%);
}

.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 0% 0%, rgba(238, 139, 31, 0.08) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 8rem 2rem 6rem;
  max-width: 860px;
  margin-inline: auto;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(238, 139, 31, 0.18);
  border: 1px solid rgba(238, 139, 31, 0.3);
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeInDown 0.7s ease forwards 0.2s;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.82);
  max-width: 680px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.6s;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.8s;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--accent), #d97a10);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(238, 139, 31, 0.38);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 36px rgba(238, 139, 31, 0.48);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, background 0.3s ease;
}

.btn-hero-secondary:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.2rem 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 2.5rem;
}

.stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: scrollBounce 1.8s ease infinite;
}

@keyframes scrollBounce {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

/* ─────────────────────────────────────────────────────────── */
/*  STORY SECTION                                              */
/* ─────────────────────────────────────────────────────────── */
.story-section {
  position: relative;
  padding: 7rem 0;
  background: #fff;
  overflow: hidden;
}

.story-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 5% 50%, rgba(63, 143, 63, 0.05) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233f8f3f' fill-opacity='0.025'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E");
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Image Col */
.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.story-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.story-img-badge {
  position: absolute;
  bottom: -1.5rem;
  inset-inline-end: -1.5rem;
  background: linear-gradient(135deg, var(--accent), #e07510);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(238, 139, 31, 0.35);
  z-index: 2;
}

.badge-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.92;
}

.story-img-accent {
  position: absolute;
  top: -1rem;
  inset-inline-start: -1rem;
  width: 100%;
  height: 100%;
  border: 3px solid var(--green-light);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* Text Col */
.story-para {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.features-list {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-weight: 500;
  font-size: 0.97rem;
  color: var(--text);
}

.feature-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(63, 143, 63, 0.25);
}

/* ─────────────────────────────────────────────────────────── */
/*  VALUES SECTION                                             */
/* ─────────────────────────────────────────────────────────── */
.values-section {
  position: relative;
  padding: 7rem 0;
  background: linear-gradient(130deg, var(--green-deep) 0%, var(--green-dark) 50%, var(--green) 100%);
  overflow: hidden;
}

.values-bg-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 20% 80%, rgba(238, 139, 31, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 0L60 30L30 60L0 30z'/%3E%3C/g%3E%3C/svg%3E");
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.value-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  backdrop-filter: blur(12px);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.value-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.value-icon.accent {
  background: rgba(238, 139, 31, 0.20);
  border-color: rgba(238, 139, 31, 0.4);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
}

.value-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.97rem;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────── */
/*  PRODUCTS SECTION                                           */
/* ─────────────────────────────────────────────────────────── */
.products-section {
  position: relative;
  padding: 7rem 0;
  background: var(--green-light);
  overflow: hidden;
}

.products-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 90% 10%, rgba(63, 143, 63, 0.08) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233f8f3f' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.products-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.products-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s ease;
}

.products-img-wrap:hover .products-img {
  transform: scale(1.03);
}

.products-img-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 80px rgba(63, 143, 63, 0.15);
  pointer-events: none;
}

.products-cards-col {
  display: grid;
  gap: 1rem;
}

.product-card-new {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--surface);
  border: 1px solid rgba(63, 143, 63, 0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card-new:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow);
  border-color: rgba(63, 143, 63, 0.28);
}

.rtl .product-card-new:hover {
  transform: translateX(-6px);
}

.product-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.1rem;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.3rem;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────── */
/*  WHY SECTION                                               */
/* ─────────────────────────────────────────────────────────── */
.why-section {
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
  /* Background image layer */
  background:
    url('images/asset/why_bg.png') center center / cover no-repeat;
}

/* Dark green gradient overlay on top of the image */
.why-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(30, 77, 30, 0.88) 0%,
      rgba(46, 107, 46, 0.82) 50%,
      rgba(18, 50, 18, 0.90) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Dot pattern & accent glow on top of everything */
.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 90% 90%, rgba(238, 139, 31, 0.18) 0%, transparent 55%),
    url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='1.5' fill='%23fff' fill-opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-para {
  color: rgba(255, 255, 255, 0.8);
  margin: 1rem 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.why-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.why-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 1rem;
}

.why-check {
  flex-shrink: 0;
}

/* Floating Cards Visual */
.why-card-stack {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 420px;
  margin-inline: auto;
}

.why-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.why-center-circle img {
  width: 80px;
  filter: brightness(10);
}

.why-floating-card {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  backdrop-filter: blur(14px);
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
  z-index: 3;
}

.why-floating-card:hover {
  transform: scale(1.06) !important;
}

.wc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.wc-icon.quality-icon svg {
  width: 38px;
  height: 38px;
}

.wc-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  white-space: nowrap;
}

.wc-1 {
  top: 5%;
  left: 5%;
  animation: floatCard 4s ease-in-out infinite;
}

.wc-2 {
  top: 5%;
  right: 5%;
  animation: floatCard 4.5s ease-in-out infinite 0.5s;
}

.wc-3 {
  bottom: 5%;
  left: 5%;
  animation: floatCard 3.8s ease-in-out infinite 1s;
}

.wc-4 {
  bottom: 5%;
  right: 5%;
  animation: floatCard 4.2s ease-in-out infinite 1.5s;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ─────────────────────────────────────────────────────────── */
/*  CONTACT SECTION                                            */
/* ─────────────────────────────────────────────────────────── */
.contact-section {
  position: relative;
  padding: 7rem 0;
  background: #fff;
  overflow: hidden;
}

.contact-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 95% 5%, rgba(63, 143, 63, 0.06) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%233f8f3f' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20z'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Info card */
.contact-info-card {
  background: var(--green-light);
  border: 1px solid rgba(63, 143, 63, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-wrap {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(63, 143, 63, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ci-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.ci-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.ci-value.link {
  color: var(--green);
  transition: color 0.2s;
}

.ci-value.link:hover {
  color: var(--accent);
}

/* Form */
.contact-form-new {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 1.2rem;
}

.cf-group {
  display: grid;
  gap: 0.5rem;
}

.cf-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.cf-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: #fafcfa;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  outline: none;
}

.cf-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(63, 143, 63, 0.10);
  background: #fff;
}

.cf-textarea {
  resize: vertical;
  min-height: 130px;
}

.cf-submit {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2rem;
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(63, 143, 63, 0.28);
  width: fit-content;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cf-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 36px rgba(63, 143, 63, 0.38);
}

/* ─────────────────────────────────────────────────────────── */
/*  FOOTER                                                     */
/* ─────────────────────────────────────────────────────────── */
.site-footer-new {
  position: relative;
  background: linear-gradient(160deg, var(--green-deep) 0%, #111c11 100%);
  color: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.footer-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(238, 139, 31, 0.10) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/svg%3E");
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin-inline: auto;
  padding: 4rem 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  height: 55px;
  width: auto;
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.footer-about-text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.footer-social-btn:hover {
  background: rgba(238, 139, 31, 0.18);
  color: var(--accent);
  transform: translateY(-2px);
}

.footer-col-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.2rem;
}

.footer-nav-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-nav-list a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s, padding-inline-start 0.2s;
}

.footer-nav-list a:hover {
  color: #fff;
  padding-inline-start: 4px;
}

.footer-contact-list {
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.footer-contact-list li {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* ─────────────────────────────────────────────────────────── */
/*  KEYFRAME ANIMATIONS                                        */
/* ─────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────────────────────── */
/*  RTL ADJUSTMENTS                                            */
/* ─────────────────────────────────────────────────────────── */
.rtl .story-img-badge {
  inset-inline-end: -1.5rem;
  inset-inline-start: auto;
}

.rtl .story-img-accent {
  inset-inline-start: -1rem;
  inset-inline-end: auto;
}

.rtl .footer-nav-list a:hover {
  padding-inline-start: 4px;
}

/* ─────────────────────────────────────────────────────────── */
/*  RESPONSIVE                                                 */
/* ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .story-grid {
    gap: 3rem;
  }

  .why-grid {
    gap: 3rem;
  }

  .products-layout {
    gap: 2.5rem;
  }
}

@media (max-width: 900px) {

  .story-grid,
  .products-layout,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .why-card-stack {
    max-width: 340px;
  }

  .stats-bar {
    gap: 0;
    padding: 1rem;
  }

  .stat-item {
    padding: 0 1.2rem;
  }

  .footer-grid {
    gap: 2rem;
  }

  .footer-about-text {
    max-width: 100%;
  }
}

@media (max-width: 991px) {

  .nav-left,
  .nav-right .nav-link,
  .nav-right .nav-lang {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-mobile {
    display: flex;
  }

  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 1.5rem;
  }

  .nav-brand.centered {
    padding: 0;
  }

  .nav-brand img {
    height: 45px;
  }
}

@media (max-width: 768px) {
  .nav-container {
    border-radius: 0;
  }

  .hero-content {
    padding: 7rem 1.5rem 5rem;
  }

  .hero-title {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0.5rem 1rem;
  }

  section {
    padding: 4.5rem 0;
  }

  .story-section,
  .values-section,
  .products-section,
  .why-section,
  .contact-section {
    padding: 4.5rem 0;
  }
}

@media (max-width: 520px) {
  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    text-align: center;
  }

  .story-img-badge {
    inset-inline-end: 0.5rem;
    bottom: -1rem;
  }

  .values-grid {
    max-width: 100%;
  }

  .contact-form-new,
  .contact-info-card {
    padding: 1.5rem;
  }

  .footer-container {
    padding: 3rem 1.25rem 0;
  }

  .footer-grid {
    gap: 1.5rem;
  }
}