/* =========================================
   ATYA GLOBAL — World-Class Peanut Exporter
   Premium Design System v3.0
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* =========================================
   Design Tokens
   ========================================= */
:root {
  --bg:          #FAF9F6;
  --bg-alt:      #F4F2EC;
  --bg-white:    #FFFFFF;
  --surface:     #FFFFFF;
  --espresso:    #1A1208;
  --espresso-80: rgba(26,18,8,0.8);
  --text:        #1A1208;
  --text-mid:    #3D3022;
  --text-soft:   #6B5D4A;
  --gold:        #C8A951;
  --gold-dark:   #7A6020;
  --gold-light:  #E6CD82;
  --border:      #E8E2D6;
  --border-soft: rgba(200,169,81,0.15);
  --radius:      4px;
  --font-h:      'Playfair Display', Georgia, serif;
  --font-b:      'Inter', system-ui, sans-serif;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm:   0 2px 12px rgba(26,18,8,0.06);
  --shadow-md:   0 8px 32px rgba(26,18,8,0.10);
  --shadow-lg:   0 20px 60px rgba(26,18,8,0.14);
  --s-pad:       96px 6%;
}

/* =========================================
   Reset
   ========================================= */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* =========================================
   Typography
   ========================================= */
h1,h2,h3,h4,h5 {
  font-family: var(--font-h);
  font-weight: 600;
  color: var(--text);
  line-height: 1.18;
}

h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: 1.55rem; }
h4 { font-size: 1.2rem; }

p {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.8;
}

.label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 12px;
}

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

.section-title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3vw, 2.8rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-sub {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 64px;
  font-size: 1.05rem;
  color: var(--text-soft);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.28s var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--espresso);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,169,81,0.35);
}

.btn-dark {
  background: var(--espresso);
  color: #fff;
}
.btn-dark:hover {
  background: var(--text-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--espresso);
  border: 1.5px solid var(--espresso);
}
.btn-outline:hover {
  background: var(--espresso);
  color: #fff;
}

.btn-outline-gold {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

/* =========================================
   Cards
   ========================================= */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--gold);
}

/* =========================================
   Navigation
   ========================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 6%;
  background: rgba(250,249,246,0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.nav.scrolled {
  background: rgba(250,249,246,0.99);
  box-shadow: 0 2px 20px rgba(26,18,8,0.1);
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 58px;
  width: auto;
  transition: opacity 0.2s;
}
.nav-logo img:hover { opacity: 0.8; }

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

.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 2px;
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/hero_bg.png') center/cover no-repeat;
  background-attachment: fixed;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(26,18,8,0.82) 0%,
    rgba(26,18,8,0.70) 60%,
    rgba(26,18,8,0.88) 100%
  );
  z-index: 1;
}

.hero-body {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  animation: fadeUp 0.9s var(--ease) both 0.3s;
}

.hero-body h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.1;
}

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

.hero-body p {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

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

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

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

/* =========================================
   Cert Strip
   ========================================= */
.cert-strip {
  background: var(--espresso);
  padding: 20px 6%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.cert-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.cert-strip-item i { color: var(--gold); font-size: 1rem; }
.cert-strip-item:hover { color: var(--gold-light); }

/* =========================================
   Two-Col Split Section
   ========================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.split-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.split-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
}
.split-img:hover img { transform: scale(1.03); }

.split-img .img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--espresso);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--shadow-md);
}
.split-img .img-badge span { font-size: 0.65rem; font-family: var(--font-b); letter-spacing: 1px; }

.split-text .label { margin-bottom: 14px; }
.split-text h2 { margin-bottom: 24px; }
.split-text p { margin-bottom: 18px; }

.check-list { margin: 20px 0 32px; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
}
.check-list li i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

/* =========================================
   Stats Bar
   ========================================= */
.stats-bar {
  background: var(--espresso);
  padding: 60px 6%;
}

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

.stat h3 {
  font-family: var(--font-h);
  font-size: 3rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}
.stat p { color: rgba(255,255,255,0.55); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; }

/* =========================================
   Process Section
   ========================================= */
.process-section {
  padding: var(--s-pad);
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.p-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}

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

.p-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}
.p-card:hover::before { transform: scaleX(1); }

