/* ============================================================
   ZAILANTA ENTERPRISE LTD — Global Premium B2B Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Premium Earth Palette */
  --primary-dark:    #0E1C12; /* Deepest Forest Green */
  --primary:         #193822; /* Rich Forest Green */
  --primary-light:   #2E5D3D; /* Sage-like Green */
  --accent-earth:    #d04917; /* Ghanaian Soil Terracotta - Richer Orange */
  --accent-earth-dark:#a8340d; /* Deep Terracotta */
  --accent-gold:     #CFA84E; /* Amber Gold for Quality/Trust */
  --accent-gold-light:#E5C880; 
  --canvas-cream:    #FAF7F0; /* Soft linen warm paper canvas */
  --canvas-sand:     #F3ECE0; /* Warm beige tone for alternating sections */
  --card-white:      #FFFFFF;
  --text-ink:        #1F1A15; /* High contrast charcoal */
  --text-muted:      #5E564E; /* Soil-toned soft body text */
  --border-tint:     #E5DDCB; /* Light sand borders */
  --border-gold:     rgba(207, 168, 78, 0.25); /* Gold outline borders */
  --success:         #2A7340;
  
  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Layout & Animation */
  --max-width: 1240px;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 6px;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 12px rgba(30, 26, 21, 0.03);
  --shadow-md: 0 10px 30px rgba(30, 26, 21, 0.06);
  --shadow-lg: 0 20px 48px rgba(14, 28, 18, 0.12);
}

/* ---------- Base Resets ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-ink);
  background: var(--canvas-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5 { 
  font-family: var(--font-display); 
  font-weight: 700; 
  line-height: 1.2; 
  color: var(--primary-dark); 
}
p { font-size: 15px; color: var(--text-muted); }

/* ---------- Layout Elements ---------- */
.container { 
  max-width: var(--max-width); 
  margin: 0 auto; 
  padding: 0 24px; 
}
section { 
  padding: 100px 0; 
  position: relative;
}
.bg-sand { background: var(--canvas-sand); }
.bg-cream { background: var(--canvas-cream); }
.bg-dark { background: var(--primary-dark); color: #fff; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-earth);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 12px;
  height: 2px;
  background: var(--accent-gold);
  display: inline-block;
}
.eyebrow.on-dark {
  color: var(--accent-gold-light);
}

.section-head { 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto 60px; 
}
.section-head h2 { 
  font-size: clamp(30px, 4vw, 44px); 
  margin-bottom: 16px; 
  letter-spacing: -0.5px;
}
.section-head p { 
  font-size: 16px; 
  color: var(--text-muted); 
}
.section-head.left { 
  text-align: left; 
  margin-left: 0;
}

/* ---------- Custom Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--canvas-cream);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-earth);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.2px;
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: linear-gradient(135deg, #e15b2c 0%, #d04917 100%);
  color: #fff;
  border: none;
  box-shadow: 0 4px 14px rgba(208, 73, 23, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d04917 0%, #a8340d 100%);
  box-shadow: 0 6px 20px rgba(208, 73, 23, 0.4);
}
.btn-wa {
  background: #193822;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.1);
  box-shadow: var(--shadow-sm);
}
.btn-wa:hover {
  background: #122818;
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}
.btn-outline-dark {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}
.btn-gold {
  background: var(--accent-gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(207, 168, 78, 0.25);
}
.btn-gold:hover {
  background: var(--accent-gold-light);
  box-shadow: 0 6px 20px rgba(207, 168, 78, 0.4);
}
.btn-block { width: 100%; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ---------- Sticky Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-tint);
  transition: var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
}
.nav-logo img { height: 42px; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--primary-dark);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--accent-earth);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after {
  right: 0;
}
.nav-links a.active { color: var(--accent-earth); font-weight: 600; }
.nav-actions { display: flex; align-items: center; gap: 20px; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary);
}
.nav-call:hover { color: var(--accent-earth); }
.nav-toggle {
  display: none;
  font-size: 28px;
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--canvas-cream);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border-tint);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { max-height: 450px; }
  .nav-links a { padding: 18px 24px; width: 100%; border-bottom: 1px solid var(--border-tint); }
  .nav-call { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Premium Hero Section ---------- */
