/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1F3D2B;
  --secondary-color: #C2A878;
  --text-dark: #1A1A1A;
  --text-light: #4A4A4A;
  --bg-light: #F6F1E7; /* lighter soft gold for consistency */
  --bg-white: #ffffff;
  --border-color: #EBE2CF;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  background: var(--primary-color);
  border-bottom: 1px solid var(--secondary-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.16);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0;
  color: inherit;
}

.logo {
  height: 94px;
  width: auto;
  object-fit: contain;
  margin-right: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  margin-left: -12px; /* counteracts internal whitespace in logo PNG */
}

.brand-name {
  font-size: 19px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin: 0;
}

.brand-tagline {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3px;
  line-height: 1.4;
  margin: 2px 0 0 0;
  opacity: 1;
}


.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1px;
  transition: color 0.25s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-color);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--bg-light);
  padding: 88px 0 68px;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero-line-1 {
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero h1 {
  font-size: 50px;
  color: var(--primary-color);
  font-weight: 800;
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.6px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-line-3 {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Key facts under hero */
.key-facts {
  margin-top: 12px;
  color: rgba(31,61,43,0.75); /* subtle tie to primary */
  font-size: 14px;
  letter-spacing: 0.25px;
  font-weight: 500;
}

.key-facts-strip {
  background: var(--bg-light);
  padding: 16px 0 14px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}
.key-facts-strip .key-facts {
  margin: 0;
}

/* MICRO TRUST */
.micro-trust {
  background: var(--bg-light);
  padding: 32px 0 18px;
  text-align: center;
  border-top: 1px solid var(--border-color);
}
.micro-trust p {
  margin: 0;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1px;
}
.micro-trust .micro-sub {
  margin-top: 6px;
  color: var(--text-light);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.1px;
}

/* TRUST STRIP */
.trust-strip {
  background: var(--bg-light);
  padding: 56px 0 40px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}
.trust-strip h3 {
  text-align: center;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.3px;
  margin-bottom: 28px;
}
.trust-items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
  justify-items: center;
  margin: 0 0 14px 0;
  padding: 0;
}
.trust-items li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.trust-items .icon {
  color: var(--primary-color);
  opacity: 0.9;
}
.trust-items .label {
  color: var(--text-dark);
  font-size: 14px;
  letter-spacing: 0.1px;
}
.trust-note {
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

@media (max-width: 900px) {
  .trust-items {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 16px;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.2px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-white);
  box-shadow: 0 3px 10px rgba(31, 61, 43, 0.25);
}

.btn-primary:hover {
  background: #162821;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(31, 61, 43, 0.35);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--bg-white);
  box-shadow: 0 3px 10px rgba(194, 168, 120, 0.25);
}

.btn-secondary:hover {
  background: #B0986C;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(194, 168, 120, 0.35);
}

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-indicators {
  background: var(--bg-light);
  padding: 45px 0;
  border-bottom: 1px solid var(--border-color);
}

.indicators-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.indicator-item {
  text-align: center;
  transition: transform 0.3s ease;
}

.indicator-item:hover {
  transform: translateY(-4px);
}

.indicator-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  display: block;
  color: var(--primary-color);
  transition: all 0.3s ease;
  stroke-width: 1.5;
}

.indicator-item:hover .indicator-icon {
  transform: scale(1.1);
  color: var(--secondary-color);
}

.indicator-item p {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 15px;
  margin: 0;
  letter-spacing: 0.2px;
  line-height: 1.6;
}

/* ============================================
   PRODUCT PREVIEW
   ============================================ */
.product-preview {
  background: var(--bg-white); /* reduce banding for premium minimal feel */
  padding: 72px 0;
  border-top: 1px solid var(--border-color);
}

.section-title {
  text-align: center;
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.section-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 56px;
  line-height: 1.7;
  opacity: 0.8;
  letter-spacing: 0.1px;
}

.products-intro {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 0;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
  width: 100%;
  height: 240px;
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--bg-light);
  position: relative;
}

.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.3px;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,0.6),
      rgba(255,255,255,0.6) 12px,
      rgba(0,0,0,0.02) 12px,
      rgba(0,0,0,0.02) 24px
    );
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.product-card:hover .product-image {
  transform: scale(1.1);
}

.product-card h3 {
  color: var(--primary-color);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  padding: 20px;
  letter-spacing: -0.1px;
  line-height: 1.4;
}

.badge-soon {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-color);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-white);
}

.back-to-top {
  text-align: center;
  margin-top: 16px;
}
.back-to-top a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 13px;
}
.back-to-top a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-us {
  background: var(--bg-light);
  padding: 72px 0;
  border-top: 1px solid var(--border-color);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-item {
  background: var(--bg-white);
  padding: 36px 28px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--bg-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px;
  font-weight: 600;
}

.feature-item h3 {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.1px;
  line-height: 1.4;
}

.feature-item p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
  line-height: 1.65;
  letter-spacing: 0.05px;
}

/* ============================================
   CUSTOMIZATION
   ============================================ */
