/* ===================================================
   L BOHE VENTURES — Design System & Global Styles
   =================================================== */

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

/* --- CSS Custom Properties --- */
:root {
  /* Primary Green Palette (formerly Navy) */
  --navy-950: #05190e;
  --navy-900: #0a2c1a;
  --navy-800: #0f3d24;
  --navy-700: #134e2e;
  --navy-600: #185f38;
  --navy-500: #208251;
  --navy-400: #2cb16d;
  --navy-300: #52c88d;
  --navy-200: #88dcaa;
  --navy-100: #c2eed5;
  --navy-50: #f0fbf5;

  /* Accent Green Palette (formerly Gold) */
  --gold-700: #165b38;
  --gold-600: #1a6e44;
  --gold-500: #208251;
  --gold-400: #2cbd6f;
  --gold-300: #52cc8b;
  --gold-200: #81dcab;
  --gold-100: #bbedd4;
  --gold-50: #e8f7ef;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #f8f9fb;
  --gray-100: #f1f3f6;
  --gray-200: #e5e7ec;
  --gray-300: #d1d5dc;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Semantic Colors */
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;

  /* Font Sizes (fluid) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  --text-7xl: 4.5rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 44, 26, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(10, 44, 26, 0.07), 0 2px 4px -2px rgba(10, 44, 26, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(10, 44, 26, 0.08), 0 4px 6px -4px rgba(10, 44, 26, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(10, 44, 26, 0.1), 0 8px 10px -6px rgba(10, 44, 26, 0.05);
  --shadow-2xl: 0 25px 50px -12px rgba(10, 44, 26, 0.2);
  --shadow-gold: 0 4px 14px rgba(32, 130, 81, 0.25);
  --shadow-card: 0 1px 3px rgba(10, 44, 26, 0.06), 0 1px 2px rgba(10, 44, 26, 0.04);
  --shadow-card-hover: 0 12px 28px rgba(10, 44, 26, 0.12), 0 4px 8px rgba(10, 44, 26, 0.06);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --container-max: 1280px;
  --container-narrow: 960px;
  --nav-height: 80px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--gray-800);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.container--narrow {
  max-width: var(--container-narrow);
}

/* --- Section --- */
.section {
  padding: var(--space-24) 0;
}

.section--sm {
  padding: var(--space-16) 0;
}

.section--lg {
  padding: var(--space-32) 0;
}

.section--navy {
  background-color: var(--navy-900);
  color: var(--white);
}

.section--light {
  background-color: var(--gray-50);
}

.section--gold-accent {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--white);
}

/* --- Section Headings --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-500);
  margin-bottom: var(--space-4);
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold-500);
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.section--navy .section-title,
.section--gold-accent .section-title {
  color: var(--white);
}

.section-subtitle {
  font-size: var(--text-lg);
  color: var(--gray-500);
  max-width: 640px;
  line-height: 1.7;
}

.section--navy .section-subtitle,
.section--gold-accent .section-subtitle {
  color: var(--navy-200);
}

.section-header {
  margin-bottom: var(--space-16);
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-subtitle {
  margin: 0 auto;
}

/* --- Gold Divider --- */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-full);
  margin: var(--space-6) 0;
}

.section-header--center .gold-divider {
  margin: var(--space-6) auto;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background-color var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar--transparent {
  background-color: transparent;
}

.navbar--scrolled {
  background-color: rgba(10, 44, 26, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  z-index: 1001;
}

.navbar__logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-300));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: var(--text-lg);
  color: var(--navy-900);
}

