/* ==========================================================
   NOOR AL RIZQ — Design System v2.0
   Forest Green + Gold/Amber | Premium Food Distribution
   ========================================================== */

/* ── Design Tokens ───────────────────────────────────────── */
:root {
  --green-900: #0d2119;
  --green-800: #1a3a2a;
  --green-700: #22503a;
  --green-600: #2d6b4f;
  --green-500: #3d8a63;
  --green-400: #52a87c;
  --green-100: #d4f0df;
  --gold-700:  #a07b10;
  --gold-600:  #c9a227;
  --gold-500:  #d4b03a;
  --gold-400:  #e4c75a;
  --gold-100:  #fdf3d0;
  --cream:     #faf8f3;
  --cream-alt: #f3f0e8;
  --white:     #ffffff;
  --dark:      #0d1a14;
  --text-body: #374151;
  --text-muted: #6b7280;
  --text-light: rgba(255,255,255,0.72);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; }

/* ── Page Loader ─────────────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--green-800);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-ring {
  width: 52px; height: 52px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--gold-500);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Cursor Glow ─────────────────────────────────────────── */
.cursor-glow {
  position: fixed; width: 300px; height: 300px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(201,162,39,0.06) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}

/* ── Header & Navigation ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--green-800);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}
.navbar { padding: 0.9rem 1.5rem; }

/* Brand */
.navbar-brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 8px; }
.brand-text-wrap { display: flex; flex-direction: column; }
.brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem; font-weight: 800;
  color: var(--white); letter-spacing: 0.02em; line-height: 1;
}
.brand-tagline {
  font-size: 0.65rem; font-weight: 500;
  color: var(--gold-500); letter-spacing: 0.08em; text-transform: uppercase;
  line-height: 1; margin-top: 2px;
}

/* Nav links */
.navbar-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.75) !important;
  padding: 7px 14px !important; border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--white) !important;
  background: rgba(255,255,255,0.08);
}
.nav-link.active { color: var(--gold-400) !important; background: rgba(201,162,39,0.1); }

/* CTA in nav */
.nav-cta {
  background: var(--gold-600) !important;
  color: var(--green-900) !important;
  font-weight: 700 !important; border-radius: var(--radius-sm) !important;
  padding: 7px 18px !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-400) !important; transform: translateY(-1px); }

/* Lang toggle */
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 5px 12px; color: rgba(255,255,255,0.75);
  font-size: 0.8rem; font-weight: 600;
  transition: var(--transition);
}
.lang-toggle:hover { background: rgba(255,255,255,0.14); color: var(--white); }

/* Hamburger */
.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.2) !important;
  padding: 6px 10px !important; border-radius: var(--radius-sm) !important;
}
.navbar-toggler-icon { filter: invert(1); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-600); color: var(--green-900);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700; letter-spacing: 0.01em;
  padding: 13px 28px; border-radius: var(--radius-md);
  border: 2px solid var(--gold-600);
  transition: var(--transition); cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-400); border-color: var(--gold-400);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.35);
}
.btn-green {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-600); color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  padding: 13px 28px; border-radius: var(--radius-md);
  border: 2px solid var(--green-600);
  transition: var(--transition); cursor: pointer;
}
.btn-green:hover {
  background: var(--green-500); border-color: var(--green-500);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(61,138,99,0.35);
}
.btn-outline-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold-500);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  padding: 11px 26px; border-radius: var(--radius-md);
  border: 2px solid var(--gold-600);
  transition: var(--transition); cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold-600); color: var(--green-900);
  transform: translateY(-2px);
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  padding: 11px 26px; border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.45);
  transition: var(--transition); cursor: pointer;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75);
  transform: translateY(-2px);
}

