/* ============================================================
   DL AGRO COMMODITIES LTD. — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --green-dark:   #1A5C2A;
  --green-mid:    #2E7D42;
  --green-light:  #6DB33F;
  --gold:         #C9A84C;
  --gold-light:   #E8C96A;
  --black:        #0D1F12;
  --off-white:    #F7F9F4;
  --warm-gray:    #EAEEE8;
  --text-dark:    #1C2B1E;
  --text-muted:   #5A7260;
  --white:        #FFFFFF;
  --nav-height:   80px;
  --transition:   0.35s 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: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-gold { color: var(--gold); }
.text-green { color: var(--green-dark); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 20px;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 620px;
}

.divider-gold {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 20px 0 32px;
}

.divider-gold.center { margin: 20px auto 32px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }

.btn-green {
  background: var(--green-dark);
  color: var(--white);
}
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,92,42,0.3); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(26,92,42,0.1);
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.1); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover, .nav-links a.active { color: var(--green-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(10,35,16,0.88) 0%, rgba(26,92,42,0.72) 50%, rgba(14,40,20,0.82) 100%),
    url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?w=1800&q=80') center/cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

/* Gold grain-field texture overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge span { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-motto {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.78);
  margin-bottom: 44px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeUp 0.8s 0.45s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; }

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

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green-dark);
  padding: 28px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 12px 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--off-white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px 32px;
  border: 1px solid rgba(26,92,42,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(26,92,42,0.12); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px; height: 60px;
  background: rgba(26,92,42,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon { background: var(--green-dark); }
.service-card:hover .service-icon svg { color: var(--gold); }

.service-icon svg { width: 28px; height: 28px; color: var(--green-dark); transition: var(--transition); }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* ============================================================
   MAP / TRADE ROUTE
   ============================================================ */
.trade-route {
  background: var(--black);
  padding: 96px 0;
  overflow: hidden;
}

.trade-route-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.trade-route-text { color: var(--white); }
.trade-route-text .section-sub { color: rgba(255,255,255,0.65); }

.route-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.route-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}
.route-dot.canada { background: var(--green-light); box-shadow: 0 0 0 4px rgba(109,179,63,0.2); }
.route-dot.nigeria { background: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }

.route-point h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.route-point p  { font-size: 0.82rem; color: rgba(255,255,255,0.55); line-height: 1.5; }

.map-svg-wrap {
  position: relative;
}

.map-svg-wrap svg { width: 100%; height: auto; }

/* animated dash on path */
.trade-path {
  stroke-dasharray: 8 6;
  animation: dashMove 2.5s linear infinite;
}

@keyframes dashMove {
  to { stroke-dashoffset: -56; }
}

/* ============================================================
   PILLARS
   ============================================================ */
.pillars { background: var(--green-dark); }

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.pillar-card {
  background: rgba(255,255,255,0.05);
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.pillar-card:hover { background: rgba(255,255,255,0.1); }

.pillar-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 20px;
}

.pillar-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.pillar-card p { font-size: 0.9rem; line-height: 1.8; color: rgba(255,255,255,0.65); }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 60%, #d4a83a 100%);
  padding: 80px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--black);
  max-width: 560px;
  line-height: 1.25;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  padding: 64px 0 32px;
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img { height: 56px; margin-bottom: 16px; }

.footer-about p {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.footer-motto {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-contact-item svg { width: 15px; flex-shrink: 0; margin-top: 2px; color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  margin-left: 8px;
}

.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 15px; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--green-dark) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}

.page-hero-content { position: relative; z-index: 2; }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}

.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.founder-section { background: var(--white); }

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, var(--warm-gray), #d4ddd0);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  gap: 12px;
}

.founder-img-placeholder svg { width: 48px; color: var(--green-light); }

.founder-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green-dark);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(26,92,42,0.3);
}

.founder-badge strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  color: var(--gold);
}

.founder-badge span { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.75; }

.founder-text .linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  padding: 11px 24px;
  background: #0A66C2;
  color: var(--white);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.founder-text .linkedin-btn:hover { background: #0856a8; transform: translateY(-2px); }
.founder-text .linkedin-btn svg { width: 18px; }

.legacy-box {
  margin: 32px 0;
  padding: 24px 28px;
  border-left: 4px solid var(--gold);
  background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(26,92,42,0.04));
  border-radius: 0 8px 8px 0;
}

.legacy-box p {
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--text-muted);
}

.legacy-box strong { color: var(--green-dark); font-style: normal; }

.values-section { background: var(--warm-gray); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: 8px;
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}

