/* ============================================
   CARBO FRESH PTE LTD - GLOBAL STYLES
   Brand (from logo): Green #4CA834 | Bright #7FBF3F
   Deep Green #3D8F27 | Charcoal #2B2728
   ============================================ */

:root {
  --green: #4CA834;
  --green-bright: #7FBF3F;
  --green-dark: #3D8F27;
  --charcoal: #2B2728;
  --white: #FFFFFF;
  --light-green: #EDF6E3;
  --gray: #6B7280;
  --light-gray: #F5F5F5;
  --dark-gray: #4B5563;
  --border: #E5E7EB;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.14);
  --radius: 12px;
  --transition: all 0.3s ease;
  --grad-green: linear-gradient(135deg, #7FBF3F 0%, #4CA834 55%, #3D8F27 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--dark-gray);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

/* ============ TYPOGRAPHY ============ */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.25; color: var(--charcoal); }
h3 { font-size: 1.3rem; font-weight: 700; color: var(--charcoal); }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--charcoal); }
p { color: var(--dark-gray); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.section-title { margin-bottom: 16px; }
.section-desc { font-size: 1.05rem; color: var(--gray); max-width: 580px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-primary:hover {
  background: #3D8F27;
  border-color: #3D8F27;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(76,168,52,0.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--charcoal);
}
.btn-outline-green {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: var(--white);
}
.btn-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: var(--charcoal);
}
.btn-dark:hover {
  background: #3d3738;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ============ HEADER / NAV ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--charcoal);
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}
.logo-text span { color: var(--green); }

/* Brand logo image (PNG) + SVG fallback lockup */
.logo-img { height: 100px; width: auto; display: block; }
.logo-lockup { align-items: center; gap: 12px; }
.footer-logo-img { height: 42px; width: auto; display: block; background: #fff; padding: 8px 12px; border-radius: 10px; }
@media (max-width: 768px) { .logo-img { height: 52px; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--green); }
.nav-links a.active::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1E1B1C 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 40%, rgba(76,168,52,0.12) 0%, transparent 60%),
    radial-gradient(circle at 10% 80%, rgba(76,168,52,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(76,168,52,0.15);
  border: 1px solid rgba(76,168,52,0.3);
  color: var(--green);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 span { color: var(--green); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); font-weight: 500; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,0.3);
  font-size: 5rem;
}
.hero-img-placeholder p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.3);
}
.hero-float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: var(--shadow-hover);
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-float-card.card-1 { bottom: -20px; left: -20px; }
.hero-float-card.card-2 { top: -20px; right: -20px; }
.float-icon {
  width: 44px;
  height: 44px;
  background: var(--light-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.float-label { font-size: 0.75rem; color: var(--gray); font-weight: 500; }
.float-value { font-size: 0.95rem; font-weight: 700; color: var(--charcoal); }

/* ============ TRUST BAR ============ */
.trust-bar {
  background: var(--light-green);
  border-bottom: 2px solid rgba(76,168,52,0.2);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-item .icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-divider { width: 1px; height: 32px; background: rgba(76,168,52,0.3); }
.trust-uen {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
}
.uen-badge {
  background: var(--charcoal);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--charcoal) 0%, #3d3738 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
}
.about-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100px;
  height: 100px;
  background: var(--green);
  border-radius: 12px;
  opacity: 0.15;
  z-index: -1;
}
.about-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 32px;
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark-gray);
}
.check-item svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ============ PRODUCTS ============ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green);
}
.product-card-top {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
}
.product-card-top.coconut { background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 100%); }
.product-card-top.coal { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%); }
.product-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.product-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.product-card-body h3 { margin-bottom: 8px; }
.product-card-body > p { margin-bottom: 20px; font-size: 0.9rem; }
.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--dark-gray);
}
.feature-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.product-apps {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.app-tag {
  background: var(--light-green);
  color: #5a7a1e;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
}
.product-card-body .btn { margin-top: auto; }

.forms-grid {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.form-chip {
  background: var(--light-gray);
  color: var(--charcoal);
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

/* ============ INDUSTRIES ============ */
.industries-bg { background: var(--light-gray); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: var(--shadow-hover);
}
.industry-card:hover .industry-icon {
  background: var(--green);
  color: white;
}
.industry-icon {
  width: 64px;
  height: 64px;
  background: var(--light-green);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.industry-card h4 { margin-bottom: 8px; }
.industry-card p { font-size: 0.85rem; color: var(--gray); }

/* ============ WHY CHOOSE US ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--green);
  transition: height 0.3s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.why-card:hover::before { height: 100%; }
.why-icon {
  width: 52px;
  height: 52px;
  background: var(--light-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}
.why-card h4 { margin-bottom: 8px; }
.why-card p { font-size: 0.88rem; color: var(--gray); }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1E1B1C 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(76,168,52,0.15) 0%, transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-text h2 { color: var(--white); }
.cta-text h2 span { color: var(--green); }
.cta-text p { color: rgba(255,255,255,0.65); margin-top: 8px; max-width: 480px; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1E1B1C 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(76,168,52,0.12) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 520px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--green); }

/* ============ ABOUT PAGE ============ */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.expertise-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.expertise-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}
.expertise-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.expertise-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.partner-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--light-green);
  color: #5a7a1e;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-top: 16px;
}

.mission-box {
  background: linear-gradient(135deg, var(--green) 0%, #3D8F27 100%);
  border-radius: var(--radius);
  padding: 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mission-box::before {
  content: '❝';
  position: absolute;
  top: -20px;
  left: 40px;
  font-size: 10rem;
  color: rgba(255,255,255,0.1);
  font-family: Georgia, serif;
  line-height: 1;
}
.mission-box blockquote {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.biz-info {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.biz-item label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray);
  display: block;
  margin-bottom: 6px;
}
.biz-item p { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; }

/* ============ PRODUCTS PAGE ============ */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.product-detail.reverse { direction: rtl; }
.product-detail.reverse > * { direction: ltr; }
.product-visual {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
}
.product-visual.v-coconut { background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 100%); }
.product-visual.v-coal { background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%); }
.product-visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}
.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.spec-item {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 14px 16px;
}
.spec-label { font-size: 0.72rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.spec-value { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); }