/* ── Section Utilities ───────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-600);
  background: var(--gold-100); border-radius: 30px;
  padding: 5px 14px; margin-bottom: 14px;
}
.section-eyebrow.light {
  background: rgba(201,162,39,0.18); color: var(--gold-400);
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800; color: var(--dark);
}
.section-title.on-dark { color: var(--white); }
.section-subtitle {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 600px; margin: 0 auto;
}
.section-subtitle.on-dark { color: var(--text-light); }

/* ── Cards ───────────────────────────────────────────────── */
.card-white {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card-white:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.card-green {
  background: var(--green-800); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.card-green:hover { background: var(--green-700); transform: translateY(-3px); }

.card-cream {
  background: var(--cream-alt); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.card-cream:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

/* Icon bubble */
.icon-bubble {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--gold-100); color: var(--gold-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px; flex-shrink: 0;
  transition: var(--transition);
}
.icon-bubble.on-dark {
  background: rgba(201,162,39,0.18); color: var(--gold-400);
}
.card-white:hover .icon-bubble { background: var(--gold-600); color: var(--white); }

/* ── Hero Section ────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 100vh;
  background: var(--green-800);
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-image {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0.22; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,33,25,0.92) 0%,
    rgba(26,58,42,0.80) 50%,
    rgba(45,91,61,0.70) 100%
  );
  z-index: 1;
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: 0.04;
  background-image: radial-gradient(circle, #c9a227 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-content { position: relative; z-index: 2; padding: 7rem 0 5rem; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.3);
  border-radius: 40px; padding: 7px 18px; margin-bottom: 24px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold-400);
}
.hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold-500); animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900; color: var(--white); line-height: 1.1;
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold-500); }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.72);
  max-width: 520px; line-height: 1.8; margin-bottom: 36px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }

/* Trust badges */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 40px; padding: 8px 16px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.trust-badge:hover { background: rgba(255,255,255,0.12); border-color: rgba(201,162,39,0.4); }
.trust-badge i { color: var(--gold-500); font-size: 0.9rem; }

/* Hero stats card */
.hero-stats-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl); padding: 32px;
  position: relative; overflow: hidden;
}
.hero-stats-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle, rgba(201,162,39,0.15), transparent);
  border-radius: 50%;
}
.hero-stats-card .founded-badge {
  display: inline-block;
  background: var(--gold-600); color: var(--green-900);
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; border-radius: 20px; padding: 5px 14px;
  margin-bottom: 18px;
}
.hero-stats-card h3 { color: var(--white); font-size: 1.25rem; margin-bottom: 10px; }
.hero-stats-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }
.mini-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mini-stat {
  background: rgba(255,255,255,0.05); border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.08); padding: 14px;
}
.mini-stat strong {
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 1.6rem; font-weight: 800; color: var(--gold-500); line-height: 1;
}
.mini-stat span { font-size: 0.75rem; color: var(--text-light); margin-top: 4px; display: block; }

/* ── Supply Chain Section ────────────────────────────────── */
.supply-chain-section { background: var(--white); }
.supply-chain-steps {
  display: flex; gap: 0;
  overflow-x: auto; padding-bottom: 8px;
}
.supply-chain-steps::-webkit-scrollbar { height: 4px; }
.supply-chain-steps::-webkit-scrollbar-track { background: var(--cream-alt); }
.supply-chain-steps::-webkit-scrollbar-thumb { background: var(--gold-500); border-radius: 2px; }

