/* ==========================================================================
   Thai Poultry Group (TPG) - Corporate Stylesheet
   Theme: Forest Green, Cream, Crisp White, Alert Ruby
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Prompt:wght@300;400;500;600;700&display=swap');

:root {
  --green-950: #102d20;
  --green-900: #173f2f;
  --green-800: #225840;
  --green-700: #2d7354;
  --green-100: #e8f3ec;
  --green-50: #f4f9f6;
  --cream: #f9f8f4;
  --cream-alt: #f4f1e8;
  --red-900: #6f111e;
  --red-700: #8f1d2c;
  --red-600: #ab2133;
  --red-100: #fae6e9;
  --red-50: #fdf2f4;
  --text-main: #182821;
  --text-muted: #5e6f66;
  --text-light: #899890;
  --border: #dfe7e2;
  --border-light: #edf2ee;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(23, 63, 47, 0.05);
  --shadow-md: 0 8px 24px rgba(23, 63, 47, 0.08);
  --shadow-lg: 0 16px 40px rgba(23, 63, 47, 0.12);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --container-max: 1360px;
  --font-sans: 'Plus Jakarta Sans', 'Prompt', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Caveat', cursive;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  color: var(--text-main);
  background-color: var(--white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: min(calc(100% - 64px), var(--container-max));
  margin-inline: auto;
  padding-inline: 16px;
}

/* ==========================================================================
   TOP ALERT BANNER (Fake Website / Fraud Alert)
   ========================================================================== */
.alert-banner {
  background: linear-gradient(90deg, #7c1422 0%, #8f1d2c 50%, #a22234 100%);
  color: var(--white);
  position: relative;
  z-index: 50;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.alert-banner.hidden {
  display: none;
}

.alert-container {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  font-size: 13.5px;
}

.alert-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.alert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.alert-icon-pulse {
  display: inline-block;
  animation: pulse-alert 2s infinite ease-in-out;
}

@keyframes pulse-alert {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.18); opacity: 0.85; }
}

.alert-text {
  color: rgba(255, 255, 255, 0.96);
}

.alert-link {
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.7);
  padding-bottom: 1px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.alert-link:hover {
  border-bottom-color: var(--white);
  transform: translateX(2px);
}

.alert-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.alert-close:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   NAVIGATION & HEADER
   ========================================================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 40;
  transition: box-shadow 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(18, 45, 32, 0.07);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

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

.nav-link {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2.5px;
  background: var(--green-800);
  border-radius: 2px;
  transition: width 0.25s ease;
}

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

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--green-50);
  border: 1px solid var(--border);
  padding: 3px 6px;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
}

.lang-btn {
  border: none;
  background: transparent;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.2s;
}

.lang-btn.active {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 2px 6px rgba(23, 63, 47, 0.2);
}

.btn-header-verify {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-900);
  border: 1px solid rgba(34, 88, 64, 0.25);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.2s;
}

.btn-header-verify:hover {
  background: var(--green-900);
  color: var(--white);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--green-950);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  background: linear-gradient(135deg, #0d281c 0%, #153829 40%, #1c4533 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 70px 0 85px;
}

.hero-backdrop-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1.5px, transparent 1.5px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.badge-official {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #c7eed6;
  text-transform: uppercase;
}

.badge-group {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.hero-company-name {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #92d9af;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-title {
  font-size: clamp(38px, 4.4vw, 62px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin-bottom: 22px;
  color: var(--white);
}

.hero-title span {
  color: #bbf0d0;
}

.hero-desc {
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  margin-bottom: 34px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-950);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #f0f7f3;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ==========================================================================
   HERO SECTION: Seamless Blended Background (Matching media_1789402583021.png)
   ========================================================================== */
.hero-section {
  background: #081d14;
  color: var(--white);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding: 80px 0 90px;
}

.hero-blend-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1);
  transition: opacity 1.3s ease-in-out, transform 6s ease-out;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1.08);
  pointer-events: auto;
}

.hero-blend-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(10, 32, 22, 0.72) 0%,
    rgba(10, 32, 22, 0.88) 55%,
    rgba(8, 24, 17, 0.97) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Centered Hero Content */