.divider { border: none; border-top: 1px solid var(--border); margin: 80px 0; }

/* ============ APPLICATIONS PAGE ============ */
.app-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.app-section.reverse { direction: rtl; }
.app-section.reverse > * { direction: ltr; }
.app-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}
.app-benefit-list { margin: 20px 0 28px; display: flex; flex-direction: column; gap: 10px; }
.app-benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--dark-gray);
}
.benefit-check {
  width: 20px;
  height: 20px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.65rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============ CONTACT PAGE ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.info-card:hover { border-color: var(--green); transform: translateX(4px); }
.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--light-green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.info-card-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 4px; }
.info-card h4 { font-size: 0.95rem; margin-bottom: 2px; }
.info-card p, .info-card a { font-size: 0.88rem; color: var(--dark-gray); display: block; line-height: 1.6; }
.info-card a:hover { color: var(--green); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}
.form-title { margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(76,168,52,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--charcoal);
  color: #D1D5DB;
}
.footer-top { padding: 72px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
}
.footer-brand h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0;
}
.footer-brand p { font-size: 0.88rem; margin: 16px 0 24px; color: #9CA3AF; line-height: 1.7; max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo .logo-icon { background: #fff; width: 40px; height: 40px; }
.footer-logo .logo-text { color: white; font-size: 1.2rem; font-weight: 800; }
.footer-logo .logo-text span { color: var(--green); }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D1D5DB;
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
}
.social-btn:hover { background: var(--green); color: white; border-color: var(--green); }
.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: #9CA3AF;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover { color: var(--green); }
.footer-col ul a::before { content: '›'; color: var(--green); font-size: 1.1rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #9CA3AF;
  margin-bottom: 12px;
}
.footer-contact-item span:first-child { font-size: 1rem; flex-shrink: 0; }
.footer-contact-item a { color: #9CA3AF; transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--green); }

.footer-cta-box {
  background: rgba(76,168,52,0.1);
  border: 1px solid rgba(76,168,52,0.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}
.footer-cta-box p { font-size: 0.88rem; color: #D1D5DB; margin-bottom: 12px; font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: #6B7280; }
.footer-bottom a { color: var(--green); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: #6B7280; transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--green); }

/* ============ MOBILE NAV ============ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid var(--green);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 8px;
  font-weight: 500;
  color: var(--charcoal);
  transition: background 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: var(--light-green); color: var(--green); }
.mobile-menu .btn { margin-top: 8px; width: 100%; justify-content: center; }

/* ============ ANIMATIONS ============ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ============ UTILITIES ============ */
.text-green { color: var(--green); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.bg-light { background: var(--light-gray); }
.bg-light-green { background: var(--light-green); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }

/* ============ NAV DROPDOWN ============ */
.nav-item { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  min-width: 270px;
  padding: 8px;
  display: none;
  z-index: 200;
}
.nav-item:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.nav-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--dark-gray);
  font-weight: 500;
  transition: background 0.2s;
}
.nav-dropdown-menu a::after { display: none !important; }
.nav-dropdown-menu a:hover { background: var(--light-green); color: var(--green); }
.nav-dropdown-menu .dd-icon {
  width: 32px;
  height: 32px;
  background: var(--light-green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.nav-dropdown-menu a:hover .dd-icon { background: var(--green); color: white; }
.nav-caret { display: inline-flex; margin-left: 4px; vertical-align: middle; transition: transform 0.2s; }
.nav-item:hover .nav-caret { transform: rotate(180deg); }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  animation: wa-pulse 3s infinite;
}
@keyframes wa-pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.65), 0 0 0 8px rgba(37,211,102,0.12); }
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; box-shadow: 0 8px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; flex-shrink: 0; }
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--charcoal);
  color: white;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  top: 50%;
  transform: translateY(-50%);
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--charcoal);
}
.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* ============ SPEC TABLE ============ */
.spec-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.spec-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.spec-table th {
  background: var(--charcoal);
  color: white;
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.spec-table th:first-child { border-radius: 0; }
.spec-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--dark-gray);
  vertical-align: top;
}
.spec-table tr:last-child td { border-bottom: none; }
.spec-table tr:nth-child(even) td { background: #fafafa; }
.spec-table .val { font-weight: 600; color: var(--charcoal); }
.spec-table .good { color: #16a34a; font-weight: 700; }
.spec-table td:first-child { font-weight: 600; color: var(--charcoal); }

/* ============ FAQ ACCORDION ============ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green); box-shadow: 0 0 0 3px rgba(76,168,52,0.08); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  gap: 16px;
}
.faq-question:hover { color: var(--green); }
.faq-chevron {
  width: 28px;
  height: 28px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  color: var(--green);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--green); color: white; }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============ PACKAGING GRID ============ */
.packaging-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 24px 0; }
.packaging-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.packaging-card:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.packaging-icon {
  width: 56px; height: 56px;
  background: var(--light-green);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}
.packaging-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.packaging-card p { font-size: 0.82rem; color: var(--gray); }

/* ============ PROCESS STEPS ============ */
.process-steps {
  display: flex;
  gap: 0;
  position: relative;
  margin: 40px 0 16px;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 56px;
  right: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(76,168,52,0.2));
}
.process-step { flex: 1; text-align: center; padding: 0 12px; }
.process-step-num {
  width: 56px; height: 56px;
  background: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: white;
  font-weight: 800;
  font-size: 1.1rem;
  border: 4px solid white;
  box-shadow: 0 0 0 2px var(--green);
  position: relative;
  z-index: 1;
}
.process-step h5 { font-size: 0.88rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
.process-step p { font-size: 0.78rem; color: var(--gray); }

/* ============ ADVANTAGE CARDS ============ */
.advantage-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.advantage-card {
  background: var(--charcoal);
  color: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.advantage-card:hover { transform: translateY(-4px); }
.advantage-card::before {
  content: '';
  position: absolute;
  top: -24px; right: -24px;
  width: 88px; height: 88px;
  background: rgba(76,168,52,0.12);
  border-radius: 50%;
}
.advantage-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--green);
}
.advantage-num { font-size: 2rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 8px; }
.advantage-card h4 { color: white; margin-bottom: 8px; font-size: 1rem; }
.advantage-card p { color: rgba(255,255,255,0.65); font-size: 0.85rem; }

