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

/* ── 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: #D38A42;
  --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;
}

.wwa-gradient-text {
  background: linear-gradient(135deg, #D38A42 0%, #3f8f3f 0%, #D38A42 100%) ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.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: 85px;
  /* Increased from 65px for a more premium centered brand presence */
  width: auto;
  object-fit: contain;
  transition: height 0.4s ease;
}

.nav-wrap.scrolled .nav-brand img {
  height: 65px;
  /* Increased from 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;
  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.70) 0%,
      rgba(30, 70, 30, 0.60) 40%,
      rgba(46, 107, 46, 0.45) 70%,
      rgba(238, 139, 31, 0.15) 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;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 220px;
  max-width: 280px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 138, 52, 0.2);
  box-sizing: border-box;
  border:2px solid #0b860b; 
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 138, 52, 0.3);
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-decoration: none;
  min-width: 220px;
  max-width: 280px;
  color: #fff;
  border: 2px solid rgba(238, 139, 31, 0.25);
  background: rgb(238 139 31 / 49%); 
  box-sizing: border-box;
}

.btn-hero-secondary:hover {
  border-color: #ee8b1f;
  background: rgba(238, 139, 31, 0.18);
  transform: translateY(-3px);
  color: #fff;
}

/* Stats Bar */
.stats-bar {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.2rem 2rem;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.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-text {
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
  line-height: 1.3;
}

.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);
}

/* ─────────────────────────────────────────────────────────── */
/*  HOW WE OPERATE SECTION                                     */
/* ─────────────────────────────────────────────────────────── */
.operate-section {
  position: relative;
  padding: 7rem 0;
  background: #fff;
  overflow: hidden;
}

.operate-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 100% 0%, rgba(63, 143, 63, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(238, 139, 31, 0.05) 0%, transparent 55%),
    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='%233f8f3f' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* Header */
.operate-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Two-column grid */
.operate-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* ── Left text column ── */
.operate-text-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.operate-intro-block {
  background: var(--green-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.operate-intro-block::before {
  content: '';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--green), var(--accent));
  border-radius: 4px;
}

.operate-intro {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.7;
  margin-bottom: 0;
}

.operate-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  margin: 1.5rem 0;
  opacity: 0.3;
}

.operate-para {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

.operate-para:last-child {
  margin-bottom: 0;
}

/* Brand badge */
.operate-brand-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.operate-brand-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.operate-brand-logo {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.operate-brand-tag {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.02em;
}

/* ── Right cards column ── */
.operate-cards-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* Individual card */
.operate-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

.operate-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(63, 143, 63, 0.3);
}

/* Glow layer revealed on hover */
.operate-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(63, 143, 63, 0.07) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.operate-card:hover .operate-card-glow {
  opacity: 1;
}

/* Top accent line */
.operate-card::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 3px 3px 0 0;
}

.operate-card:hover::before {
  transform: scaleX(1);
}

/* Card icon */
.operate-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--green-light), rgba(63, 143, 63, 0.08));
  border: 1px solid rgba(63, 143, 63, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  transition: background 0.35s ease, transform 0.35s ease;
}

.operate-card:hover .operate-card-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  transform: scale(1.08) rotate(-4deg);
}

.operate-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  transition: stroke 0.35s ease;
}

/* Card text */
.operate-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.operate-card:hover .operate-card-title {
  color: var(--green-dark);
}

.operate-card-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .operate-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .operate-cards-col {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .operate-brand-badge {
    flex-direction: column;
    text-align: center;
  }
}

/* ─────────────────────────────────────────────────────────── */
/*  VISION & MISSION SECTION                                  */
/* ─────────────────────────────────────────────────────────── */
.vision-section {
  position: relative;
  padding: 4.5rem 0;
  background: #fff;
  overflow: hidden;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.vision-card {
  background: #f8faf8;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.vision-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1px solid rgba(63, 143, 63, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--green);
  transition: background 0.3s ease, transform 0.3s ease;
}

.vision-card:hover .vision-icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  transform: scale(1.08);
}

.vision-icon.accent {
  background: rgba(238, 139, 31, 0.10);
  border-color: rgba(238, 139, 31, 0.2);
  color: var(--accent);
}

.vision-card:hover .vision-icon.accent {
  background: linear-gradient(135deg, var(--accent), #d97a10);
  color: #fff;
}

.vision-icon svg {
  width: 22px;
  height: 22px;
}

.vision-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.6rem;
}

.vision-text {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.7;
}

/* Values subtitle */
.values-subtitle {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

/* Values Tags Row */
.values-tags-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.value-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-light);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.55rem 1.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.value-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.value-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

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

  .values-tags-row {
    gap: 0.5rem;
  }

  .value-tag {
    padding: 0.45rem 1rem;
    font-size: 0.82rem;
  }
}