.sc-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; min-width: 160px; flex: 1; position: relative;
  padding: 28px 16px;
}
.sc-step:not(:last-child)::after {
  content: ''; position: absolute; top: 40px; right: -1px;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
  z-index: 1;
}
.sc-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--gold-400); font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 6px 20px rgba(26,58,42,0.25);
  flex-shrink: 0; position: relative; z-index: 2;
  transition: var(--transition);
}
.sc-step:hover .sc-icon { background: linear-gradient(135deg, var(--gold-700), var(--gold-500)); color: var(--white); transform: scale(1.08); }
.sc-step-num {
  position: absolute; top: 16px; left: calc(50% + 22px);
  font-size: 0.65rem; font-weight: 800; color: var(--gold-600);
  background: var(--gold-100); border-radius: 20px; padding: 2px 8px;
}
.sc-label {
  font-family: 'Poppins', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--dark); margin-bottom: 6px;
}
.sc-desc { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* ── Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
  transition: var(--transition); position: relative;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.product-card-img {
  width: 100%; height: 200px; object-fit: cover;
  background: var(--cream-alt);
}
.product-card-body { padding: 20px 24px 24px; }
.product-card-body h4 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; color: var(--dark);
}
.product-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.product-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 20px;
}
.badge-available { background: #d1fae5; color: #065f46; }
.badge-coming-soon { background: var(--gold-100); color: var(--gold-700); }

/* ── GCC Distribution ────────────────────────────────────── */
.gcc-section { background: var(--green-800); }
.gcc-country-grid { display: flex; flex-direction: column; gap: 10px; }
.gcc-country-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md); padding: 14px 18px;
  transition: var(--transition);
}
.gcc-country-item:hover {
  background: rgba(201,162,39,0.1);
  border-color: rgba(201,162,39,0.25);
}
.gcc-country-item.hq { border-color: rgba(201,162,39,0.35); background: rgba(201,162,39,0.08); }
.gcc-flag {
  width: 36px; height: 36px; border-radius: 50%; background: var(--green-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.gcc-country-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.gcc-country-status { font-size: 0.72rem; color: var(--text-light); }
.gcc-map-visual {
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  border-radius: var(--radius-xl); padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.07);
  text-align: center; position: relative; overflow: hidden;
}
.gcc-map-visual::before {
  content: ''; position: absolute; inset: 0;
  background: 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.025'%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");
}
.gcc-globe { font-size: 5rem; margin-bottom: 20px; }
.gcc-map-visual h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 10px; }
.gcc-map-visual p { color: var(--text-light); font-size: 0.9rem; }

/* ── Partners / Trusted By ───────────────────────────────── */
.partners-section { background: var(--cream-alt); }
.partner-logo-placeholder {
  height: 64px; border-radius: var(--radius-md);
  background: var(--white); border: 2px dashed rgba(0,0,0,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.75rem; font-weight: 600;
  text-align: center; padding: 10px;
  transition: var(--transition);
}
.partner-logo-placeholder:hover { border-color: var(--gold-500); color: var(--gold-700); }

/* ── Testimonials ────────────────────────────────────────── */
.testimonial-section { background: var(--green-900); }
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: Georgia, serif; font-size: 5rem; font-weight: 900;
  color: var(--gold-600); opacity: 0.35;
  position: absolute; top: -10px; left: 24px; line-height: 1;
}
.testimonial-card p {
  font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.85);
  font-style: italic; margin-bottom: 20px; padding-top: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green-600); border: 2px solid var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1rem;
  font-weight: 700; color: var(--white); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--white); font-size: 0.9rem; }
.testimonial-role { font-size: 0.75rem; color: var(--text-light); }

/* ── News Cards ──────────────────────────────────────────── */
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06); padding: 28px;
  transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.news-tag {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--gold-700); background: var(--gold-100);
  border-radius: 20px; padding: 4px 12px; margin-bottom: 12px; display: inline-block;
}
.news-card h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.news-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── FAQ / Accordion ─────────────────────────────────────── */
.accordion-item {
  background: var(--white) !important; border-radius: var(--radius-md) !important;
  border: 1px solid rgba(0,0,0,0.07) !important; margin-bottom: 8px; overflow: hidden;
}
.accordion-button {
  background: transparent !important; font-weight: 600 !important;
  color: var(--dark) !important; font-size: 0.95rem !important;
  padding: 18px 22px !important;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--green-700) !important; }
.accordion-button::after { filter: none !important; }
.accordion-body { padding: 0 22px 18px !important; color: var(--text-muted); font-size: 0.9rem; }