.home-hero {
  background: radial-gradient(120% 120% at 10% 20%, #291407 0%, #0e1e13 60%, #060c08 100%);
  color: #fff;
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

/* Dot grid overlay */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

/* Ambient glow blobs */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(100px);
}
.hero-blob-1 {
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(25, 56, 34, 0.4);
  filter: blur(120px);
}
.hero-blob-2 {
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(207, 168, 78, 0.12);
  filter: blur(100px);
}

/* Floating particles */
.hero-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(207, 168, 78, 0.4);
  animation: floatParticle 4s ease-in-out infinite;
}
.hero-particle-lg {
  width: 12px;
  height: 12px;
  background: rgba(207, 168, 78, 0.25);
  animation-duration: 5s;
}
@keyframes floatParticle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Hero grid layout */
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Hero eyebrow pill */
.hero-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(207, 168, 78, 0.12);
  border: 1px solid rgba(207, 168, 78, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #CFA84E;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CFA84E;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

/* Hero heading */
.hero-h1 {
  color: #fff;
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  tracking: tight;
}
.hero-gold-gradient {
  background: linear-gradient(90deg, #CFA84E 0%, #E2C978 50%, #CFA84E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero lead text */
.hero-lead {
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 36px;
}

/* Hero CTA row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.btn-hero-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #193822;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(25, 56, 34, 0.4);
  transition: all 0.3s ease;
  border: none;
}
.btn-hero-wa:hover {
  background: rgba(25, 56, 34, 0.85);
  transform: scale(1.04);
  color: #fff;
}
.btn-hero-wa svg { flex-shrink: 0; transition: transform 0.3s ease; }
.btn-hero-wa:hover svg { transform: scale(1.1); }

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

/* Hero trust line */
.hero-trust-text {
  color: rgba(255,255,255,0.38);
  font-size: 13px;
  margin-top: 4px;
}

/* Hero visual column */
.hero-visual {
  position: relative;
  display: block;
}

/* Hero image frame */
.hero-frame {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,28,18,0.75) 0%, transparent 50%);
}
.hero-frame-caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(14,28,18,0.6);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

/* Hero stat card (floating bottom-left) */
.hero-stat-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: rgba(250,247,240,0.97);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  border: 1px solid rgba(207,168,78,0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}
.hero-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(25,56,34,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-stat-icon svg { stroke: #193822; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: #0E1C12;
  line-height: 1;
  margin-bottom: 2px;
}
.hero-stat-lbl {
  font-size: 11px;
  color: rgba(94,86,78,0.6);
  font-weight: 500;
}

/* Hero export badge (top-right) */
.hero-export-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: rgba(207,168,78,0.92);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 4px 14px rgba(207,168,78,0.3);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}
.hero-export-badge svg { stroke: #0E1C12; flex-shrink: 0; }
.hero-export-badge span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #0E1C12;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 991px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { margin-top: 20px; }
  .hero-stat-card { left: 12px; bottom: -12px; }
  .hero-export-badge { right: 12px; top: -12px; }
}

/* ---------- Inner Page Banner ---------- */
.page-banner {
  background: linear-gradient(180deg, #1f311c 0%, #11200f 100%);
  color: #fff;
  padding: 160px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% -20%, rgba(207, 168, 78, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid rgba(208, 73, 23, 0.3);
  background: rgba(208, 73, 23, 0.05);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #d04917;
  margin-bottom: 24px;
}

.page-banner-badge svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.page-banner h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -1px;
}

.page-banner h1 span {
  color: #d04917;
}

.page-banner p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 120px 20px 80px;
  }
}