.hero-center-content {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-slogan-top {
  margin-bottom: 12px;
}

.hero-slogan-top .hero-slogan-script {
  font-family: var(--font-script);
  font-size: 34px;
  color: #c7eed6;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.9), 0 0 24px rgba(13, 40, 28, 0.9);
}

.hero-badge-center {
  justify-content: center;
  margin-bottom: 18px;
}

.hero-title-center {
  text-align: center;
  margin-inline: auto;
  max-width: 920px;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-desc-center {
  text-align: center;
  margin: 0 auto 34px;
  max-width: 780px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.hero-cta-center {
  justify-content: center;
  margin-bottom: 38px;
}

.hero-bottom-status-center {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 14.5px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  transition: all 0.25s ease;
}

.btn-outline-pill:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 640px) 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 3;
}

.hero-copy {
  max-width: 620px;
  padding: 10px 0;
}

.hero-slogan-float {
  justify-self: end;
  align-self: start;
  text-align: right;
  margin-top: 10px;
  margin-right: 15px;
  pointer-events: none;
}

.hero-slogan-script {
  font-family: var(--font-script);
  font-size: 34px;
  color: #ffffff;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85), 0 0 24px rgba(13, 40, 28, 0.9);
}

.hero-bottom-controls {
  position: absolute;
  bottom: 22px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 4;
}

.hero-plant-tag {
  background: rgba(13, 40, 28, 0.88);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.hero-slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 24px;
  border-radius: 12px;
  background: #92d9af;
  box-shadow: 0 0 10px rgba(146, 217, 175, 0.7);
}

/* ==========================================================================
   TRUST PILLARS / HIGHLIGHTS BAR
   ========================================================================== */
.trust-bar {
  background: var(--green-950);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 22px;
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.2s;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.trust-icon-box {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92d9af;
}

.trust-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.trust-info p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */
.products-section {
  padding: 85px 0 95px;
  background: var(--cream);
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}

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

.section-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-950);
  line-height: 1.15;
}

.section-head-center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 44px;
}

.section-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 12px;
}

.product-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(13, 40, 28, 0.84);
  backdrop-filter: blur(6px);
  color: #c7eed6;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--green-900);
  white-space: nowrap;
  transition: all 0.2s;
}

.view-all-link:hover {
  color: var(--green-700);
  transform: translateX(3px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.28s ease;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green-700);
}

.product-img-wrapper {
  background: linear-gradient(180deg, #fbfbfa 0%, #f4f0eb 100%);
  aspect-ratio: 1.35 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  overflow: hidden;
  position: relative;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

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

.product-card-body {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}

.product-card-body h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--green-950);
}

.product-card-body p {
  font-size: 12px;
  color: var(--text-muted);
}

.product-arrow-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.product-card:hover .product-arrow-btn {
  background: var(--green-900);
  color: var(--white);
  transform: translateX(2px);
}

/* ==========================================================================
   ABOUT & FACTORY SHOWCASE (Real Plant Photos)
   ========================================================================== */
.about-section {
  padding: 95px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 60px;
  margin-bottom: 75px;
}

.about-copy .section-eyebrow {
  color: var(--green-800);
}

.about-copy h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.15;
  margin-bottom: 20px;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.stat-item h4 {
  font-size: 28px;
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.plant-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.plant-photo-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--green-950);
}

.plant-photo-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s;
}

.plant-photo-card:hover img {
  transform: scale(1.05);
  opacity: 0.92;
}

.plant-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(16, 45, 32, 0.95) 0%, rgba(16, 45, 32, 0) 100%);
  padding: 30px 16px 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

/* ==========================================================================
   ANTI-FRAUD SECURITY HUB (Interactive Verification & Warnings)
   ========================================================================== */
.security-hub-section {
  padding: 85px 0 95px;
  background: linear-gradient(180deg, #fdf8f8 0%, #faecee 100%);
  border-top: 1px solid #f1d3d7;
  border-bottom: 1px solid #f1d3d7;
}

.security-head {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
}

.security-head .section-eyebrow {
  color: var(--red-700);
}

.security-head h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  color: #6a131f;
  margin-bottom: 14px;
  font-weight: 800;
}

