*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F8F6F1;
  --white: #FFFFFF;
  --green: #1A6B2F;
  --green-dark: #145424;
  --gold: #FFC000;
  --gold-hover: #e6ad00;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E1D8;
  --navy: #0D1017;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.nav-logo-text span {
  display: block;
  font-size: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  text-decoration: none;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  background: var(--green);
  padding: 9px 22px;
  border-radius: 4px;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--green-dark);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 4px;
}

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-menu.open { display: flex; }

.mobile-close {
  position: absolute;
  top: 24px; right: 5%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 600;
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--green); }

.mobile-menu .mobile-cta {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--white);
  background: var(--green);
  padding: 12px 36px;
  border-radius: 4px;
  margin-top: 8px;
  font-weight: 600;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 4px;
  border: 1.5px solid var(--green);
  transition: background 0.3s ease, color 0.3s ease;
  cursor: pointer;
  font-family: var(--font-body);
}

.btn-secondary:hover {
  background: var(--green);
  color: var(--white);
}

/* ── SECTION COMMON ── */
section {
  padding: 96px 5%;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 56px;
  font-size: 16px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── WhatsApp button ── */
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.wa-btn:hover { opacity: 0.88; }

footer {
  background: var(--cream);
  padding: 64px 5% 32px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--green);
}

.footer-col h5 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }

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

.footer-col ul li a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--muted);
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
}

.footer-bottom a {
  color: var(--green);
  text-decoration: none;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(rgba(13,16,23,0.55), rgba(13,16,23,0.75)), url('cargo ship.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,192,0,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.1s;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #FFFFFF;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.2s;
}

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

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.3s;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.4s;
}

/* Hero secondary button override — white border on dark bg */
.hero .btn-secondary {
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.5);
}

.hero .btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── STATS ── */
.stats {
  background: var(--green);
  padding: 48px 5%;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 24px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ── SERVICES ── */
.services {
  background: var(--cream);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  border-color: rgba(26,107,47,0.2);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,107,47,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green);
}

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

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.25;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── WHY CHOOSE ── */
.why {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(255,192,0,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-top: 2px;
}

.why-icon svg { width: 20px; height: 20px; }

.why-item h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--green);
  padding: 80px 5%;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  nav { padding: 0 4%; }

  .nav-links, .nav-cta { display: none; }

  .hamburger { display: flex; }

  .hero {
    padding: 100px 4% 64px;
    background-attachment: scroll;
    background-position: center center;
  }

  .hero h1 { font-size: 2rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }

  section { padding: 72px 4%; }

  .services-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }

  .hero-btns { flex-direction: column; }

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .cta-banner-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-banner-btns .btn-primary,
  .cta-banner-btns .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

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

/* ── PAGE HERO (shared across inner pages) ── */
.page-hero {
  padding: 140px 5% 80px;
  background: var(--green);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,192,0,0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.page-hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 20px;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--gold); }

.breadcrumb span { color: var(--gold); }

/* ── ABOUT — STORY ── */
.story { background: var(--cream); }

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 24px;
}

.story-content h2 em {
  font-style: normal;
  color: var(--green);
}

.story-content p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.story-content p:last-of-type { margin-bottom: 0; }

.story-highlights {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.story-stat h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}

.story-stat p {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0;
}

.story-image { position: relative; }

.story-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
}

.story-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.story-image::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 120px; height: 120px;
  border-top: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 8px 0 0;
  z-index: 2;
}

.story-image::after {
  content: '';
  position: absolute;
  bottom: -16px; left: -16px;
  width: 120px; height: 120px;
  border-bottom: 3px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 0 0 0 8px;
  z-index: 2;
}

/* ── ABOUT — VALUES ── */
.values { background: var(--white); }

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

.value-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.value-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.value-card:hover::after { transform: scaleX(1); }

.value-icon {
  width: 48px; height: 48px;
  background: rgba(26,107,47,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 20px;
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ── ABOUT — CEO ── */
.ceo { background: var(--cream); }

.ceo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.ceo-image {
  position: relative;
  order: 2;
}

.ceo-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ceo-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 8px;
  display: block;
}

.ceo-image::before {
  content: '';
  position: absolute;
  top: 20px; left: -20px;
  right: 20px; bottom: -20px;
  background: var(--green);
  border-radius: 8px;
  z-index: 0;
}

.ceo-name-card {
  position: absolute;
  bottom: 32px; left: -24px;
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 2;
  border-left: 3px solid var(--gold);
}

.ceo-name-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.ceo-name-card span {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ceo-content { order: 1; }

.ceo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 8px;
}

.ceo-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ceo-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 60px;
}

.ceo-content p {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.ceo-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 28px 0;
  background: var(--white);
  border-radius: 0 8px 8px 0;
}

.ceo-content blockquote p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.ceo-exp {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.ceo-exp-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  flex-shrink: 0;
}

.ceo-exp-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.ceo-exp-text strong {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2px;
}

