:root {
  --navy-50: #f0f5fb;
  --navy-600: #1e4a7c;
  --navy-700: #163d68;
  --navy-800: #0f2d52;
  --navy-900: #091f3a;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: Inter, system-ui, -apple-system, sans-serif; color: #111827; line-height: 1.6; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

/* Header */
header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-link img { height: 40px; width: auto; }
.logo-text { font-size: 1.1rem; font-weight: 700; color: var(--navy-800); white-space: nowrap; }
.logo-text span { color: #4b7bb5; }
.logo-text small { font-size: 0.75rem; font-weight: 400; color: #6b7280; margin-left: 4px; }

nav.desktop-nav { display: flex; gap: 1rem; align-items: center; }
nav.desktop-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  padding: 0.5rem 0.5rem;
  white-space: nowrap;
  transition: color 0.2s;
}
nav.desktop-nav a:hover, nav.desktop-nav a.active { color: var(--navy-800); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  color: #374151;
}
.mobile-menu-btn:hover { background: #f3f4f6; }
.mobile-menu-btn svg { width: 22px; height: 22px; }
.mobile-nav {
  display: none;
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 0.5rem;
}
.mobile-nav a {
  display: block;
  padding: 0.625rem 0.75rem;
  font-size: 0.9rem;
  color: #374151;
  border-radius: 6px;
}
.mobile-nav a:hover { background: #f9fafb; color: var(--navy-800); }
.mobile-nav.open { display: block; }

@media (max-width: 768px) {
  nav.desktop-nav { display: none; }
  .mobile-menu-btn { display: flex; align-items: center; }
}

/* Footer */
footer {
  background: var(--navy-900);
  color: #fff;
  padding: 3rem 1.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.footer-logo img { height: 48px; width: auto; filter: brightness(0) invert(1); }
.footer-logo-text { font-size: 1.1rem; font-weight: 700; color: #fff; }
.footer-logo-text span { color: #93c5fd; }
.footer-logo-text small { font-size: 0.75rem; font-weight: 400; color: #9ca3af; margin-left: 4px; }
footer p.desc { color: #d1d5db; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1rem; }
.footer-social a { color: #9ca3af; transition: color 0.2s; }
.footer-social a:hover { color: #fff; }
footer h3 { font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.5rem; }
footer ul li a { color: #d1d5db; font-size: 0.875rem; transition: color 0.2s; }
footer ul li a:hover { color: #fff; }
.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { color: #9ca3af; font-size: 0.8rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { color: #9ca3af; font-size: 0.8rem; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

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

/* Utilities */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 4rem 1.5rem; }
.section-sm { padding: 2rem 1.5rem; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }

/* Typography */
h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.2; }
h2 { font-size: 1.875rem; font-weight: 700; line-height: 1.2; }
h3 { font-size: 1.25rem; font-weight: 600; }
p { color: #4b5563; }
.text-gray { color: #6b7280; }
.text-white { color: #fff; }
.text-navy { color: var(--navy-800); }
.text-blue { color: #2563eb; }
.text-green { color: #16a34a; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}
.btn-primary { background: var(--navy-800); color: #fff; }
.btn-primary:hover { background: var(--navy-700); }
.btn-white { background: #fff; color: var(--navy-800); }
.btn-white:hover { background: #f0f5fb; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-green { background: #fff; color: #15803d; }
.btn-green:hover { background: #f0fdf4; }
.btn-outline-green { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline-green:hover { background: rgba(255,255,255,0.1); }

/* Cards */
.card {
  background: #fff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.card-gray { background: #f9fafb; }
.card-blue { background: linear-gradient(135deg, #eff6ff, #e0e7ff); border: 2px solid #bfdbfe; }
.card-blue:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.12); transform: scale(1.03); }

/* Icon box */
.icon-box {
  width: 3rem;
  height: 3rem;
  background: var(--navy-800);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.icon-box svg { width: 1.25rem; height: 1.25rem; color: #fff; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-circle {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}
.icon-circle svg { width: 1.5rem; height: 1.5rem; color: #fff; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-circle-gray {
  width: 4rem;
  height: 4rem;
  background: #e5e7eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.icon-circle-gray svg { width: 1.5rem; height: 1.5rem; color: #374151; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.icon-circle-green {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #22c55e, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle-green svg { width: 2rem; height: 2rem; color: #fff; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 1.5rem; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: center; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: center; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4, .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
}

/* Backgrounds */
.bg-white { background: #fff; }
.bg-gray { background: #f9fafb; }
.bg-navy-gradient { background: linear-gradient(135deg, var(--navy-800), var(--navy-600)); color: #fff; }
.bg-blue { background: #2563eb; color: #fff; }
.bg-green-gradient { background: linear-gradient(135deg, #166534, #15803d, #059669); color: #fff; }
.bg-green-light { background: #f0fdf4; }
.bg-navy-light { background: var(--navy-50); }

/* Hero section */
.hero { padding: 3rem 1.5rem; text-align: center; }
.hero-card {
  background: linear-gradient(135deg, #fff, #eff6ff, #f0f5fb);
  border-radius: 1.5rem;
  padding: 2.5rem 3rem;
  border: 1px solid #dbeafe;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 1.5rem auto;
}
.hero-card p { font-size: 1.15rem; font-weight: 500; color: var(--navy-800); line-height: 1.7; }

/* Contact card */
.contact-card {
  background: var(--navy-800);
  color: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto;
}
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-item svg { width: 1.25rem; height: 1.25rem; color: #93c5fd; fill: none; stroke: currentColor; stroke-width: 2; flex-shrink: 0; margin-top: 2px; }
.contact-item .label { font-weight: 500; margin-bottom: 0.25rem; color: #fff; }
.contact-item a, .contact-item .value { color: #93c5fd; font-size: 0.9rem; }
.contact-item a:hover { color: #fff; }

/* Stats */
.stat-box { text-align: center; padding: 1.5rem; border-radius: 0.75rem; }
.stat-box .num { font-size: 2rem; font-weight: 700; margin-bottom: 0.25rem; }
.stat-box .lbl { font-size: 0.8rem; color: #6b7280; }
.stat-blue { background: #eff6ff; }
.stat-blue .num { color: #2563eb; }
.stat-green { background: #f0fdf4; }
.stat-green .num { color: #16a34a; }
.stat-purple { background: #faf5ff; }
.stat-purple .num { color: #9333ea; }

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid;
}
.badge-green { background: #dcfce7; color: #166534; border-color: #bbf7d0; }
.badge-gray { background: #f3f4f6; color: #9ca3af; border-color: #e5e7eb; }
.badge-green-outline { background: transparent; color: #16a34a; border-color: #86efac; }
.badge-secondary { background: #dcfce7; color: #166534; border-color: #bbf7d0; }

/* Country card */
.country-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 1rem;
  transition: box-shadow 0.2s;
}
.country-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.country-header { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.75rem; }
.flag { font-size: 1.5rem; flex-shrink: 0; }
.country-name { font-size: 0.875rem; font-weight: 600; color: #111827; margin-bottom: 0.5rem; }
.sector-badges { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.country-desc { font-size: 0.75rem; color: #374151; line-height: 1.5; margin-bottom: 0.5rem; }
.country-key { font-size: 0.75rem; color: #2563eb; font-weight: 500; }

/* Why us icon */
.advantage-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 2rem; }
.advantage-icon {
  width: 3rem;
  height: 3rem;
  background: var(--navy-800);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.advantage-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; fill: none; stroke: currentColor; stroke-width: 2; }

/* CTA section */
.cta-section { padding: 4rem 1.5rem; text-align: center; }
.cta-box { background: var(--navy-800); color: #fff; border-radius: 1rem; padding: 2.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.cta-box h2 { color: #fff; margin-bottom: 1rem; }
.cta-box p { color: #93c5fd; margin-bottom: 1.5rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-box-green { background: #2563eb; }
.cta-box-green p { color: #bfdbfe; }

/* Agriculture product card */
.product-card { border: 2px solid #e5e7eb; border-radius: 0.75rem; padding: 2rem; transition: all 0.2s; }
.product-card:hover { border-color: #bbf7d0; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
.product-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.product-header h3 { font-size: 1.375rem; font-weight: 700; color: #111827; }

/* Highlight box */
.highlight-box { background: #f0fdf4; border-left: 4px solid #22c55e; padding: 1.5rem; border-radius: 0 0.5rem 0.5rem 0; }
.highlight-box h4 { font-weight: 600; color: #111827; margin-bottom: 0.75rem; }
.highlight-box ul { list-style: none; }
.highlight-box ul li { color: #4b5563; font-size: 0.9rem; padding: 0.25rem 0; }

/* Info box navy */
.info-box-navy { background: var(--navy-800); color: #fff; padding: 1.5rem; border-radius: 0.5rem; margin-top: 1rem; }
.info-box-navy h4 { font-weight: 600; margin-bottom: 0.75rem; color: #fff; }
.info-box-navy p { color: #bfdbfe; }

/* Gray highlight box */
.highlight-box-gray { background: #f3f4f6; padding: 1.5rem; border-radius: 0.5rem; }
.highlight-box-gray h4 { font-weight: 600; color: #111827; margin-bottom: 0.5rem; }
.highlight-box-gray ul { list-style: disc; padding-left: 1.25rem; }
.highlight-box-gray ul li { color: #4b5563; font-size: 0.875rem; padding: 0.2rem 0; }

/* Legal pages */
.legal-section { margin-bottom: 2.5rem; }
.legal-section h2 { font-size: 1.375rem; font-weight: 600; color: #111827; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid #e5e7eb; }
.legal-section h3 { font-size: 1.1rem; font-weight: 500; color: #111827; margin-bottom: 0.5rem; margin-top: 1.25rem; }
.legal-section p { color: #4b5563; line-height: 1.7; margin-bottom: 0.75rem; }
.legal-section ul { list-style: disc; padding-left: 1.5rem; color: #4b5563; }
.legal-section ul li { padding: 0.25rem 0; line-height: 1.6; }

/* Flex helpers */
.flex-center { display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.flex-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.flex-gap { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* Industry page subheading */
.page-header { text-align: center; margin-bottom: 3rem; }
.page-header h1 { color: #111827; margin-bottom: 1rem; }
.page-header p { color: #6b7280; font-size: 1.1rem; max-width: 640px; margin: 0 auto; }

/* Trade Documentation page */
.doc-field { }
.doc-label { font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: #9ca3af; margin-bottom: 0.25rem; }
.doc-value { font-size: 0.975rem; color: #111827; font-weight: 500; }
.doc-mono { font-family: 'Courier New', Courier, monospace; font-size: 0.9rem; background: #f3f4f6; display: inline-block; padding: 0.2rem 0.5rem; border-radius: 0.25rem; }

/* Light blue CTA button (used on dark backgrounds) */
.btn-primary-light { display: inline-flex; align-items: center; gap: 0.5rem; background: #fff; color: #1e3a5f; font-weight: 600; padding: 0.75rem 1.75rem; border-radius: 0.5rem; text-decoration: none; transition: background 0.2s; }
.btn-primary-light:hover { background: #bfdbfe; }