.p-num {
  position: absolute;
  top: 10px; right: 14px;
  font-size: 2.8rem;
  font-family: var(--font-h);
  font-weight: 700;
  color: rgba(26,18,8,0.05);
  line-height: 1;
}

.p-icon {
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.p-card h3 {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

/* =========================================
   Products Grid (Home teaser)
   ========================================= */
.products-section {
  padding: var(--s-pad);
  background: var(--bg-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.prod-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
  transition: all 0.3s var(--ease);
}

.prod-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
  border-color: var(--gold);
}

.prod-card-head {
  background: var(--bg-alt);
  padding: 36px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.prod-card-head i {
  font-size: 2.8rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.prod-card-head h3 {
  font-size: 1.3rem;
  color: var(--text);
}

.prod-card-body {
  padding: 24px;
}

.prod-card-body p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.origin-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(200,169,81,0.12);
  border: 1px solid rgba(200,169,81,0.35);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* =========================================
   Global Reach Section
   ========================================= */
.reach {
  padding: var(--s-pad);
  background: url('../assets/export_shipping.png') center/cover no-repeat fixed;
  position: relative;
  text-align: center;
}

.reach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(26,18,8,0.88), rgba(26,18,8,0.80));
}

.reach-body {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.reach-body .label { color: var(--gold-light); }
.reach-body h2 { color: #fff; margin-bottom: 16px; }
.reach-body p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 48px; }

.reach-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.r-stat .num {
  font-family: var(--font-h);
  font-size: 3.2rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.r-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* =========================================
   Certifications Section
   ========================================= */
.certs-section {
  padding: 80px 6%;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.cert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.cert-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.cert-card i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.cert-card h4 {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 4px;
}

.cert-card p {
  font-size: 0.82rem;
  color: var(--text-soft);
}

/* =========================================
   Packaging / Logistics
   ========================================= */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s var(--ease);
}

.logi-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.logi-icon {
  font-size: 2rem;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 4px;
}

.logi-text h4 { font-size: 1.1rem; margin-bottom: 8px; }
.logi-text p  { font-size: 0.9rem; }

/* =========================================
   Specs Table
   ========================================= */
.specs-wrap { overflow-x: auto; margin-top: 24px; }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.specs-table th {
  background: var(--espresso);
  color: #fff;
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-b);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  width: 40%;
}

.specs-table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.93rem;
  background: var(--surface);
}

.specs-table tr:last-child td { border-bottom: none; }

/* =========================================
   Product Detail Card
   ========================================= */
.prod-detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.prod-detail-card h3 {
  font-size: 1.7rem;
  color: var(--text);
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.prod-detail-card > p { margin: 16px 0; }

/* =========================================
   Contact Section
   ========================================= */
.contact-section {
  padding: var(--s-pad);
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 28px; }

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

.c-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,169,81,0.12);
  border: 1px solid rgba(200,169,81,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.c-info-text h4 { font-size: 1rem; margin-bottom: 4px; }
.c-info-text p  { font-size: 0.93rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.f-group { display: flex; flex-direction: column; gap: 8px; }

.f-group label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.f-control {
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.f-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,81,0.12);
}

textarea.f-control { min-height: 130px; resize: vertical; }

/* =========================================
   About Page Specifics
   ========================================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.val-card {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.val-card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); border-color: var(--gold); }

.val-card i {
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.val-card h4 { font-size: 1.1rem; margin-bottom: 10px; }
.val-card p  { font-size: 0.9rem; }

/* Leadership quote */
.leadership {
  background: var(--espresso);
  border-radius: var(--radius);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.leadership::before {
  content: '\201C';
  position: absolute;
  top: -20px; left: 24px;
  font-family: var(--font-h);
  font-size: 12rem;
  color: rgba(200,169,81,0.08);
  line-height: 1;
  pointer-events: none;
}

.leadership blockquote {
  font-family: var(--font-h);
  font-size: 1.35rem;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.7;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.leader-name {
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.leader-title {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-top: 4px;
}

/* =========================================
   Page Header (Inner Pages)
   ========================================= */
.page-hero {
  padding: 160px 6% 80px;
  background:
    linear-gradient(160deg, rgba(26,18,8,0.84) 0%, rgba(26,18,8,0.78) 100%),
    url('../assets/hero_bg.png') center/cover no-repeat fixed;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0 auto; }

/* =========================================
   Footer
   ========================================= */
.footer {
  background: var(--espresso);
  padding: 64px 6% 32px;
  border-top: 3px solid var(--gold);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img { height: 70px; width: auto; margin-bottom: 18px; }

.footer-brand p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  background: var(--gold);
  color: var(--espresso);
  transform: translateY(-3px);
}


.footer-col h5 {
  color: var(--gold-light);
  font-family: var(--font-b);
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 28px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.82rem; }
.footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gold-light); }

/* =========================================
   Reveal Animations
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* =========================================
   Utilities
   ========================================= */
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-48 { margin-bottom: 48px; }

.section-pad { padding: var(--s-pad); }
.section-pad-sm { padding: 64px 6%; }
.bg-alt { background: var(--bg-alt); }
.bg-white { background: var(--bg-white); }

.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 16px auto 40px;
  border-radius: 2px;
}

.divider-left {
  margin: 16px 0 32px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --s-pad: 72px 5%; }

  .nav-menu, .nav-cta {
    display: none;
    position: fixed;
    top: 76px;
    left: 0; right: 0;
    background: var(--bg);
    padding: 24px 5%;
    flex-direction: column;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav-menu.open, .nav-cta.open { display: flex; }
  .hamburger { display: flex; }

  .stats-inner { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .reach-stats { gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .cert-strip { gap: 24px; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* =========================================
   Product Images
   ========================================= */
.prod-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  border-bottom: 1px solid var(--border);
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.prod-detail-card .prod-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* =========================================
   Responsive — Tablet (≤ 1024px)
   ========================================= */
@media (max-width: 1024px) {
  .split { grid-template-columns: 1fr !important; gap: 40px !important; }
  .split-img { order: -1; }
  .split-img img { height: 380px; }
  .split-img .img-badge { right: 10px; bottom: -14px; width: 84px; height: 84px; font-size: 1.3rem; }

  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================
   Responsive — Mobile (≤ 768px)
   ========================================= */
@media (max-width: 768px) {
  :root {
    --s-pad: 64px 5%;
  }

  /* --- Navigation --- */
  .nav { padding: 0 5%; }

  .nav-inner { height: 68px; }

  .nav-logo img { height: 50px; }

  .nav-menu {
    display: none;
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--bg);
    padding: 20px 5% 28px;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 899;
  }

  .nav-menu a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-menu a:last-child { border-bottom: none; }

  .nav-cta {
    display: none;
    position: fixed;
    top: auto;
    left: 0; right: 0;
    padding: 16px 5%;
    background: var(--bg);
    box-shadow: var(--shadow-md);
    z-index: 898;
  }

  .nav-menu.open { display: flex; }
  .nav-cta.open  { display: flex; }

  .hamburger { display: flex; }

  /* Hamburger animate to X */
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* --- Hero --- */
  .hero { min-height: 100svh; }
  .hero-bg, .page-hero, .reach { 
    background-attachment: scroll !important; 
    background-position: center !important;
  }

  .hero-body { padding: 0 20px; }

  .hero-body h1 { font-size: clamp(2rem, 8vw, 3rem); margin-bottom: 16px; }

  .hero-body p { font-size: 1rem; margin-bottom: 32px; }

  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; }

  .hero-scroll { display: none; }

  /* --- Cert Strip --- */
  .cert-strip { gap: 14px; padding: 18px 5%; justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .cert-strip-item { font-size: 0.75rem; white-space: nowrap; flex-shrink: 0; }

  /* --- Typography --- */
  h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  h3 { font-size: 1.3rem; }

  .section-title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .section-sub { font-size: 1rem; margin-bottom: 40px; }

  /* --- Split Sections --- */
  .split { gap: 32px; }
  .split-img img { height: 280px; }
  .split-img .img-badge { display: none; }

  /* --- About card image --- */
  .about-image img { height: auto; }

  /* --- Stats Bar --- */
  .stats-bar { padding: 48px 5%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .stat h3 { font-size: 2.4rem; }

  /* --- Products Grid --- */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .prod-card-head { padding: 24px 16px; }
  .prod-card-head i { font-size: 2rem; }
  .prod-card-body { padding: 18px; }

  /* --- Product Detail Cards --- */
  .prod-detail-card { padding: 24px 20px; margin-bottom: 24px; }
  .prod-detail-card .prod-photo { height: 200px; }
  .prod-detail-card h3 { font-size: 1.2rem; }

  /* --- Specs Table --- */
  .specs-table th,
  .specs-table td { padding: 10px 12px; font-size: 0.85rem; }
  .specs-table th { width: 45%; }

  /* --- Process --- */
  .process-section { padding: 60px 5%; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .p-card { padding: 24px 14px; }
  .p-icon { font-size: 1.6rem; margin-bottom: 10px; }
  .p-card h4 { font-size: 0.85rem; }
  .p-num { font-size: 2rem; }

  /* --- Global Reach --- */
  .reach { padding: 64px 5%; }
  .reach-stats { gap: 28px; }
  .r-stat .num { font-size: 2.4rem; }

  /* --- Logistics --- */
  .logistics-grid { grid-template-columns: 1fr; }
  .logi-card { padding: 20px; gap: 16px; }

  /* --- Values Grid --- */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .val-card { padding: 24px 18px; }

  /* --- Certs Grid --- */
  .certs-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cert-card { padding: 20px 14px; }

  /* --- Contact --- */
  .contact-section { padding: 60px 5%; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .c-info-item { gap: 14px; }
  .c-info-icon { width: 42px; height: 42px; font-size: 1rem; }

  /* --- Contact Form Grid (name row) --- */
  .contact-form [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* --- Page Hero --- */
  .page-hero { padding: 120px 5% 60px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7vw, 2.8rem); }

  /* --- Leadership block --- */
  .leadership { padding: 32px 24px; }
  .leadership blockquote { font-size: 1.1rem; }

  /* --- Infra grid --- */
  .infra-grid { grid-template-columns: 1fr; }

  /* --- Footer --- */
  .footer { padding: 48px 5% 28px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-brand img { height: 56px; }
  .footer-brand p { max-width: 100%; font-size: 0.85rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 4px; }
  .footer-bottom p { font-size: 0.78rem; }

  /* --- Contact Form name row --- */
  .form-name-row { grid-template-columns: 1fr; }

  /* --- Buttons --- */
  .btn { padding: 13px 24px; font-size: 0.82rem; }
}

/* =========================================
   Responsive — Small Mobile (≤ 480px)
   ========================================= */
@media (max-width: 480px) {
  :root { --s-pad: 56px 4%; }

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

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

  .process-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .p-card { padding: 20px 10px; }
  .p-card h4 { font-size: 0.78rem; }

  .stats-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat h3 { font-size: 2rem; }

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

  .reach-stats { gap: 20px; }
  .r-stat .num { font-size: 2rem; }

  .specs-table th { width: 50%; }

  .prod-detail-card .prod-photo { height: 170px; }

  .footer-inner { grid-template-columns: 1fr; }

  .section-title { font-size: 1.7rem; }
  h2 { font-size: 1.7rem; }
}

/* Scrollbar hidden for cert strip on mobile */
.cert-strip::-webkit-scrollbar { display: none; }
.cert-strip { -ms-overflow-style: none; scrollbar-width: none; }