/* ============ INDUSTRY SHOWCASE ============ */
.industry-showcase { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.industry-showcase-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-showcase-card:hover { border-color: var(--green); background: var(--light-green); transform: translateY(-3px); }
.industry-showcase-card .i-icon {
  width: 48px; height: 48px;
  background: var(--light-green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  color: var(--green);
  transition: var(--transition);
}
.industry-showcase-card:hover .i-icon { background: var(--green); color: white; }
.industry-showcase-card p { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }

/* ============ COAL PRODUCT CARDS ============ */
.coal-products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.coal-product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.coal-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); border-color: var(--green); }
.coal-product-top {
  background: linear-gradient(135deg, #1a1a2e, #2d2d44);
  padding: 32px 24px;
  text-align: center;
}
.coal-product-top .p-icon {
  width: 68px; height: 68px;
  background: rgba(76,168,52,0.15);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--green);
}
.coal-product-top h3 { color: white; font-size: 1rem; }
.coal-product-body { padding: 24px; flex: 1; }
.spec-mini { display: flex; flex-direction: column; gap: 8px; margin: 16px 0 20px; }
.spec-mini-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}
.spec-mini-row:last-child { border-bottom: none; }
.spec-mini-row .s-label { color: var(--gray); }
.spec-mini-row .s-val { font-weight: 600; color: var(--charcoal); }