/* ---------- B2B Trust Strip ---------- */
.trust-strip {
  background: var(--card-white);
  padding: 45px 0;
  border-bottom: 1px solid var(--border-tint);
}
.trust-ticker-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.trust-ticker-container span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-earth);
}
.trust-ticker {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
.ticker-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-muted);
  opacity: 0.65;
  transition: var(--transition);
}
.ticker-logo:hover {
  opacity: 1;
  color: var(--primary);
}
.ticker-logo svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .trust-ticker { justify-content: center; }
}

/* ---------- About Us (2-col Premium Grid) ---------- */
.about-teaser {
  background: var(--canvas-cream);
}
.about-teaser .grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.teaser-media .stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.teaser-media .stack .lg, .teaser-media .stack .sm-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.teaser-media .stack .lg {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  position: relative;
}
.teaser-media .stack .lg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(207, 168, 78, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}
.teaser-media .stack .sm-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.teaser-media .stack .sm {
  aspect-ratio: 1/1;
  background: var(--accent-gold);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.teaser-media .stack .sm::before {
  content: '';
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
}
.teaser-media .stat {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--border-gold);
}
.teaser-media .stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-gold);
}
.teaser-media .stat .lbl {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.about-teaser .copy {
  display: flex;
  flex-direction: column;
}
.about-teaser .copy h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 20px;
}
.about-teaser .copy p {
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.divider-rule {
  width: 60px;
  height: 3px;
  background: var(--accent-earth);
  margin-bottom: 24px;
  border-radius: 2px;
}
.copy-cta {
  display: flex;
  gap: 16px;
  margin-top: 15px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .about-teaser .grid { grid-template-columns: 1fr; gap: 50px; }
}

/* ---------- Core Values Grid ---------- */
.values-section {
  background: var(--primary-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.values-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(207,168,78,0.06) 0%, transparent 60%),
                    radial-gradient(circle at 20% 80%, rgba(25,56,34,0.4) 0%, transparent 60%);
  pointer-events: none;
}
.values-section .section-head {
  text-align: center;
  margin-bottom: 60px;
}
.values-section .section-head h2 {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 12px;
}
.values-section .section-head p {
  color: rgba(255,255,255,0.55);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transition: all 0.35s cubic-bezier(0.25,0.8,0.25,1);
  overflow: hidden;
}
.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(208,73,23,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(208,73,23,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.value-card:hover::before {
  opacity: 1;
}
.value-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-earth);
  margin-bottom: 16px;
  opacity: 0.8;
}
.value-icon-wrap {
  width: 52px;
  height: 52px;
  background: rgba(208,73,23,0.12);
  border: 1px solid rgba(208,73,23,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.value-card:hover .value-icon-wrap {
  background: rgba(208,73,23,0.22);
  border-color: rgba(208,73,23,0.4);
}
.value-icon-wrap svg {
  stroke: #d04917;
}
.value-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.3;
}
.value-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.value-card:hover p {
  color: rgba(255,255,255,0.7);
}
@media (max-width: 1100px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (max-width: 600px) {
  .value-grid { grid-template-columns: 1fr; gap: 12px; }
  .values-section { padding: 70px 0; }
}


.commodities-section {
  background: var(--canvas-sand);
}
.commodities-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border-tint);
  padding-bottom: 20px;
}
.tab-btn {
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition);
}
.tab-btn:hover {
  color: var(--accent-earth);
  background: rgba(174, 78, 42, 0.05);
}
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.commodities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.commodity-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tint);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  opacity: 1;
}
.commodity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}
.commodity-card.hidden {
  display: none !important;
}
.commodity-card .card-media {
  aspect-ratio: 4/3;
  background: var(--canvas-sand);
  overflow: hidden;
  position: relative;
}
.commodity-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.commodity-card:hover .card-media img {
  transform: scale(1.05);
}
.commodity-card .card-media .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}
.commodity-card .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.commodity-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.commodity-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 12px;
}
.spec-table td {
  padding: 6px 0;
  border-bottom: 1px dashed var(--border-tint);
  color: var(--text-muted);
}
.spec-table td:nth-child(2) {
  text-align: right;
  font-weight: 600;
  color: var(--primary-dark);
}
.commodity-card .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-tint);
  padding-top: 16px;
  margin-top: auto;
}
.wa-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--accent-earth);
}
.wa-link:hover {
  color: var(--accent-earth-dark);
}