.navbar__logo-text span {
  color: var(--gold-400);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.navbar__link {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background-color var(--transition-fast);
  letter-spacing: 0.01em;
}

.navbar__link:hover,
.navbar__link--active {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
}

.navbar__link--active {
  color: var(--gold-400);
}

.navbar__cta {
  margin-left: var(--space-4);
}

/* Mobile Menu Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: var(--space-2);
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(32, 130, 81, 0.4);
}

.btn--outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn--outline:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
  background: rgba(32, 130, 81, 0.08);
  transform: translateY(-2px);
}

.btn--outline-dark {
  border: 1.5px solid var(--navy-200);
  color: var(--navy-700);
  background: transparent;
}

.btn--outline-dark:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-2px);
}

.btn--lg {
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base);
  border-radius: var(--radius-lg);
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-xs);
}

.btn--navy {
  background: var(--navy-800);
  color: var(--white);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 25, 14, 0.92) 0%,
    rgba(10, 44, 26, 0.85) 40%,
    rgba(15, 61, 36, 0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--nav-height);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(32, 130, 81, 0.12);
  border: 1px solid rgba(32, 130, 81, 0.25);
  border-radius: var(--radius-full);
  color: var(--gold-300);
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--space-8);
  backdrop-filter: blur(8px);
}

.hero__badge svg {
  width: 16px;
  height: 16px;
}

.hero__title {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-7xl));
  font-weight: 900;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: var(--space-6);
  letter-spacing: -0.03em;
}

.hero__title .text-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(var(--text-lg), 2vw, var(--text-xl));
  color: var(--navy-200);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: var(--space-12);
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat-value {
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.hero__stat-label {
  font-size: var(--text-sm);
  color: var(--navy-300);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hero Decorative Elements */
.hero__decoration {
  position: absolute;
  z-index: 1;
}

.hero__decoration--1 {
  top: 20%;
  right: 8%;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(32, 130, 81, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero__decoration--2 {
  bottom: 15%;
  right: 15%;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(32, 130, 81, 0.06);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite reverse;
}

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

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-height) + var(--space-20)) 0 var(--space-20);
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-800) 100%);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(32, 130, 81, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
  opacity: 0.3;
}

.page-hero__title {
  font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}

.page-hero__subtitle {
  font-size: var(--text-xl);
  color: var(--navy-200);
  max-width: 600px;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-size: var(--text-sm);
  color: var(--navy-300);
}

.page-hero__breadcrumb a {
  color: var(--navy-300);
  transition: color var(--transition-fast);
}

.page-hero__breadcrumb a:hover {
  color: var(--gold-400);
}

.page-hero__breadcrumb svg {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

/* ============================================
   CARDS
   ============================================ */

/* Feature Card */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-slow);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold-100);
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  color: var(--gold-600);
}

.feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.feature-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}

.feature-card__text {
  color: var(--gray-500);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* Mission/Vision Card */
.mission-card {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-12);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 130, 81, 0.1);
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at top right, rgba(32, 130, 81, 0.08), transparent 70%);
}

.mission-card__label {
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.mission-card__label svg {
  width: 18px;
  height: 18px;
}

.mission-card__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.mission-card__text {
  color: var(--navy-200);
  line-height: 1.8;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.product-card:hover .product-card__img img {
  transform: scale(1.08);
}

.product-card__img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 44, 26, 0.4), transparent 50%);
}

.product-card__body {
  padding: var(--space-5) var(--space-6);
}

.product-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-900);
  text-align: center;
}

/* Icon Card (smaller) */
.icon-card {
  text-align: center;
  padding: var(--space-8);
}

.icon-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-5);
  color: var(--gold-400);
  transition: all var(--transition-base);
}

.icon-card__icon svg {
  width: 28px;
  height: 28px;
}

.icon-card:hover .icon-card__icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(10, 44, 26, 0.2);
}

.icon-card__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-2);
}

.icon-card__text {
  color: var(--gray-500);
  font-size: var(--text-sm);
}

/* Industry Card */
.industry-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.industry-card:hover {
  border-color: var(--gold-200);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.industry-card__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-600);
}

.industry-card__icon svg {
  width: 24px;
  height: 24px;
}

.industry-card__title {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--navy-900);
}

/* ============================================
   GRIDS
   ============================================ */