/* ============ BUSINESS HOURS ============ */
.biz-hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.biz-hours-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 14px;
  background: var(--light-gray);
  border-radius: 8px;
  font-size: 0.85rem;
}
.biz-hours-item .day { font-weight: 600; color: var(--charcoal); }
.biz-hours-item .hours { color: var(--gray); }
.biz-hours-item.closed .hours { color: #ef4444; font-weight: 600; }

/* ============ HERO STAT ICON ============ */
.hero-stat-icon {
  width: 40px; height: 40px;
  background: rgba(76,168,52,0.15);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  color: var(--green);
}

/* ============ TIMELINE (About) ============ */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), rgba(76,168,52,0.2));
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 5px;
  width: 12px; height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 2px var(--green);
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--green); margin-bottom: 4px; }
.timeline-item h4 { margin-bottom: 4px; }
.timeline-item p { font-size: 0.88rem; color: var(--gray); }

/* ============ FEATURED STATS BAR ============ */
.stats-showcase {
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  position: relative;
  overflow: hidden;
}
.stats-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(76,168,52,0.12) 0%, transparent 60%);
}
.stat-showcase-item { text-align: center; position: relative; z-index: 1; }
.stat-big { font-size: 2.4rem; font-weight: 800; color: var(--green); line-height: 1; margin-bottom: 6px; }
.stat-big-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* ============ INTRO HIGHLIGHT BOX ============ */
.intro-highlight {
  background: var(--light-green);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.intro-highlight p { color: var(--charcoal); font-size: 0.95rem; font-weight: 500; line-height: 1.65; }

/* ============ PRODUCT HERO IMAGE AREAS ============ */
.coconut-hero-bg {
  background: linear-gradient(135deg, #1a3a1a 0%, #2d5a27 40%, #1a3a1a 100%);
}
.coal-hero-bg {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 40%, #111122 100%);
}
.product-visual-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.pv-icon-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px;
}
.pv-main-icon {
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.1);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
}
.pv-main-icon svg { width: 60px; height: 60px; }
.pv-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.pv-tag {
  background: rgba(76,168,52,0.2);
  border: 1px solid rgba(76,168,52,0.3);
  color: var(--green);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
}
.pv-badge-strip {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pv-badge { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 500; }
.pv-badge strong { color: var(--green); display: block; font-size: 1rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Switch to mobile menu earlier so the 7-item nav never crowds */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 40px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .product-detail.reverse { direction: ltr; }
  .app-section { grid-template-columns: 1fr; }
  .app-section.reverse { direction: ltr; }
  .biz-info { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-check-list { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .mission-box { padding: 36px 24px; }
  .packaging-grid { grid-template-columns: 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .industry-showcase { grid-template-columns: 1fr 1fr; }
  .coal-products-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 24px; }
  .process-steps::before { display: none; }
  .biz-hours-grid { grid-template-columns: 1fr; }
  .stats-showcase { grid-template-columns: 1fr 1fr; padding: 32px 24px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 54px; height: 54px; }
  .wa-tooltip { display: none; }
}

@media (max-width: 480px) {
  .industries-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .section-header { margin-bottom: 40px; }
  .contact-form-wrap { padding: 24px; }
  .industry-showcase { grid-template-columns: 1fr; }
  .stats-showcase { grid-template-columns: 1fr; }
  .packaging-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   REAL PHOTOGRAPHY SUPPORT — Premium Industrial Imagery
   ============================================================ */

/* App-section photos: image fills the .app-img container */
.app-img { position: relative; }
.app-img > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  transition: transform 0.65s ease;
}
.app-img:hover > img { transform: scale(1.04); }

/* Bottom-left caption chip on any photo */
.photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 13px;
  border-radius: 8px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Tag chips overlay on top-left of photo */
.photo-chips {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.photo-chip {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* Product card tops with real photography */
.product-card-top { position: relative; }
.product-card-top > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.product-card:hover .product-card-top > img { transform: scale(1.07); }

/* Hero real photo (replaces SVG in .hero-img-wrap) */
.hero-img-wrap > img.hero-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  min-height: 440px;
  transition: transform 0.8s ease;
  opacity: 0.92;
}
.hero-img-wrap:hover > img.hero-img-real { transform: scale(1.02); }

/* Product page photo wrap (replaces coconut/coal gradient backgrounds) */
.product-photo-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}
.product-photo-container > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 380px;
  transition: transform 0.65s ease;
}
.product-photo-container:hover > img { transform: scale(1.03); }
.product-photo-container .p-stat-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 14px 20px;
  display: flex;
  justify-content: space-around;
  z-index: 2;
}
.p-stat-bar .sv { font-size: 0.92rem; font-weight: 800; color: var(--green); display: block; line-height: 1.3; }
.p-stat-bar .sk { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.product-photo-container .p-tags {
  position: absolute;
  top: 14px; left: 14px;
  display: flex; flex-wrap: wrap; gap: 7px;
  z-index: 2;
}
.p-tag-chip {
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* About section 3-panel photo mosaic */
.about-photo-mosaic {
  display: grid;
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  height: 460px;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-photo-mosaic .pm-main { grid-row: span 2; overflow: hidden; border-radius: var(--radius); background: var(--charcoal); }
.about-photo-mosaic .pm-sm { overflow: hidden; border-radius: var(--radius); background: var(--charcoal); }
.about-photo-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.about-photo-mosaic > div:hover img { transform: scale(1.04); }

/* Sieve conversion chart */
.sieve-table th, .sieve-table td { text-align: center; white-space: nowrap; }
.sieve-table th:first-child, .sieve-table td:first-child { text-align: left; }
.sieve-table tbody td:first-child { font-weight: 700; color: var(--charcoal); }

/* Home Applications — image cards */
.app-home-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.app-home-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.app-home-card:hover { transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,0.12); border-color: var(--green); }
.app-home-img { position: relative; height: 190px; overflow: hidden; background: var(--charcoal); }
.app-home-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s ease; }
.app-home-card:hover .app-home-img img { transform: scale(1.07); }
.app-home-img .app-home-tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.2); color: #fff;
  padding: 5px 11px; border-radius: 100px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.03em;
}
.app-home-body { padding: 22px 22px 24px; }
.app-home-body h4 { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin: 0 0 8px; }
.app-home-body p { font-size: 0.9rem; color: var(--gray); line-height: 1.6; margin: 0 0 14px; }
.app-home-more { display: inline-flex; align-items: center; gap: 6px; font-size: 0.86rem; font-weight: 700; color: var(--green); }
@media (max-width: 900px) { .app-home-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .app-home-grid { grid-template-columns: 1fr; } }