.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.08); }

.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin: 16px 0 10px; }
.value-card p  { font-size: 0.88rem; line-height: 1.75; color: var(--text-muted); }

.value-icon { font-size: 2rem; }

.hubs-section { background: var(--green-dark); padding: 72px 0; }

.hubs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.hub-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 36px 32px;
  transition: var(--transition);
}

.hub-card:hover { background: rgba(255,255,255,0.12); }

.hub-flag { font-size: 2.5rem; margin-bottom: 16px; }
.hub-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.hub-card p  { font-size: 0.88rem; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ============================================================
   PRODUCTS PAGE
   ============================================================ */
.product-hero-section {
  background: var(--off-white);
  padding: 80px 0;
}

.product-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.product-img-placeholder {
  aspect-ratio: 1;
  background: linear-gradient(145deg, #c8d9c0, #a8c49e);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}

.product-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,92,42,0.2), transparent);
}

.product-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-green { background: rgba(26,92,42,0.1); color: var(--green-dark); border: 1px solid rgba(26,92,42,0.2); }
.badge-gold  { background: rgba(201,168,76,0.12); color: #8a6c1a; border: 1px solid rgba(201,168,76,0.3); }

/* Spec Table */
.specs-section { background: var(--white); }

.specs-table-wrap {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  margin-top: 40px;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.specs-table thead {
  background: var(--green-dark);
  color: var(--white);
}

.specs-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specs-table thead th:first-child { border-radius: 8px 0 0 0; }
.specs-table thead th:last-child  { border-radius: 0 8px 0 0; }

.specs-table tbody tr { border-bottom: 1px solid var(--warm-gray); transition: background var(--transition); }
.specs-table tbody tr:hover { background: rgba(26,92,42,0.04); }
.specs-table tbody tr:last-child { border-bottom: none; }

.specs-table tbody td {
  padding: 16px 24px;
  color: var(--text-dark);
}

.specs-table tbody td:first-child { font-weight: 600; color: var(--green-dark); }

.spec-value {
  font-weight: 700;
  color: var(--green-mid);
}

.spec-bar-cell { min-width: 160px; }

.spec-bar-track {
  height: 6px;
  background: var(--warm-gray);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 6px;
}

.spec-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
}

.certs-section { background: var(--off-white); padding: 72px 0; }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.cert-card {
  background: var(--white);
  border: 1px solid rgba(26,92,42,0.1);
  border-radius: 8px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}

.cert-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.cert-icon { font-size: 2.2rem; margin-bottom: 12px; }
.cert-card h4 { font-size: 0.82rem; font-weight: 700; color: var(--green-dark); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.cert-card p  { font-size: 0.78rem; color: var(--text-muted); }

.trade-terms-box {
  background: var(--green-dark);
  border-radius: 8px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.trade-terms-box .icon { font-size: 2.5rem; flex-shrink: 0; }
.trade-terms-box h4 { font-size: 1rem; font-weight: 700; color: var(--gold); margin-bottom: 6px; }
.trade-terms-box p  { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-icon {
  width: 44px; height: 44px;
  background: rgba(26,92,42,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { width: 20px; color: var(--green-dark); }

.contact-info-item h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-item p  { font-size: 0.9rem; color: var(--text-dark); line-height: 1.6; }

.direct-access-box {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  margin-top: 32px;
}

.direct-access-box h4 { font-size: 0.85rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.direct-access-box p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.contact-form-wrap h3 { font-size: 1.3rem; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.contact-form-wrap p  { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(26,92,42,0.18);
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(26,92,42,0.1);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.form-submit { width: 100%; justify-content: center; margin-top: 8px; padding: 16px; font-size: 0.92rem; }

.form-note { font-size: 0.75rem; color: var(--text-muted); text-align: center; margin-top: 12px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .trade-route-inner { grid-template-columns: 1fr; gap: 48px; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-img-wrap { max-width: 380px; }
  .founder-badge { right: 0; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  .section-pad { padding: 64px 0; }

  .nav-links { display: none; position: fixed; top: var(--nav-height); left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; align-items: center; justify-content: center; gap: 28px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-ctas { flex-direction: column; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid  { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .hubs-grid     { grid-template-columns: 1fr; }
  .certs-grid    { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
  .product-feature-grid { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-banner-inner { flex-direction: column; text-align: center; }

  .contact-form-wrap { padding: 32px 24px; }
  .founder-badge { position: static; margin-top: 20px; display: inline-block; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; }
  .certs-grid { grid-template-columns: 1fr 1fr; }
}