.customization {
  background: var(--bg-light);
  padding: 60px 0;
}

.customization-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.customization-text .section-title {
  text-align: left;
  margin-bottom: 32px;
}

.customization-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  letter-spacing: 0.05px;
}

.point-icon {
  color: var(--secondary-color);
  font-size: 20px;
  font-weight: 600;
}

.customization-image {
  width: 100%;
}

.image-placeholder {
  width: 100%;
  height: 300px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 16px;
}

/* ============================================
   REUSABLE INFO CARDS / GRID / TITLES
   ============================================ */
.subsection-title {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
  text-align: left;
  margin: 28px 0 14px;
  letter-spacing: -0.2px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}

.section-intro {
  max-width: 900px;
  margin: 0 auto 16px;
  color: var(--text-dark);
  line-height: 1.8;
  text-align: center;
}

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

.info-card,
.info-box {
  padding: 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--bg-light);
}

.info-card strong {
  display: block;
  color: var(--primary-color);
  margin-bottom: 6px;
}

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

/* ============================================
   CALL TO ACTION
   ============================================ */
.cta-section {
  background: var(--primary-color);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.92;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

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

.cta-section .btn-primary {
  background: var(--bg-white);
  color: var(--primary-color);
}

.cta-section .btn-primary:hover {
  background: var(--bg-light);
}

.cta-section .btn-secondary {
  background: transparent;
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
}

.cta-section .btn-secondary:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-color);
  padding: 18px 0 14px;
  border-top: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}

.footer-brand h3 {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.footer-brand p {
  color: rgba(74,74,74,0.78);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.1px;
}

.footer-contact p {
  margin: 0;
}

.footer-contact a {
  color: rgba(27,52,38,0.88);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
}

.footer-contact a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(26,26,26,0.88);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  letter-spacing: 0.15px;
}

.footer-links a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 0;
  border-top: 0;
}

.footer-bottom p {
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  letter-spacing: 0.2px;
}

/* Footer responsive tweaks */
@media (max-width: 900px) {
  .footer {
    padding: 16px 0 12px;
  }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg-light);
  padding: 120px 0;
  min-height: 60vh;
}

.about-hero h1 {
  font-size: 42px;
  color: var(--primary-color);
  font-weight: 800;
  letter-spacing: -0.4px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 8px;
}
.about-hero {
  max-width: 900px;
  margin: 0 auto 24px;
}
.about-sub {
  text-align: center;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 40px;
}

.about-content {
  max-width: 820px;
  margin: 0 auto;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 12px 0 40px;
}
.about-section .check-list {
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.about-section .check-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
  margin: 6px 0;
}
.about-section .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-weight: 700;
}
.about-section .steps-list {
  counter-reset: step;
  list-style: none;
  margin: 0 0 12px;
  padding: 0;
}
.about-section .steps-list li {
  position: relative;
  padding-left: 34px;
  line-height: 1.6;
  margin: 8px 0;
}
.about-section .steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  line-height: 22px;
  font-size: 12px;
  background: var(--bg-white);
}
.highlight-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.highlight-title {
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -0.2px;
}
.highlight-sub {
  color: var(--text-light);
  font-size: 13px;
  margin-top: 6px;
}

.about-section p {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 18px;
  text-align: left;
  letter-spacing: 0.01px;
  font-weight: 400;
}

.compliance-box {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px 24px;
  margin-top: 24px;
}
.compliance-box p {
  margin-bottom: 8px;
}
.compliance-box p:last-of-type {
  margin-bottom: 0;
}

.about-section p:last-of-type:not(.about-closing) {
  margin-bottom: 0;
}

.about-closing {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.8;
}