.security-head p {
  color: #5c3a40;
  font-size: 16px;
  line-height: 1.6;
}

/* Verification Search Box */
.verify-search-box {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(143, 29, 44, 0.08);
  border: 1px solid #f1c9ce;
  max-width: 780px;
  margin: 0 auto 48px;
}

.verify-search-box label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: #4b1a21;
  margin-bottom: 8px;
}

.verify-input-group {
  display: flex;
  gap: 10px;
}

.verify-input-group input {
  flex: 1;
  border: 1.5px solid #dfb9be;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--text-main);
  outline: none;
  transition: border-color 0.2s;
}

.verify-input-group input:focus {
  border-color: var(--red-700);
  box-shadow: 0 0 0 3px rgba(143, 29, 44, 0.12);
}

.verify-input-group button {
  background: var(--red-700);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.verify-input-group button:hover {
  background: #7a1523;
}

.verify-result {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.verify-result.danger {
  display: block;
  background: #fde8ea;
  border-left: 4px solid var(--red-700);
  color: #791321;
}

.verify-result.info {
  display: block;
  background: #edf6f0;
  border-left: 4px solid var(--green-800);
  color: var(--green-950);
}

/* Scam Warning Cards */
.scam-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
}

.scam-card {
  background: var(--white);
  border: 1.5px solid #f2cdd2;
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: 0 4px 16px rgba(143, 29, 44, 0.05);
  position: relative;
}

.scam-card-label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--red-700);
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.scam-card h3 {
  font-size: 22px;
  color: var(--green-950);
  margin-bottom: 6px;
}

.scam-card .claimed-pos {
  font-size: 14.5px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.scam-alert-box {
  background: #fff4f5;
  border-left: 3.5px solid var(--red-700);
  padding: 12px 14px;
  font-size: 13.5px;
  color: #69131f;
  margin-top: 12px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.bank-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  margin: 14px 0;
}

.bank-detail-table tr {
  border-bottom: 1px solid #f1dcde;
}

.bank-detail-table tr:last-child {
  border-bottom: none;
}

.bank-detail-table td {
  padding: 8px 0;
}

.bank-detail-table td:first-child {
  width: 130px;
  color: var(--text-muted);
  font-weight: 500;
}

.bank-detail-table td:last-child {
  font-weight: 700;
  color: var(--text-main);
}

.bank-detail-table td .fraud-number {
  color: var(--red-700);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.operations-banner {
  background: var(--green-100);
  border-left: 4.5px solid var(--green-800);
  padding: 22px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 1060px;
  margin: 28px auto 0;
}

.operations-banner h4 {
  color: var(--green-950);
  font-size: 17px;
  margin-bottom: 4px;
  font-weight: 800;
}

.operations-banner p {
  color: var(--green-900);
  font-size: 14px;
  margin: 0;
}

/* ==========================================================================
   QUALITY & CERTIFICATIONS
   ========================================================================== */
.quality-section {
  padding: 85px 0;
  background: var(--white);
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.cert-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.25s;
}

.cert-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-700);
  box-shadow: var(--shadow-md);
}

.cert-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--green-50);
  color: var(--green-800);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.cert-card h3 {
  font-size: 17px;
  color: var(--green-950);
  margin-bottom: 8px;
  font-weight: 700;
}

.cert-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================================
   CONTACT US & RFQ
   ========================================================================== */
.contact-section {
  padding: 95px 0;
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
}

.contact-info h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 30px;
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 14px;
  color: var(--green-900);
  margin-bottom: 3px;
}

.contact-item p {
  font-size: 14px;
  color: var(--text-main);
  margin: 0;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--green-950);
  margin-bottom: 20px;
}

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

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-main);
}

.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green-800);
  box-shadow: 0 0 0 3px rgba(34, 88, 64, 0.12);
}

.btn-submit {
  background: var(--green-900);
  color: var(--white);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  width: 100%;
}