/* ── Stats Grid ──────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 28px 22px; text-align: center;
  box-shadow: var(--shadow-sm); transition: var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-card h3 {
  font-size: 2.2rem; font-weight: 900;
  color: var(--green-700); line-height: 1;
  font-family: 'Poppins', sans-serif; margin-bottom: 8px;
}
.stat-card h3 span { color: var(--gold-600); }
.stat-card p { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; }

/* ── Feature Cards ───────────────────────────────────────── */
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06); padding: 30px;
  transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── Page Hero Banner ────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
  padding: 80px 0 60px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,162,39,0.4), transparent);
}
.page-hero-dot-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; }
.page-hero .lead { color: rgba(255,255,255,0.72); font-size: 1.05rem; max-width: 560px; }
.breadcrumb-nav {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.breadcrumb-nav a:hover { color: var(--gold-400); }
.breadcrumb-nav .sep { opacity: 0.4; }
.breadcrumb-nav .current { color: var(--gold-400); font-weight: 600; }

/* ── Process Steps ───────────────────────────────────────── */
.process-steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; left: 27px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold-500), transparent);
}
.process-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 0 0 32px 0; position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-800); border: 3px solid var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--gold-500); flex-shrink: 0; z-index: 2;
  transition: var(--transition);
}
.process-step:hover .process-step-num { background: var(--gold-600); color: var(--green-900); }
.process-step-body h5 {
  font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 6px;
  margin-top: 14px;
}
.process-step-body p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* Horizontal process (supply chain) */
.h-process { display: flex; align-items: flex-start; gap: 0; overflow-x: auto; padding-bottom: 8px; }
.h-process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; min-width: 150px; flex: 1; position: relative;
  padding: 0 12px;
}
.h-process-step:not(:last-child)::after {
  content: '';
  position: absolute; top: 28px; left: calc(50% + 28px); right: calc(-50% + 28px);
  height: 2px; background: linear-gradient(90deg, var(--gold-500), rgba(201,162,39,0.2));
}
.h-process-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--gold-400); font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; box-shadow: 0 4px 16px rgba(26,58,42,0.2);
  flex-shrink: 0; position: relative; z-index: 2;
  transition: var(--transition);
}
.h-process-step:hover .h-process-icon { background: linear-gradient(135deg, var(--gold-700), var(--gold-500)); color: var(--white); }
.h-process-label { font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.h-process-desc { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; }

/* ── Timeline ────────────────────────────────────────────── */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.timeline-item {
  background: var(--white); border-radius: var(--radius-lg);
  border-top: 4px solid var(--gold-500); padding: 24px;
  box-shadow: var(--shadow-sm);
}
.timeline-item .year {
  font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 900;
  color: var(--gold-600); margin-bottom: 10px;
}
.timeline-item p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── Partner Cards (Stakeholders) ────────────────────────── */
.partner-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
  transition: var(--transition); text-align: center;
}
.partner-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.partner-photo {
  width: 100%; height: 220px; object-fit: cover;
  object-position: top; display: block;
}
.partner-card-body { padding: 20px 20px 24px; }
.partner-card-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.partner-card-body .role {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--gold-700); background: var(--gold-100); border-radius: 20px;
  padding: 3px 12px; display: inline-block; margin-bottom: 12px;
}
.partner-card-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }

/* ── Director Message ────────────────────────────────────── */
.director-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.06); padding: 40px;
  box-shadow: var(--shadow-md);
}
.director-photo-wrap { position: relative; }
.director-photo {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 3/4; object-fit: cover; object-position: top;
}
.director-role-badge {
  position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold-600); color: var(--green-900);
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 20px; border-radius: 20px; white-space: nowrap;
}
.director-text h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.director-text p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; text-align: justify; }
.director-signature h5 { font-weight: 700; font-size: 0.95rem; color: var(--dark); margin-bottom: 2px; }
.director-signature .company { font-weight: 800; color: var(--green-700); font-size: 0.85rem; }
.director-signature .country { color: var(--text-muted); font-size: 0.8rem; }