/* ── ABOUT — MILESTONES ── */
.milestones {
  background: var(--green);
  padding: 80px 5%;
}

.milestones .section-eyebrow { color: var(--gold); }
.milestones .section-title { color: #FFFFFF; }
.milestones .section-sub { color: rgba(255,255,255,0.7); }

.timeline {
  position: relative;
  padding-left: 32px;
  max-width: 720px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 8px; bottom: 8px;
  width: 2px;
  background: rgba(255,192,0,0.3);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -38px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--green);
  box-shadow: 0 0 0 3px rgba(255,192,0,0.25);
}

.timeline-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.timeline-item p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 900px) {
  .story-grid,
  .ceo-grid { grid-template-columns: 1fr; gap: 48px; }

  .ceo-image { order: 1; }
  .ceo-content { order: 2; }

  .story-image::before,
  .story-image::after { display: none; }

  .ceo-image::before { display: none; }

  .ceo-name-card { left: 16px; bottom: 16px; }

  .values-grid { grid-template-columns: 1fr 1fr; }

  .story-highlights { gap: 20px; }
}

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
  .story-highlights { flex-wrap: wrap; gap: 24px; }
}

/* ── SERVICES PAGE ── */
.svc-block { padding: 96px 5%; }
.svc-cream { background: var(--cream); }
.svc-white { background: var(--white); }

.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.svc-grid-reverse .svc-icon-panel { order: -1; }

.svc-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(26,107,47,0.08);
  line-height: 1;
  margin-bottom: -16px;
}

.svc-lead {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.5;
}

.svc-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
}

.svc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}

.svc-list li svg {
  flex-shrink: 0;
  color: var(--green);
  background: rgba(26,107,47,0.08);
  border-radius: 50%;
  padding: 2px;
  width: 20px;
  height: 20px;
}

.svc-icon-panel {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 64px 40px;
  text-align: center;
}

.svc-icon-green {
  background: var(--green);
  color: rgba(255,255,255,0.25);
}

.svc-icon-green svg { color: rgba(255,255,255,0.3); }

.svc-icon-gold {
  background: var(--gold);
  color: rgba(13,16,23,0.15);
}

.svc-icon-gold svg { color: rgba(13,16,23,0.2); }

.svc-icon-stat { line-height: 1.2; }

.svc-icon-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.svc-icon-green .svc-icon-num { color: #FFFFFF; }
.svc-icon-gold .svc-icon-num { color: var(--navy); }

.svc-icon-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.svc-icon-green .svc-icon-label { color: rgba(255,255,255,0.65); }
.svc-icon-gold .svc-icon-label { color: rgba(13,16,23,0.55); }

/* Why strip */
.svc-why-strip {
  background: var(--green);
  padding: 72px 5%;
}

.svc-why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.svc-why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  color: rgba(255,255,255,0.55);
  padding: 24px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s, color 0.3s;
}

.svc-why-item svg { color: var(--gold); }

.svc-why-item span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.svc-why-item:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* Services responsive */
@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .svc-grid-reverse .svc-icon-panel { order: 0; }

  .svc-icon-panel { padding: 40px 24px; }

  .svc-why-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .svc-why-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-block { padding: 64px 4%; }
}

/* ── AGRO PAGE ── */
.agro-intro { background: var(--cream); }

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

.agro-intro-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agro-stat-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  transition: box-shadow 0.3s;
}

.agro-stat-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.agro-stat-card svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

.agro-stat-card strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.agro-stat-card span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* Commodities */
.agro-commodities { background: var(--white); }

.commodity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 24px;
}

.commodity-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.commodity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.commodity-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--border);
}

.commodity-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,107,47,0.06);
  color: var(--green);
}

.commodity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.commodity-card:hover .commodity-img-wrap img {
  transform: scale(1.04);
}

.commodity-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.commodity-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.commodity-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.commodity-specs {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.commodity-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: var(--text);
}

.commodity-specs li span {
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.04em;
}

/* Process */
.agro-process { background: var(--cream); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(26,107,47,0.07);
  line-height: 1;
  margin-bottom: -12px;
}

.process-icon {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 16px;
}

.process-step h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

/* Quote form section */
.agro-form-section {
  background: var(--green);
  padding: 96px 5%;
}

.agro-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
  align-items: start;
}

.agro-form-contact { margin-top: 8px; }

.agro-form-right {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
}

.agro-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  background: var(--white);
}

.form-group textarea { resize: vertical; }

/* Agro responsive */
@media (max-width: 1200px) {
  .commodity-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 900px) {
  .agro-intro-grid { grid-template-columns: 1fr; gap: 40px; }
  .agro-form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .agro-form-right { padding: 28px 20px; }
}

@media (max-width: 600px) {
  .commodity-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ── HIRE PAGE ── */
.hire-intro-strip {
  background: var(--white);
  padding: 32px 5%;
  border-bottom: 1px solid var(--border);
}

.hire-strip-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hire-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 10px 20px;
}

.hire-strip-item svg { color: var(--green); flex-shrink: 0; }