/* ─────────────────────────────────────────────────────────── */
/*  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  – Split-panel redesign                    */
/* ─────────────────────────────────────────────────────────── */
.contact-section {
  position: relative;
  background: #fff;
  overflow: hidden;
}

/* Full-bleed wrapper — two panels side by side, no gap */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 620px;
}

/* ── LEFT green panel ── */
.contact-panel-left {
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-deep) 100%);
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* subtle decorative circle */
.contact-panel-left::before {
  content: '';
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  top: -80px;
  right: -100px;
  pointer-events: none;
}

.contact-panel-left::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(238, 139, 31, 0.08);
  bottom: 40px;
  left: -60px;
  pointer-events: none;
}

.contact-panel-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}

.contact-panel-title {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-panel-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
  margin-bottom: 2.8rem;
  max-width: 340px;
}

/* Contact items inside left panel */
.contact-panel-items {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

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

.cpi-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
}

.contact-panel-item:hover .cpi-icon {
  background: rgba(255, 255, 255, 0.18);
}

.cpi-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.15rem;
}

.cpi-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.cpi-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

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

/* ── RIGHT white form panel ── */
.contact-panel-right {
  background: #f7faf7;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Form */
.contact-form-new {
  display: grid;
  gap: 1.3rem;
}

.cf-row {
  display: flex;
  gap: 1.2rem;
}

.cf-row>.cf-group {
  flex: 1;
}

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

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

.cf-input {
  width: 100%;
  border: 1.5px solid rgba(63, 143, 63, 0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font: inherit;
  font-size: 0.97rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  box-shadow: 0 2px 8px rgba(30, 60, 30, 0.04);
}

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

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

.cf-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7260' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
  cursor: pointer;
}

.rtl .cf-select {
  background-position: left 1rem center;
}

.cf-submit {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.95rem 2.5rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  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%); */
  background-color: #033212;
  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("images/asset/pattern.png");
  background-size: auto;
  background-repeat: no-repeat, repeat;
  opacity: 0.1;
}

.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;
}

.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);
}

/* ─────────────────────────────────────────────────────────── */
/*  PRESENCE SECTION                                           */
/* ─────────────────────────────────────────────────────────── */
.presence-section {
  position: relative;
  padding: 5rem 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.presence-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(var(--green) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.presence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}

.presence-list-col {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  padding-inline-start: 1.5rem;
}

.presence-list-col::before {
  content: '';
  position: absolute;
  top: 15px;
  bottom: 15px;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), transparent);
  opacity: 0.2;
}

.rtl .presence-list-col::before {
  left: auto;
  right: 0;
}

.presence-item {
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  position: relative;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: transparent;
  cursor: default;
}

.presence-item:hover {
  transform: translateX(8px);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.rtl .presence-item:hover {
  transform: translateX(-8px);
}

.presence-item-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  box-shadow: 0 0 0 4px rgba(63, 143, 63, 0.1);
  flex-shrink: 0;
  margin-top: 5px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 2;
}

.presence-item:hover .presence-item-dot {
  transform: scale(1.3);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(238, 139, 31, 0.15);
}

.presence-item-content {
  flex: 1;
}

.presence-city {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  transition: color 0.3s ease;
}

.presence-item:hover .presence-city {
  color: var(--green);
}

.presence-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.presence-map-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.presence-map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, #f2f7f2 0%, #e8f0e8 100%);
  border: 2px dashed rgba(63, 143, 63, 0.25);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.presence-map-placeholder:hover {
  border-color: var(--green);
  box-shadow: inset 0 0 50px rgba(63, 143, 63, 0.05), 0 20px 40px rgba(0, 0, 0, 0.04);
}

.presence-map-placeholder p {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green);
  z-index: 2;
}

.map-pulse {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.1;
  animation: pulse-map 2.5s infinite ease-out;
}

@keyframes pulse-map {
  0% {
    transform: scale(0.5);
    opacity: 0.4;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

/* ─────────────────────────────────────────────────────────── */
/*  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;
  }

  .contact-wrap {
    grid-template-columns: 1fr 1.6fr;
    min-height: auto;
  }
}

@media (max-width: 900px) {

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

  .contact-wrap {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .contact-panel-left {
    padding: 3.5rem 2rem;
  }

  .contact-panel-right {
    padding: 3.5rem 2rem;
  }

  .contact-panel-sub {
    max-width: 100%;
  }

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

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

  .stats-bar {
    gap: 0;
    padding: 0.3rem;
    margin-top: 0.5rem;
  }

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

  .footer-grid {
    gap: 2rem;
  }

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

@media (max-width: 600px) {
.stats-bar {
    margin-top: 2rem;
  }
}


@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: 58px;
    /* Increased from 45px for mobile readability */
  }
}