/* About section — single image (replaces 3-panel mosaic) */
.about-single {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.about-single::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
}
.about-single img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-single:hover img { transform: scale(1.03); }
@media (max-width: 768px) {
  .about-single img { min-height: 280px; }
}

/* Products page photo in card headers */
.product-card-top.coconut,
.product-card-top.coal { font-size: 0; }

@media (max-width: 768px) {
  .about-photo-mosaic { grid-template-columns: 1fr; height: auto; }
  .about-photo-mosaic .pm-main { grid-row: auto; height: 240px; }
  .about-photo-mosaic .pm-sm { height: 160px; }
  .product-photo-container { min-height: 260px; }
  .product-photo-container > img { min-height: 260px; }
}

/* ============================================================
   MESH GRADE RANGE — Granular Activated Carbon Cards
   ============================================================ */
.mesh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mesh-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.mesh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12);
  border-color: var(--green);
}
.mesh-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: var(--charcoal);
}
.mesh-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.mesh-card:hover .mesh-card-img img { transform: scale(1.07); }
.mesh-card-img .mesh-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--green);
  color: var(--charcoal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
}
.mesh-card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.mesh-card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.mesh-base {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.mesh-card-body p {
  font-size: 0.92rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0 0 18px;
  flex-grow: 1;
}
.mesh-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  transition: gap 0.2s ease;
}
.mesh-link:hover { gap: 11px; }