@media (max-width: 991px) {
  .commodities-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .commodities-grid { grid-template-columns: 1fr; }
}

/* ---------- Farm-to-Market Supply Chain Flow ---------- */
.flow-section {
  background: var(--canvas-cream);
}
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 40px;
}
.flow-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed var(--accent-gold);
  z-index: 1;
}
.flow-step {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tint);
  padding: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.flow-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.flow-step .num-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  border: 4px solid var(--canvas-cream);
  box-shadow: var(--shadow-sm);
}
.flow-step h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16.5px;
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.flow-step p {
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .flow-grid { grid-template-columns: 1fr; gap: 40px; }
  .flow-grid::before { display: none; }
}

/* ---------- Women Empowerment Section ---------- */
.empowerment-section {
  background: radial-gradient(120% 120% at 90% 10%, var(--primary) 0%, var(--primary-dark) 70%, #060e0a 100%);
  color: #fff;
  overflow: hidden;
}
.empowerment-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.empowerment-content h2 {
  color: #fff;
  font-size: clamp(28px, 3.8vw, 40px);
  margin-bottom: 24px;
}
.empowerment-content p {
  color: #CFC5B6;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}
.empowerment-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.empowerment-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.empowerment-stat-card .num {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}
.empowerment-stat-card .lbl {
  font-size: 13px;
  color: #E2DDD5;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.4;
}

@media (max-width: 991px) {
  .empowerment-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Sustainability & Ethical Sourcing ---------- */
.sustainability-section {
  background: var(--canvas-cream);
}
.sustain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.sustain-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tint);
  padding: 36px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.sustain-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-earth);
}
.sustain-card .icon {
  width: 50px;
  height: 50px;
  background: rgba(42, 115, 64, 0.1);
  color: var(--success);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.sustain-card .icon svg {
  width: 24px;
  height: 24px;
}
.sustain-card h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}
.sustain-card p {
  font-size: 14px;
  line-height: 1.6;
}

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

/* ---------- Interactive Operations Map ---------- */
.map-section {
  background: var(--canvas-sand);
  position: relative;
}
.map-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}
.map-canvas {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tint);
  padding: 30px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.svg-map {
  width: 100%;
  height: auto;
  display: block;
}
.map-node {
  cursor: pointer;
  outline: none;
}
.map-node circle {
  fill: var(--accent-earth);
  stroke: #fff;
  stroke-width: 2;
  transition: var(--transition);
}
.map-node circle.pulse {
  animation: pulse-ring 2s infinite;
}
.map-node:hover circle {
  fill: var(--accent-gold);
  r: 10;
}
.map-node-port circle {
  fill: var(--primary);
}

@keyframes pulse-ring {
  0% { r: 6; stroke-width: 2; stroke: rgba(174, 78, 42, 0.5); }
  50% { r: 12; stroke-width: 1; stroke: rgba(174, 78, 42, 0); }
  100% { r: 6; stroke-width: 2; stroke: rgba(174, 78, 42, 0.5); }
}

.map-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.map-detail-card {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-gold);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: block;
}
.map-detail-card h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}
.map-detail-card .location-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-earth);
  display: block;
  margin-bottom: 16px;
}
.map-detail-card p {
  font-size: 14.5px;
  margin-bottom: 16px;
}
.map-detail-list {
  font-size: 13.5px;
}
.map-detail-list li {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--border-tint);
  padding-bottom: 6px;
}
.map-detail-list li span:nth-child(2) {
  font-weight: 600;
  color: var(--primary-dark);
}