@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,
  .presence-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;
  }
}

/* ============================================================
   UNIFIED ANIMATION STYLES (NEW)
   ============================================================ */

/* STYLE 1: Clickable Elements (Gradient & Lift) */
.hero-card,
.hover-card,
.product-card,
.prod-card,
.product-card-new,
.stack-card {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.hero-card:hover,
.hover-card:hover,
.product-card:hover,
.prod-card:hover,
.product-card-new:hover,
.stack-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 16px 40px rgba(63, 143, 63, 0.12) !important;
  background: linear-gradient(145deg, #ffffff, #f4fbf5) !important;
  border-color: rgba(63, 143, 63, 0.25) !important;
}

/* STYLE 2: Non-Clickable Elements (Feature Card Effect: Bottom Bar Expand) */
.vision-card,
.value-card,
.goal-item,
.product-showcase,
.about-cards article,
.metric-card,
.highlight-list li,
.feature-list li,
.vm-card,
.cv-card,
.goal-row,
.quality-card,
.ci-card,
.feature-card,
.who-stat-card,
.why-card,
.wwd-card,
.diff-card,
.wwa-card,
.partner-logo-box,
.why-floating-card {
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  position: relative;
  overflow: hidden;
}

.vision-card::after,
.value-card::after,
.goal-item::after,
.product-showcase::after,
.about-cards article::after,
.metric-card::after,
.highlight-list li::after,
.feature-list li::after,
.vm-card::after,
.cv-card::after,
.goal-row::after,
.quality-card::after,
.ci-card::after,
.feature-card::after,
.who-stat-card::after,
.why-card::after,
.wwd-card::after,
.diff-card::after,
.wwa-card::after,
.partner-logo-box::after,
.why-floating-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary) !important;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 2;
}

.rtl .vision-card::after,
.rtl .value-card::after,
.rtl .goal-item::after,
.rtl .product-showcase::after,
.rtl .about-cards article::after,
.rtl .metric-card::after,
.rtl .highlight-list li::after,
.rtl .feature-list li::after,
.rtl .vm-card::after,
.rtl .cv-card::after,
.rtl .goal-row::after,
.rtl .quality-card::after,
.rtl .ci-card::after,
.rtl .feature-card::after,
.rtl .who-stat-card::after,
.rtl .why-card::after,
.rtl .wwd-card::after,
.rtl .diff-card::after,
.rtl .wwa-card::after,
.rtl .partner-logo-box::after,
.rtl .why-floating-card::after {
  transform-origin: right;
}

.vision-card:hover,
.value-card:hover,
.goal-item:hover,
.product-showcase:hover,
.about-cards article:hover,
.metric-card:hover,
.highlight-list li:hover,
.feature-list li:hover,
.vm-card:hover,
.cv-card:hover,
.goal-row:hover,
.quality-card:hover,
.ci-card:hover,
.feature-card:hover,
.who-stat-card:hover,
.why-card:hover,
.wwd-card:hover,
.diff-card:hover,
.wwa-card:hover,
.partner-logo-box:hover,
.why-floating-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(63, 143, 63, 0.12) !important;
  border-color: rgba(63, 143, 63, 0.25) !important;
}

.vision-card:hover::after,
.value-card:hover::after,
.goal-item:hover::after,
.product-showcase:hover::after,
.about-cards article:hover::after,
.metric-card:hover::after,
.highlight-list li:hover::after,
.feature-list li:hover::after,
.vm-card:hover::after,
.cv-card:hover::after,
.goal-row:hover::after,
.quality-card:hover::after,
.ci-card:hover::after,
.feature-card:hover::after,
.who-stat-card:hover::after,
.why-card:hover::after,
.wwd-card:hover::after,
.diff-card:hover::after,
.wwa-card:hover::after,
.partner-logo-box:hover::after,
.why-floating-card:hover::after {
  transform: scaleX(1) !important;
}

/* ═══════════════════════════════════════════════════════════ */
/*  PRESENCE SECTION                                           */
/* ═══════════════════════════════════════════════════════════ */

.presence-section {
  background: #f7f9f7;
  padding: 6rem 0;
}

.presence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

/* ── List column ── */
.presence-list-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.presence-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  border-left: 3px solid transparent;
}

.presence-item:hover,
.presence-item.active {
  background: #fff;
  border-left-color: #D38A42;
  transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(63, 143, 63, 0.08);
}

[dir="rtl"] .presence-item:hover,
[dir="rtl"] .presence-item.active {
  transform: translateX(-4px);
  border-left: none;
  border-right: 3px solid #3f8f3f;
}

.presence-item-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2.5px solid #3f8f3f;
  background: transparent;
  flex-shrink: 0;
  margin-top: 4px;
  transition: background 0.25s ease, transform 0.2s ease;
}