/* Packaging note strip */
.pack-note {
  margin-top: 28px;
  background: var(--light-green);
  border: 1px solid rgba(76,168,52,0.35);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--charcoal);
}
.pack-note svg { flex-shrink: 0; color: var(--green); }

@media (max-width: 900px) {
  .mesh-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .mesh-grid { grid-template-columns: 1fr; }
  .pack-note { flex-direction: column; text-align: center; }
}

/* ============================================================
   ACTIVATED CARBON CATALOGUE — Tabbed Explorer (distinct design)
   ============================================================ */
.ac-hero {
  position: relative;
  background: linear-gradient(135deg, #2B2728 0%, #191617 100%);
  color: #fff;
  padding: 92px 0 76px;
  overflow: hidden;
}
.ac-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,168,52,0.16) 0%, transparent 70%);
}
.ac-hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
}
.ac-hero .container { position: relative; z-index: 1; }
.ac-hero .breadcrumb a { color: rgba(255,255,255,0.6); }
.ac-hero .breadcrumb span { color: rgba(255,255,255,0.4); }
.ac-hero .breadcrumb a:hover { color: var(--green); }
.ac-hero h1 { color: #fff; font-size: 2.9rem; line-height: 1.1; margin: 14px 0 16px; max-width: 780px; }
.ac-hero h1 span { color: var(--green); }
.ac-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; line-height: 1.7; max-width: 640px; }
.ac-hero-stats { display: flex; flex-wrap: wrap; gap: 40px; margin-top: 34px; }
.ac-hero-stat .num { font-size: 1.9rem; font-weight: 800; color: var(--green); line-height: 1; }
.ac-hero-stat .lbl { font-size: 0.82rem; color: rgba(255,255,255,0.6); margin-top: 6px; }