/* ── Values Grid ─────────────────────────────────────────── */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.value-card {
  background: var(--cream-alt); border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.05); padding: 24px 20px;
  transition: var(--transition);
}
.value-card:hover { background: var(--green-800); }
.value-card:hover h4, .value-card:hover p { color: var(--white); }
.value-card:hover .value-icon { background: rgba(201,162,39,0.2); color: var(--gold-400); }
.value-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--gold-100); color: var(--gold-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; margin-bottom: 14px;
  transition: var(--transition);
}
.value-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; color: var(--dark); transition: var(--transition); }
.value-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; transition: var(--transition); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.contact-info-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--gold-100); color: var(--gold-700);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.contact-info-item strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 3px; }
.contact-info-item span { font-size: 0.9rem; color: var(--dark); font-weight: 500; }
.contact-info-item a { color: var(--green-700); font-weight: 500; font-size: 0.9rem; }
.contact-info-item a:hover { color: var(--gold-700); }

/* Form */
.form-control, .form-select {
  background: var(--cream) !important; border: 1.5px solid rgba(0,0,0,0.1) !important;
  border-radius: var(--radius-md) !important; padding: 12px 16px !important;
  font-size: 0.9rem !important; color: var(--dark) !important;
  transition: var(--transition) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--green-500) !important;
  box-shadow: 0 0 0 3px rgba(61,138,99,0.12) !important;
  background: var(--white) !important;
}
.form-label { font-size: 0.82rem; font-weight: 600; color: var(--text-body); margin-bottom: 6px; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(0,0,0,0.06); }

/* ── Filter Sidebar (Products) ───────────────────────────── */
.filter-sidebar {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06); padding: 24px;
  position: sticky; top: 80px;
}
.filter-sidebar h5 {
  font-size: 0.8rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-muted);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.filter-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 16px; border-radius: 30px; font-size: 0.8rem; font-weight: 600;
  background: var(--cream-alt); color: var(--text-muted);
  border: 1.5px solid transparent; cursor: pointer;
  transition: var(--transition); margin-bottom: 8px; margin-right: 6px;
}
.filter-chip.active, .filter-chip:hover {
  background: var(--green-100); color: var(--green-700);
  border-color: var(--green-400);
}
.filter-chip.active { font-weight: 700; }

/* ── Login / Register ────────────────────────────────────── */
.auth-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.06); padding: 44px;
  box-shadow: var(--shadow-lg); max-width: 480px; margin: 0 auto;
}
.auth-logo { text-align: center; margin-bottom: 32px; }
.auth-logo img { width: 52px; margin: 0 auto 12px; }
.auth-logo h1 { font-size: 1.4rem; font-weight: 800; color: var(--dark); }
.auth-logo p { font-size: 0.875rem; color: var(--text-muted); }
.auth-divider {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-muted); font-size: 0.8rem; margin: 22px 0;
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1; height: 1px; background: rgba(0,0,0,0.08);
}

/* ── 404 ─────────────────────────────────────────────────── */
.page-404 {
  min-height: calc(100vh - 70px);
  display: flex; align-items: center; justify-content: center;
  background: var(--cream); text-align: center; padding: 60px 20px;
}
.err-icon { font-size: 5rem; margin-bottom: 24px; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.err-code {
  font-family: 'Poppins', sans-serif; font-size: 7rem; font-weight: 900;
  color: var(--green-800); line-height: 1; opacity: 0.08;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--green-900); color: var(--text-light);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-brand img { width: 40px; }
.footer-brand-name {
  font-family: 'Poppins', sans-serif; font-size: 1rem; font-weight: 800;
  color: var(--white); margin-bottom: 2px;
}
.footer-brand-tag { font-size: 0.7rem; color: var(--gold-500); font-weight: 600; letter-spacing: 0.06em; }
.footer-brand-desc { font-size: 0.83rem; color: var(--text-light); line-height: 1.75; margin-top: 16px; max-width: 280px; }

.footer-heading {
  font-family: 'Poppins', sans-serif; font-size: 0.78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--white);
  margin-bottom: 16px; padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.85rem; color: var(--text-light);
  transition: var(--transition); display: flex; align-items: center; gap: 8px;
}
.footer-links a:hover { color: var(--gold-400); padding-left: 4px; }