@media (max-width: 991px) {
  .map-layout { grid-template-columns: 1fr; }
}

/* ---------- Target Clients & Partnerships ---------- */
.clients-section {
  background: var(--canvas-cream);
  padding: 80px 0;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.client-card {
  background: var(--card-white);
  border: 1px solid var(--border-tint);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}
.client-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}
.client-card .icon {
  width: 36px;
  height: 36px;
  margin: 0 auto 12px;
  color: var(--primary-light);
}
.client-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--primary-dark);
}
.client-card p {
  font-size: 11px;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Contact & B2B RFQ Form ---------- */
.rfq-section {
  background: var(--canvas-sand);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.contact-side > * {
  margin-bottom: 20px;
}
.contact-card-premium {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tint);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-card-premium h3 {
  font-size: 22px;
  margin-bottom: 24px;
}
.contact-row-premium {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-row-premium:last-child {
  margin-bottom: 0;
}
.contact-row-premium .icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(174, 78, 42, 0.08);
  color: var(--accent-earth);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-row-premium .icon-circle svg {
  width: 20px;
  height: 20px;
}
.contact-row-premium h5 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.contact-row-premium span {
  font-size: 14px;
  color: var(--text-muted);
}
.contact-row-premium a:hover {
  color: var(--accent-earth);
}

.map-embed-premium {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-tint);
  box-shadow: var(--shadow-sm);
}
.map-embed-premium iframe {
  width: 100%;
  height: 250px;
  border: 0;
  display: block;
}

.form-card-premium {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tint);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-card-premium h3 {
  font-size: 24px;
  margin-bottom: 6px;
}
.form-card-premium p.intro {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group-premium {
  margin-bottom: 20px;
}
.form-group-premium label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 8px;
}
.form-group-premium input,
.form-group-premium select,
.form-group-premium textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border-tint);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  background: var(--canvas-cream);
  color: var(--text-ink);
  transition: var(--transition);
}
.form-group-premium textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group-premium input:focus,
.form-group-premium select:focus,
.form-group-premium textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(207, 168, 78, 0.1);
}
.form-note-premium {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.form-status-premium {
  font-size: 14px;
  margin-top: 16px;
  display: none;
}
.form-status-premium.ok { color: var(--success); display: block; }
.form-status-premium.err { color: #C0392B; display: block; }

@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; gap: 0; }
  .form-card-premium { padding: 30px 20px; }
}

/* ---------- Interactive Gallery ---------- */
.gallery-section {
  background: var(--canvas-cream);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-tint);
}
.gallery-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 28, 18, 0.8) 0%, rgba(14, 28, 18, 0.2) 60%, transparent 100%);
  opacity: 0.85;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: #fff;
}
.gallery-card:hover .gallery-overlay {
  opacity: 0.95;
}
.gallery-overlay span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 6px;
  font-weight: 700;
}
.gallery-overlay h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
}

@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ---------- Corporate Footer ---------- */
footer {
  background: var(--primary-dark);
  color: #CBD5E1;
  padding-top: 90px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-about img {
  height: 48px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}
.footer-about p {
  font-size: 14px;
  line-height: 1.7;
  color: #94A3B8;
  margin-bottom: 24px;
}
.footer-col h5 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul li {
  margin-bottom: 14px;
}
.footer-col ul a {
  font-size: 14px;
  color: #94A3B8;
}
.footer-col ul a:hover {
  color: var(--accent-gold);
}
.footer-contact-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: #94A3B8;
}
.footer-contact-row svg {
  width: 18px;
  height: 18px;
  color: var(--accent-gold);
  flex-shrink: 0;
}
.footer-bottom {
  padding: 30px 0;
  text-align: center;
  font-size: 13px;
  color: #64748B;
}