.grid {
  display: grid;
  gap: var(--space-8);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }

.grid--products {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: var(--space-6);
}

.grid--industries {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-4);
}

/* ============================================
   SERVICE BLOCK (alternating layout)
   ============================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--gray-100);
}

.service-block:last-child {
  border-bottom: none;
}

.service-block--reverse .service-block__content {
  order: -1;
}

.service-block__visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
}

.service-block__visual-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-10);
}

.service-block__visual-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(32, 130, 81, 0.1);
  border: 2px solid rgba(32, 130, 81, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

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

.service-block__number {
  font-size: var(--text-6xl);
  font-weight: 900;
  color: var(--gold-100);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.service-block__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.service-block__text {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.service-block__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.service-block__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--gray-700);
}

.service-block__list li svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  color: var(--gold-500);
  margin-top: 2px;
}

/* ============================================
   CATEGORY TABS / FILTER
   ============================================ */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding: var(--space-6) 0;
  margin-bottom: var(--space-8);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: var(--nav-height);
  background: var(--white);
  z-index: 50;
}

.category-tab {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--gray-500);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.category-tab:hover {
  color: var(--navy-700);
  background: var(--gray-50);
}

.category-tab--active {
  color: var(--navy-900);
  background: var(--gold-50);
  border-color: var(--gold-200);
  font-weight: 600;
}

/* ============================================
   PRODUCT CATEGORY SECTION
   ============================================ */
.product-category {
  margin-bottom: var(--space-16);
  scroll-margin-top: calc(var(--nav-height) + 100px);
}

.product-category__header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-4);
  border-bottom: 2px solid var(--gray-100);
}

.product-category__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.product-category__icon svg {
  width: 24px;
  height: 24px;
}

.product-category__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy-900);
}

/* ============================================
   FORM STYLES
   ============================================ */
.form-group {
  margin-bottom: var(--space-6);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: var(--space-2);
}

.form-label span {
  color: var(--gold-500);
  margin-left: 2px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold-400);
  box-shadow: 0 0 0 3px rgba(32, 130, 81, 0.12);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--gray-400);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-4) center;
  padding-right: var(--space-10);
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-100);
}

/* ============================================
   CONTACT INFO
   ============================================ */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-800));
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(32, 130, 81, 0.1), transparent 70%);
  border-radius: 50%;
}

.contact-info-item {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-item__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(32, 130, 81, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.contact-info-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-info-item__label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--navy-300);
  margin-bottom: var(--space-1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item__value {
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.6;
}

.contact-info-item__value a {
  color: var(--gold-300);
  transition: color var(--transition-fast);
}

.contact-info-item__value a:hover {
  color: var(--gold-400);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-950);
  color: var(--white);
  padding-top: var(--space-20);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  color: var(--navy-300);
  font-size: var(--text-sm);
  margin-top: var(--space-5);
  line-height: 1.8;
  max-width: 320px;
}

.footer__heading {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-400);
  margin-bottom: var(--space-6);
}

.footer__links li {
  margin-bottom: var(--space-3);
}

.footer__links a {
  color: var(--navy-300);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

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

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  color: var(--gold-400);
  margin-top: 3px;
}

.footer__contact-item span {
  color: var(--navy-300);
  font-size: var(--text-sm);
  line-height: 1.5;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-6) 0;
  font-size: var(--text-sm);
  color: var(--navy-400);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-6);
}

.footer__bottom-links a {
  color: var(--navy-400);
  transition: color var(--transition-fast);
}

.footer__bottom-links a:hover {
  color: var(--gold-400);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger--visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(3) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(4) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(5) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(6) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(7) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger--visible > *:nth-child(8) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }

/* ============================================
   MISC UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-gold { color: var(--gold-500); }
.text-navy { color: var(--navy-900); }
.text-muted { color: var(--gray-500); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-8 { margin-bottom: var(--space-8); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
  }

  .service-block {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .service-block--reverse .service-block__content {
    order: 0;
  }

  .hero__stats {
    gap: var(--space-8);
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 70px;
  }

  .section {
    padding: var(--space-16) 0;
  }

  .section--lg {
    padding: var(--space-20) 0;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-900);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-2);
    transform: translateX(100%);
    transition: transform var(--transition-slow);
    z-index: 999;
  }

  .navbar__links.active {
    transform: translateX(0);
  }

  .navbar__link {
    font-size: var(--text-xl);
    padding: var(--space-4) var(--space-8);
  }

  .navbar__cta {
    margin-left: 0;
    margin-top: var(--space-4);
  }

  .navbar__toggle {
    display: flex;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--products {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__stats {
    flex-direction: column;
    gap: var(--space-6);
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }

  .category-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-4);
  }

  .category-tabs::-webkit-scrollbar {
    display: none;
  }

  .category-tab {
    white-space: nowrap;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-4);
  }

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

  .hero__title {
    font-size: var(--text-4xl);
  }

  .form-card {
    padding: var(--space-6);
  }

  .contact-info-card {
    padding: var(--space-8);
  }
}

/* ============================================
   GRADIENT TEXT PLACEHOLDER IMAGES
   ============================================ */
.placeholder-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-4xl);
  color: rgba(255,255,255,0.3);
}

.placeholder-img--grains {
  background: linear-gradient(135deg, #8B6914, #D4A84B, #A67C28);
}

.placeholder-img--pulses {
  background: linear-gradient(135deg, #6B4423, #A0522D, #8B7355);
}

.placeholder-img--oils {
  background: linear-gradient(135deg, #DAA520, #F5DEB3, #B8860B);
}

.placeholder-img--spices {
  background: linear-gradient(135deg, #B22222, #FF6347, #FF8C00);
}

.placeholder-img--produce {
  background: linear-gradient(135deg, #228B22, #32CD32, #90EE90);
}

.placeholder-img--feed {
  background: linear-gradient(135deg, #8B7355, #C4A882, #A0522D);
}

.placeholder-img--beverage {
  background: linear-gradient(135deg, #3B2717, #6B3A2E, #8B4513);
}

.placeholder-img--industrial {
  background: linear-gradient(135deg, #4A4A4A, #808080, #696969);
}

/* ============================================
   COUNTER ANIMATION
   ============================================ */
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(32, 130, 81, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(32, 130, 81, 0); }
}

.pulse-gold {
  animation: pulse-gold 2s ease-in-out infinite;
}

/* Success message for form */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-12);
}

.form-success.active {
  display: block;
}

.form-success__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--success), #34d399);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: var(--white);
}

.form-success__icon svg {
  width: 40px;
  height: 40px;
}

.form-success__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-3);
}

.form-success__text,
.form-success__message {
  color: var(--gray-500);
}

/* ============================================
   CONTACT PAGE — Additional Styles
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-10);
  align-items: start;
}

.contact-info-card__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.contact-info-card__subtitle {
  font-size: var(--text-sm);
  color: var(--navy-300);
  margin-bottom: var(--space-10);
  line-height: 1.7;
}

.contact-info-card__items {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-info-card__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(32, 130, 81, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}

.contact-info-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.contact-info-card__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy-300);
}

.contact-info-card__value {
  font-size: var(--text-base);
  color: var(--white);
  line-height: 1.5;
}

a.contact-info-card__value {
  color: var(--gold-300);
  transition: color var(--transition-fast);
}

a.contact-info-card__value:hover {
  color: var(--gold-400);
}

.form-card__title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: var(--space-2);
}

.form-card__subtitle {
  font-size: var(--text-sm);
  color: var(--gray-500);
  margin-bottom: var(--space-8);
}

.form-required {
  color: var(--gold-500);
}

/* Contact intro section styling */
.section__title {
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--navy-900);
  margin-bottom: var(--space-4);
  text-align: center;
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.8;
}

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