.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px;
}
.footer-contact-item i { color: var(--gold-500); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.83rem; color: var(--text-light); line-height: 1.6;
}
.footer-contact-item a:hover { color: var(--gold-400); }

.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-link {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.07); color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-link:hover { background: var(--gold-600); color: var(--green-900); transform: translateY(-2px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0; font-size: 0.78rem; color: rgba(255,255,255,0.35);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px;
}
.footer-bottom span { color: var(--gold-500); }

/* ── Back to Top + WhatsApp Float ────────────────────────── */
.back-to-top {
  position: fixed; bottom: 88px; right: 22px;
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; z-index: 500; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold-600); color: var(--green-900); }

.whatsapp-float {
  position: fixed; bottom: 30px; right: 22px;
  width: 50px; height: 50px; border-radius: 14px;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; z-index: 500;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ── AOS Overrides ───────────────────────────────────────── */
[data-aos] { will-change: transform, opacity; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse { background: var(--green-800); border-radius: var(--radius-md); padding: 16px; margin-top: 10px; border: 1px solid rgba(255,255,255,0.07); }
  .navbar-nav { gap: 4px; }
  .nav-link { color: rgba(255,255,255,0.8) !important; }
  .hero-content { padding: 5rem 0 4rem; }
  .hero-stats-card { margin-top: 32px; }
  .supply-chain-steps { overflow-x: auto; flex-nowrap: nowrap; }
  .sc-step { min-width: 140px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .director-card { padding: 24px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-card { padding: 18px 14px; }
  .stat-card h3 { font-size: 1.75rem; }
  .trust-badges { gap: 8px; }
  .trust-badge { font-size: 0.72rem; padding: 6px 12px; }
  .mini-stats { grid-template-columns: 1fr 1fr; }
  .auth-card { padding: 28px 20px; }
  .partner-photo { height: 180px; }
}
@media (max-width: 575px) {
  .hero-ctas { flex-direction: column; }
  .btn-gold, .btn-outline-white, .btn-green, .btn-outline-gold { justify-content: center; }
  .footer-bottom { text-align: center; justify-content: center; }
  .gcc-country-grid { gap: 8px; }
}

/* ── Utilities ───────────────────────────────────────────── */
.text-gold { color: var(--gold-600) !important; }
.text-green { color: var(--green-600) !important; }
.bg-green-dark { background: var(--green-800); }
.bg-cream { background: var(--cream); }
.border-gold { border-color: var(--gold-600) !important; }
.divider-gold {
  width: 48px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-600), var(--gold-400));
  margin: 16px 0;
}
.divider-gold.center { margin-left: auto; margin-right: auto; }
.py-section { padding: 80px 0; }
.py-section-sm { padding: 56px 0; }
.todo-note {
  background: #fff8e1; border: 1px dashed #c9a227; border-radius: 8px;
  padding: 10px 16px; font-size: 0.8rem; color: #7c6000; font-weight: 500;
}

/* Dropdown Menu Styles */
.dropdown-menu-dark {
  background: var(--green-900) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 8px !important;
}
.dropdown-item {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm) !important;
  transition: var(--transition) !important;
}
.dropdown-item:hover, .dropdown-item:focus, .dropdown-item.active {
  background: rgba(201, 162, 39, 0.15) !important;
  color: var(--gold-400) !important;
}
.dropdown-toggle::after {
  vertical-align: middle !important;
  margin-left: 6px !important;
}