.presence-item:hover .presence-item-dot,
.presence-item.active .presence-item-dot {
  background: #3f8f3f;
  transform: scale(1.3);
}

.presence-item-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.presence-city {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a2e1a;
  margin: 0;
  transition: color 0.2s ease;
}

.presence-item:hover .presence-city,
.presence-item.active .presence-city {
  color: #3f8f3f;
}

.presence-desc {
  font-size: 0.88rem;
  color: #6b7c6b;
  margin: 0;
  line-height: 1.5;
}

/* ── Map column ── */
.presence-map-col {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* The actual SVG element */
.saudi-map-svg {
  width: 100%;
  max-width: 520px;
  height: auto;
  filter: drop-shadow(0 8px 32px rgba(63, 143, 63, 0.12));
  overflow: visible;
}

/* ── SVG region styles ── */
#admin1 {
  stroke: #b8d4b8;
  stroke-width: 1.2;
}

.map-region-bg {
  fill: #ddeedd;
  transition: fill 0.3s ease;
  cursor: default;
}

.map-region {
  fill: #c8e0c8;
  stroke: #98c098;
  stroke-width: 1.5;
  cursor: pointer;
  transition: fill 0.3s ease, stroke 0.3s ease, filter 0.3s ease;
}

.map-region:hover {
  fill: #b0d4b0;
}

.map-region.active {
  fill: #3f8f3f;
  stroke: #2a6b2a;
  filter: drop-shadow(0 0 10px rgba(63, 143, 63, 0.45));
}

/* ── Location dot markers ── */
.presence-marker {
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform-origin: center;
  pointer-events: none;
}

.presence-marker.active {
  opacity: 1;
}

.presence-marker .outer {
  fill: rgba(63, 143, 63, 0.2);
  stroke: #3f8f3f;
  stroke-width: 2;
  animation: none;
}

.presence-marker.active .outer {
  animation: markerPulse 1.6s ease-in-out infinite;
}

.presence-marker .inner {
  fill: #3f8f3f;
  stroke: #fff;
  stroke-width: 1.5;
}

@keyframes markerPulse {

  0%,
  100% {
    r: 10;
    opacity: 0.6;
  }

  50% {
    r: 14;
    opacity: 0.2;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .presence-layout {
    grid-template-columns: 1fr;
  }

  .presence-map-col {
    min-height: 300px;
    order: -1;
  }
}

@media (max-width: 768px) {
  .presence-section {
    padding: 4.5rem 0;
  }

  .cf-row {
    flex-direction: column;
  }
}

/* ═══════════════════════════════════════════════════════════ */
/*  MAP REGION LABELS & OVERLAYS                               */
/* ═══════════════════════════════════════════════════════════ */

/* Make map regions clearly clickable */
.map-region {
  cursor: pointer;
}

/* Region overlay group — always visible, subtle until active */
.region-overlay {
  cursor: pointer;
}

/* ── Markers: always visible but dimmed, brighten on active ── */
.presence-marker {
  opacity: 0.35;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.presence-marker.active,
.region-overlay:hover .presence-marker,
.region-overlay.active .presence-marker {
  opacity: 1;
}

.presence-marker .outer {
  fill: rgba(63, 143, 63, 0.15);
  stroke: #3f8f3f;
  stroke-width: 2;
}

.presence-marker .inner {
  fill: #3f8f3f;
  stroke: #fff;
  stroke-width: 1.5;
}

.presence-marker.active .outer,
.region-overlay.active .presence-marker .outer,
.region-overlay:hover .presence-marker .outer {
  animation: markerPulse 1.5s ease-in-out infinite;
}

/* ── Label pill ── */
.region-label {
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.region-label.active,
.region-overlay:hover .region-label,
.region-overlay.active .region-label {
  opacity: 1;
  transform: translateY(0);
}

/* Pill background */
.label-bg {
  fill: #1a2e1a;
  rx: 11;
  opacity: 0.88;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

/* EN label — shown by default (LTR pages) */
.label-text-en {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  fill: #ffffff;
  letter-spacing: 0.3px;
}

/* AR label — hidden by default, shown on RTL pages */
.label-text-ar {
  font-family: 'Tajawal', sans-serif;
  font-size: 14px;
  font-weight: 600;
  fill: #ffffff;
  display: none;
}

/* RTL: swap which label is visible */
[dir="rtl"] .label-text-en {
  display: none;
}

[dir="rtl"] .label-text-ar {
  display: block;
}

/* ── Map region hover tooltip line ── */
.map-region:hover {
  fill: #a8cfa8;
}

/* Slight glow on region overlay hover */
.region-overlay:hover .map-region,
.region-overlay.active .map-region {
  filter: drop-shadow(0 0 8px rgba(63, 143, 63, 0.4));
}