.btn-submit:hover {
  background: var(--green-950);
  transform: translateY(-1px);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #0d2319;
  color: #a4b3ab;
  padding: 65px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 54px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: #a4b3ab;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-size: 12.5px;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

/* ==========================================================================
   PRODUCT MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 26, 18, 0.7);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 620px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  position: relative;
  animation: modal-enter 0.25s ease-out;
}

@keyframes modal-enter {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  font-size: 18px;
}

.modal-header-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #fbfbfa 0%, #ede8e1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-header-img img {
  max-height: 100%;
  object-fit: contain;
}

.modal-content {
  padding: 28px;
}

.modal-content h3 {
  font-size: 24px;
  color: var(--green-950);
  margin-bottom: 8px;
}

.modal-spec-table {
  width: 100%;
  margin: 18px 0;
  border-collapse: collapse;
  font-size: 13.5px;
}

.modal-spec-table tr {
  border-bottom: 1px solid var(--border-light);
}

.modal-spec-table td {
  padding: 9px 0;
}

.modal-spec-table td:first-child {
  width: 140px;
  color: var(--text-muted);
}

.modal-spec-table td:last-child {
  font-weight: 600;
  color: var(--text-main);
}

/* ==========================================================================
   OFFICIAL NOTICE PAGE SPECIFIC STYLES
   ========================================================================== */
.notice-page-main {
  padding: 50px 0 90px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.breadcrumb-nav a:hover {
  color: var(--green-900);
}

.notice-hero {
  max-width: 820px;
  margin-bottom: 45px;
}

.notice-hero .section-eyebrow {
  color: var(--red-700);
  font-size: 12px;
}

.notice-hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.035em;
}

.notice-hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

.print-notice-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: all 0.2s;
}

.print-notice-btn:hover {
  border-color: var(--green-900);
  color: var(--green-900);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-slogan-overlay {
    display: none;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }
  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 36px), var(--container-max));
    padding-inline: 10px;
  }
  .header-inner {
    height: 70px;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid var(--border);
    gap: 16px;
    align-items: flex-start;
  }
  .nav-menu.mobile-open {
    display: flex;
  }
  .mobile-menu-btn {
    display: block;
  }
  .btn-header-verify {
    display: none;
  }
  .hero-section {
    padding: 50px 0 60px;
    min-height: auto;
  }
  .hero-title,
  .hero-title-center {
    font-size: clamp(24px, 6.8vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    word-break: break-word;
  }
  .hero-slogan-top .hero-slogan-script {
    font-size: 20px;
    line-height: 1.25;
    display: block;
    word-break: break-word;
  }
  .hero-desc-center {
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 24px;
    word-break: break-word;
  }
  .hero-cta-center {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-cta-center a {
    width: 100%;
    justify-content: center;
  }
  .hero-bottom-status-center {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-plant-tag {
    max-width: 100%;
    font-size: 11.5px;
    justify-content: center;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plant-gallery {
    grid-template-columns: 1fr;
  }
  .plant-photo-card img {
    height: 200px;
  }
  .scam-cards-grid {
    grid-template-columns: 1fr;
  }
  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
  .certs-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .verify-input-group {
    flex-direction: column;
  }
  .verify-input-group button {
    width: 100%;
  }
}

/* ==========================================================================
   ABOUT US PAGE STYLES (TPG_About_Us_Revised_HTML_CSS)
   ========================================================================== */
.about-page-main {
  background: var(--white);
  padding-bottom: 0;
}

.who-we-are-section {
  padding: 55px 0 65px;
}

.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-copy-block h2 {
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.1;
  letter-spacing: -0.035em;
  margin: 10px 0 20px;
}

.about-copy-block p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #3f5047;
  margin-bottom: 20px;
}

.factory-fact-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(13,40,28,0.3) 0%, rgba(13,40,28,0.7) 100%),
              url("assets/about/packaging-line.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-md);
}

.fact-card-overlay {
  position: absolute;
  z-index: 3;
  left: 36px;
  top: 36px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.fact-card-overlay span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c7eed6;
}

.fact-card-overlay strong {
  display: block;
  margin: 4px 0 16px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
}

.fact-card-overlay .fact-line {
  width: 40px;
  height: 2.5px;
  margin: 0 0 18px;
  background: #fff;
  border-radius: 2px;
}

.fact-card-overlay h3 {
  margin: 0 0 4px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
}

.fact-card-overlay p {
  margin: 0;
  color: #e5efe9;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Facts Grid */
.facts-strip {
  padding: 0 0 45px;
}

.facts-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #dce8df;
  border-radius: var(--radius-md);
  background: var(--green-100);
}

.fact-strip-item {
  min-height: 120px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-right: 1px solid #cfddd4;
}

.fact-strip-item:last-child {
  border-right: none;
}

.fact-strip-icon {
  flex: 0 0 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green-800);
  border-radius: 50%;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
  background: var(--white);
}