@media (max-width: 991px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Floating WhatsApp Widget ---------- */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- General Helpers ---------- */
.text-center { text-align: center; }
.bold { font-weight: 700; }
.accent-text { color: var(--accent-earth); }
.gold-text { color: var(--accent-gold); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }

/* ---------- Single-page/Specific Content Styling ---------- */
.timeline {
  position: relative;
  padding-left: 30px;
  border-left: 2px solid var(--border-tint);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -37px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-earth);
  border: 3px solid var(--canvas-cream);
}
.timeline-item h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 6px;
}

.team-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-card-premium {
  background: var(--card-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-tint);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.team-card-premium:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}
.team-card-premium .avatar-box {
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent-gold);
  border-bottom: 1px solid var(--border-tint);
}
.team-card-premium .info {
  padding: 20px;
}
.team-card-premium h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 4px;
}
.team-card-premium .role {
  color: var(--accent-earth);
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
}
.team-card-premium p {
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 991px) {
  .team-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 550px) {
  .team-grid-4 { grid-template-columns: 1fr; }
}

/* Services Icon Images */
.icon-img-wrap {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* WhatsApp Chatbot Widget */
.wa-widget-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.wa-chat-box {
  background: white;
  width: 320px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  margin-bottom: 15px;
  display: none;
  transform-origin: bottom right;
  animation: wa-popup 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.wa-chat-box.active {
  display: block;
}

@keyframes wa-popup {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.wa-chat-header {
  background: #128C7E;
  color: white;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wa-header-info strong {
  display: block;
  font-size: 16px;
}

.wa-header-info span {
  font-size: 12px;
  opacity: 0.8;
}

.wa-close-btn {
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.wa-chat-body {
  padding: 16px;
  background: #E5DDD5;
}

.wa-message {
  background: white;
  padding: 12px;
  border-radius: 0 12px 12px 12px;
  margin-bottom: 15px;
  font-size: 14px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  color: #333;
}

#wa-chat-form input,
#wa-chat-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
}

.wa-send-btn {
  background: #25D366;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.wa-send-btn:hover {
  background: #128C7E;
}

/* Services Page 2-Column Layout */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.service-card {
  background: var(--card-white);
  border: 1px solid var(--border-tint);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-earth);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-ink);
  margin-bottom: 24px;
  flex: 1;
}



/* ---------- Corporate Board Note ---------- */
.board-note {
  margin-top: 50px;
  background: linear-gradient(135deg, #FAF7F0 0%, #FFFFFF 100%);
  border-left: 4px solid var(--accent-earth);
  padding: 24px 32px;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 10px 30px rgba(14,28,18,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}
.board-note strong {
  font-family: var(--font-display);
  color: var(--primary-dark);
  font-size: 18px;
  display: block;
  margin-bottom: 4px;
}
.board-note-icon {
  background: rgba(208, 73, 23, 0.1);
  color: var(--accent-earth);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.board-note-icon svg {
  width: 24px;
  height: 24px;
}
@media (max-width: 600px) {
  .board-note {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }
}

/* ---------- Certifications Banner ---------- */

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

/* =============================================
   READY TO WORK TOGETHER — CTA Section
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #0e1c12 0%, #1a2e0e 40%, #193822 70%, #0a1208 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(207,168,78,0.06) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(25,56,34,0.3) 0%, transparent 60%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-heading {
  color: #fff;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.cta-sub {
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* WhatsApp CTA button — warm orange pill */
.cta-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e15b2c 0%, #c8441a 100%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(208,73,23,0.35);
  transition: all 0.3s ease;
}
.cta-btn-wa:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 10px 28px rgba(208,73,23,0.5);
  color: #fff;
}

/* Outline CTA button — white border pill */
.cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}
.cta-btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.55);
  color: #fff;
  transform: translateY(-2px);
}