/* Catalogue */
.hire-catalogue { background: var(--cream); }

.hire-category { margin-bottom: 56px; }
.hire-category:last-child { margin-bottom: 0; }

.hire-cat-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.hire-cat-icon {
  width: 40px;
  height: 40px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
}

.hire-cat-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
}

.hire-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.hire-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  transition: transform 0.3s, box-shadow 0.3s;
}

.hire-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.hire-item-img {
  width: 100px;
  flex-shrink: 0;
  background: rgba(26,107,47,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.hire-item-body {
  padding: 20px 24px;
  flex: 1;
}

.hire-item-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.hire-item-body p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 12px;
}

.hire-item-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.hire-item-specs span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--muted);
  background: var(--cream);
  padding: 4px 10px;
  border-radius: 100px;
  border: 1px solid var(--border);
}

.hire-item-specs svg { color: var(--green); }

.hire-enquire-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s;
}

.hire-enquire-btn:hover { gap: 8px; }

/* Hire form section reuses agro-form-section styles */
.hire-form-section {
  background: var(--green);
  padding: 96px 5%;
}

/* Hire responsive */
@media (max-width: 900px) {
  .hire-items-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hire-item-card { flex-direction: column; }
  .hire-item-img { width: 100%; height: 80px; }
  .hire-strip-grid { justify-content: flex-start; }
}

/* ── GALLERY PAGE ── */
.gallery-filter-wrap {
  background: var(--white);
  padding: 24px 5%;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 72px;
  z-index: 50;
}

.gallery-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

.gallery-section { background: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  
  gap: 16px;
}

.gallery-item { position: relative; }

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-tall .gallery-img-wrap {
  height: 100%;
  min-height: 456px;
}

.gallery-item.hidden { display: none; }

/* Fix face cropping — target by src */
img[src="images/22.webp"],
img[src="images/about.jpeg"] {
  object-position: top center !important;
}
.gallery-img-wrap {
  width: 100%;
  height: 320px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: rgba(26,107,47,0.07);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  position: absolute;
  inset: 0;
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.05);
}

/* Placeholder icon shown when image missing */
.gallery-placeholder-icon {
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--green);
  opacity: 0.4;
}

.gallery-placeholder-icon { display: flex; }
.gallery-img-wrap.has-image .gallery-placeholder-icon { display: none; }
.gallery-img-wrap.img-missing img { display: none; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,16,23,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-zoom {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.gallery-zoom:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

.gallery-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  font-weight: 500;
  text-align: center;
}

.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--muted);
}

.gallery-empty i { margin-bottom: 16px; opacity: 0.4; }
.gallery-empty p { font-size: 15px; }
.gallery-empty code {
  background: var(--border);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,12,16,0.94);
  cursor: pointer;
}

.lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-inner img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
.footer-contact-item a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--green); }

.lightbox-caption {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.2); }

/* Gallery responsive */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    
  }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }
}

@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    
  }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-filter-wrap { top: 64px; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ── CONTACT PAGE ── */
.contact-cards-section {
  background: var(--white);
  padding: 80px 5% 64px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.contact-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}

.contact-card:hover::after { transform: scaleX(1); }

.contact-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(26,107,47,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.contact-card p a {
  color: var(--muted);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.contact-card p a:hover { color: var(--green); }

.contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  transition: gap 0.2s;
}

.contact-card-link:hover { gap: 8px; }

.contact-card-note {
  font-size: 12px;
  color: var(--muted);
  font-style: italic;
}

/* Main form + map section */
.contact-main-section {
  background: var(--cream);
  padding: 80px 5% 96px;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 8px;
}

.contact-form-sub {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 32px;
}

.contact-form-wrap .agro-form {
  background: var(--white);
  padding: 36px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

/* Map */
.contact-map {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

/* Info cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
}

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,107,47,0.08);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.contact-info-item span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact responsive */
@media (max-width: 1024px) {
  .contact-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

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

@media (max-width: 600px) {
  .contact-cards-grid { grid-template-columns: 1fr; }
  .contact-form-wrap .agro-form { padding: 24px 16px; }
}

/* ── PRIVACY PAGE ── */
.privacy-section {
  background: var(--cream);
  padding: 80px 5% 96px;
}

.privacy-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-intro {
  background: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 40px;
}

.privacy-intro p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
}

.privacy-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.privacy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-block-icon {
  width: 40px;
  height: 40px;
  background: rgba(26,107,47,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 4px;
}

.privacy-block-content h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.privacy-block-content p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.privacy-block-content p:last-child { margin-bottom: 0; }

.privacy-block-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.privacy-block-content ul li {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 4px;
}

.privacy-block-content strong { color: var(--text); }

.privacy-contact {
  margin-top: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.privacy-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}

.privacy-contact-item svg {
  flex-shrink: 0;
  color: var(--green);
  margin-top: 2px;
}

@media (max-width: 600px) {
  .privacy-block { flex-direction: column; gap: 12px; }
}