.fact-strip-info h3 {
  margin: 0 0 3px;
  color: var(--green-950);
  font-size: 18px;
  font-weight: 800;
}

.fact-strip-info p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12.5px;
}

/* Chaveevan Group Section */
.chaveevan-group-section {
  padding: 70px 0 80px;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.chaveevan-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.chaveevan-farm-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.4) 100%),
              url("assets/about/chaveevan-farm.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(23, 63, 47, 0.1);
}

.chaveevan-farm-caption {
  position: absolute;
  z-index: 3;
  left: 30px;
  top: 30px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.chaveevan-farm-caption span {
  display: block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #92d9af;
  text-transform: uppercase;
}

.chaveevan-farm-caption strong {
  display: block;
  margin-top: 4px;
  font-size: 32px;
  font-weight: 800;
}

.chaveevan-farm-caption p {
  margin: 4px 0 0;
  font-size: 15px;
  color: #f0f7f3;
  font-weight: 600;
}

/* Our Commitment */
.commitment-section {
  padding: 85px 0;
  background: var(--white);
}

.commitment-row {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 0.75fr);
  border: 1px solid #dce8df;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--green-50);
}

.commitment-intro-cell {
  padding: 44px 38px;
}

.commitment-intro-cell h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 800;
  color: var(--green-950);
  line-height: 1.1;
  margin: 8px 0 14px;
}

.commitment-intro-cell p {
  color: #4b5a52;
  font-size: 14.5px;
  line-height: 1.6;
}

.commitment-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 34px 22px;
  text-align: center;
  border-left: 1px solid #cad9cf;
  background: var(--green-100);
}

.commitment-icon-circle {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 2px solid var(--green-800);
  border-radius: 50%;
  color: var(--green-800);
  font-size: 20px;
  background: var(--white);
}

.commitment-cell h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.commitment-cell p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
}

/* Products CTA Banner with messageImage_1789402620395.jpg */
.products-cta-banner {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: #173f2f;
  display: flex;
  align-items: center;
}

.products-cta-bg {
  position: absolute;
  inset: 0;
  background: url("assets/about/products-banner.jpg") center/cover no-repeat;
  opacity: 0.9;
}

.products-cta-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(14, 43, 30, 0.94) 0%,
    rgba(14, 43, 30, 0.85) 40%,
    rgba(14, 43, 30, 0.35) 75%,
    rgba(14, 43, 30, 0.15) 100%
  );
  z-index: 1;
}

.products-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff;
  padding: 50px 0;
}

.products-cta-content h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 6px;
  color: var(--white);
}

.btn-cta-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--green-950);
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: all 0.25s;
}

.btn-cta-explore:hover {
  background: #f0f7f3;
  transform: translateY(-2px);
}

@media (max-width: 980px) {
  .about-split-grid,
  .chaveevan-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .facts-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .commitment-row {
    grid-template-columns: 1fr;
  }
  .commitment-cell {
    border-left: none;
    border-top: 1px solid #cad9cf;
    padding: 24px;
  }
}

@media (max-width: 600px) {
  .facts-strip-grid {
    grid-template-columns: 1fr;
  }
  .products-cta-content {
    flex-direction: column;
    align-items: flex-start;
  }
}