.about-closing strong {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.1px;
  display: block;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================
   CATEGORIES / PRODUCTS PAGE
   ============================================ */
.categories {
  background: var(--bg-light);
  padding: 80px 0;
}

.category-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 16px 0 32px;
  flex-wrap: wrap;
}
.category-nav a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 14px;
  padding: 6px 12px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  background: var(--bg-white);
  transition: var(--transition);
}
.category-nav a:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* Slim customization CTA on Products */
.custom-cta {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  margin: 0 auto 32px;
  max-width: 900px;
}
.custom-cta h2 {
  font-size: 26px;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.custom-cta p {
  color: var(--text-light);
  margin: 0 0 14px;
}
.categories h1 {
  font-size: 40px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.25;
  text-align: center;
}

.product-section {
  margin-bottom: 60px;
}

.product-section h2 {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.category-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.category-card:hover {
  border-color: var(--secondary-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.category-card h4 {
  font-size: 20px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.1px;
  line-height: 1.4;
}

.category-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.sustainability-section,
.global-exports-section {
  background: var(--bg-light);
  padding: 48px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.sustainability-section h2,
.global-exports-section h2 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.sustainability-section p,
.global-exports-section p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 16px;
}

.sustainability-list,
.exports-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.sustainability-list li,
.exports-list li {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 4px 0;
  padding-left: 24px;
  position: relative;
}

.sustainability-list li::before,
.exports-list li::before {
  content: "•";
  color: var(--secondary-color);
  font-weight: 600;
  position: absolute;
  left: 0;
}

/* Standards (Sustainability + Exports) */
.info-standards {
  margin-top: 20px;
}
.info-standards .section-title {
  text-align: center;
  margin-bottom: 24px;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.info-card {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 28px;
}
.info-card h3 {
  font-size: 22px;
  color: var(--primary-color);
  margin: 0 0 12px;
  letter-spacing: -0.2px;
}
.info-card p {
  font-size: 16px;
  color: var(--text-dark);
  margin: 0 0 12px;
  line-height: 1.7;
}
@media (max-width: 900px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}
/* Subcategory notes (bottom) */
.subcategory-notes {
  margin-top: 24px;
}
.subcat-title {
  text-align: center;
  margin-bottom: 16px;
}
.subcategory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.subcategory-list li {
  background: var(--bg-white);
  border: 1px dashed var(--border-color);
  border-radius: 10px;
  padding: 16px 20px;
}
.subcategory-list h4 {
  font-size: 16px;
  color: var(--primary-color);
  margin: 0 0 6px;
  letter-spacing: -0.1px;
}
.subcategory-list p {
  margin: 0;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
}
.subcategory-cta {
  text-align: center;
  margin-top: 16px;
  color: var(--text-light);
}
.subcategory-cta a {
  color: var(--primary-color);
  text-decoration: none;
  border-bottom: 1px dotted var(--border-color);
}
.subcategory-cta a:hover {
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}
@media (max-width: 900px) {
  .subcategory-list {
    grid-template-columns: 1fr;
  }
}
/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-form-container {
  max-width: 600px;
  margin: 32px auto 0;
}

.contact-form {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 28px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: all 0.3s ease;
  line-height: 1.6;
}

/* Contact page polish */
.contact-hero h1 {
  text-align: center;
}
.contact-intro {
  text-align: center;
  color: var(--text-dark);
}
.contact-cards {
  max-width: 820px;
  margin: 24px auto 8px;
}
.contact-grid .info-card {
  background: var(--bg-white);
}
.contact-note {
  margin-top: 10px;
  color: var(--text-light);
  text-align: center;
}
.link-soft {
  color: var(--secondary-color);
  text-decoration: none;
}
.link-soft:hover {
  text-decoration: underline;
}

/* Contact page heading tweak */
.contact-page .section-title {
  text-align: center;
  border: 0;
  padding-top: 0;
  margin: 12px 0 6px;
  font-size: 28px;
  letter-spacing: -0.2px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(31, 61, 43, 0.1);
}

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

.customization-section {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  margin-top: 60px;
  text-align: center;
}

.customization-section h3 {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.25;
}

.customization-section p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.customization-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto;
}

.customization-list li {
  font-size: 15px;
  color: var(--text-dark);
  line-height: 1.7;
  padding: 12px;
  background: var(--bg-white);
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

/* Responsive styles for about, products, and contact pages */
@media (max-width: 768px) {
  .about-section {
    padding: 80px 0;
  }

  .about-section h1 {
    font-size: 34px;
    margin-bottom: 48px;
    letter-spacing: -0.3px;
  }

  .about-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .about-section p {
    font-size: 16px;
    margin-bottom: 28px;
    line-height: 1.75;
  }

  .about-closing {
    margin-top: 56px;
    padding-top: 40px;
    font-size: 16px;
  }

  .about-closing strong {
    font-size: 17px;
    margin-top: 10px;
  }

  .categories {
    padding: 60px 0;
  }

  .categories h1 {
    font-size: 32px;
  }

  .product-section h2 {
    font-size: 28px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .sustainability-section,
  .global-exports-section {
    padding: 32px 24px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .customization-list {
    grid-template-columns: 1fr;
  }
}

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

  .about-section h1,
  .categories h1 {
    font-size: 30px;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
  }

  .about-content {
    padding: 0 16px;
  }

  .about-section p {
    font-size: 15px;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .about-closing {
    margin-top: 48px;
    padding-top: 32px;
    font-size: 15px;
  }

  .about-closing strong {
    font-size: 16px;
    margin-top: 8px;
  }

  .product-section h2 {
    font-size: 24px;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    gap: 20px;
    flex-wrap: wrap;
  justify-content: center;
}

  .logo {
    height: 96px;
  }

  .hero h1 {
    font-size: 36px;
    max-width: 100%;
  }

  .hero-line-1 {
    font-size: 13px;
  }

  .hero-line-3 {
    font-size: 18px;
  }

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

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

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .customization-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .customization-text .section-title {
    text-align: center;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .section-title {
    font-size: 28px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .hero {
    padding: 50px 0 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 0 30px;
  }

  .hero h1 {
    font-size: 32px;
    max-width: 100%;
  }

  .hero-line-1 {
    font-size: 12px;
    letter-spacing: 0.8px;
  }

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

  .indicators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

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

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