.ac-explorer {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 34px;
  align-items: start;
}
.ac-tabs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 96px;
}
.ac-tab {
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 15px 17px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  font-family: inherit;
}
.ac-tab:hover { border-color: var(--green); transform: translateX(4px); }
.ac-tab.active { background: var(--charcoal); border-color: var(--charcoal); box-shadow: 0 12px 28px rgba(0,0,0,0.18); }
.ac-tab-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--light-green);
  color: var(--green);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.ac-tab.active .ac-tab-ico { background: var(--green); color: var(--charcoal); }
.ac-tab-txt { display: flex; flex-direction: column; gap: 2px; }
.ac-tab-txt strong { font-size: 0.97rem; color: var(--charcoal); font-weight: 700; }
.ac-tab-txt small { font-size: 0.77rem; color: var(--gray); }
.ac-tab.active .ac-tab-txt strong { color: #fff; }
.ac-tab.active .ac-tab-txt small { color: rgba(255,255,255,0.6); }

.ac-panels { position: relative; min-height: 480px; }
.ac-panel { display: none; }
.ac-panel.active { display: block; animation: acfade 0.4s ease; }
@keyframes acfade { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.ac-panel-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}
.ac-panel-media { position: relative; min-height: 380px; background: var(--charcoal); }
.ac-panel-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ac-num {
  position: absolute; top: 16px; left: 20px; z-index: 2;
  font-size: 3.2rem; font-weight: 800; line-height: 1;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.ac-media-tag {
  position: absolute; bottom: 16px; left: 16px; z-index: 2;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; padding: 6px 13px; border-radius: 100px;
  font-size: 0.76rem; font-weight: 600;
}
.ac-panel-info { padding: 38px 36px; }
.ac-panel-info .ac-eyebrow { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--green); }
.ac-panel-info h2 { font-size: 1.75rem; margin: 8px 0 14px; color: var(--charcoal); }
.ac-panel-info > p { color: var(--gray); line-height: 1.7; margin: 0 0 20px; font-size: 0.96rem; }
.ac-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.ac-chip {
  background: var(--light-green);
  color: #34701D;
  border: 1px solid rgba(76,168,52,0.4);
  padding: 5px 12px; border-radius: 100px;
  font-size: 0.77rem; font-weight: 600;
}
.ac-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; border-top: 2px solid var(--charcoal); }
.ac-spec-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.ac-spec-row .k { color: var(--gray); }
.ac-spec-row .v { font-weight: 700; color: var(--charcoal); text-align: right; white-space: nowrap; }
.ac-spec-row .v.hl { color: var(--green); }
.ac-panel-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .ac-explorer { grid-template-columns: 1fr; }
  .ac-tabs { flex-direction: row; overflow-x: auto; position: static; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .ac-tab { min-width: 220px; }
  .ac-tab:hover { transform: none; }
}
@media (max-width: 760px) {
  .ac-hero h1 { font-size: 2.1rem; }
  .ac-hero-stats { gap: 26px; }
  .ac-panel-card { grid-template-columns: 1fr; }
  .ac-panel-media { min-height: 220px; }
  .ac-panel-info { padding: 28px 22px; }
  .ac-specs { grid-template-columns: 1fr; }
}

/* ============================================================
   CAREERS — Job Listings
   ============================================================ */
.job-list { display: flex; flex-direction: column; gap: 16px; }
.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  transition: var(--transition);
}
.job-card:hover {
  border-color: var(--green);
  box-shadow: 0 16px 36px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.job-info { flex: 1; }
.job-info h4 { font-size: 1.15rem; font-weight: 700; color: var(--charcoal); margin: 0 0 10px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.job-tag {
  background: var(--light-green);
  color: #34701D;
  border: 1px solid rgba(76,168,52,0.4);
  padding: 4px 11px; border-radius: 100px;
  font-size: 0.74rem; font-weight: 600;
}
.job-info p { font-size: 0.92rem; color: var(--gray); line-height: 1.6; margin: 0; max-width: 640px; }
.job-card .btn { flex-shrink: 0; }

@media (max-width: 680px) {
  .job-card { flex-direction: column; align-items: flex-start; gap: 18px; }
  .job-card .btn { width: 100%; justify-content: center; }
}
