:root {
  --green-deep: #1a3a2a;
  --green-mid: #2d6a4f;
  --green-bright: #52b788;
  --green-light: #95d5b2;
  --cream: #f8f4ec;
  --leaf: #74c69d;
  --text-dark: #1a2e1f;
  --text-muted: #5a7a63;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: #000;
  overflow-x: hidden;
  font-weight: 400;
  font-size: 16px;
}

/* ── FONTS ── */
.playfair {
  font-family: "Dm sans", serif;
}

/* ── NAVBAR ── */
.navbar {
  background: #fffffff7 !important;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
  font-family: "Dm sans", serif;
  font-size: 1.4rem;
  color: var(--green-light) !important;
}

.navbar-brand span {
  color: #fff;
}

.nav-link {
  color: rgb(0, 0, 0) !important;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.nav-link:hover {
  color: var(--green-light) !important;
}

.btn-nav-cta {
  background: var(--green-bright) !important;
  color: #fff !important;
  border-radius: 4px;
  font-weight: 600;
  padding: 8px 20px;
}

.btn-nav-cta:hover {
  background: var(--leaf) !important;
}

.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
  filter: invert(1);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: var(--green-deep);
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse 60% 80% at 20% 50%,
      rgba(82, 183, 136, 0.12) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 20%,
      rgba(149, 213, 178, 0.08) 0%,
      transparent 60%
    );
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(82, 183, 136, 0.15);
  border: 1px solid rgba(82, 183, 136, 0.3);
  color: var(--green-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title {
  font-family: "Dm sans", serif;
  font-size: clamp(2.2rem, 3.5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
}

.hero-title em {
  font-style: normal;
  color: var(--green-light);
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.7;
}

.pill-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.8);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
}

.stat-num {
  font-family: "Dm sans", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-bright);
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── HERO FORM PANEL ── */
.hero-form-panel {
  background: #fff;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 44px;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
  border-radius: 20px;
}

.form-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
}

.form-title {
  font-family: "Dm sans", serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.form-control,
.form-select {
  border: 1.5px solid #e2ece6;
  background: #f9fcfa;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--green-bright);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.12);
  background: #fff;
}

.form-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}

.btn-submit {
  width: 100%;
  padding: 13px;
  background: var(--green-mid);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition:
    background 0.2s,
    transform 0.15s;
}

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

.cpcb-badge {
  background: #eaf7f0;
  border: 1px solid #b7e4c7;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-mid);
  text-align: center;
}

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: "Dm sans", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-dark);
}

.section-desc {
  font-size: 16px;
  color: #000;
  font-weight: 400;
  line-height: 1.7;
}

/* ── WHY CHOOSE ── */
#why {
  background: #fff;
}

.feature-card {
  background: var(--cream);
  border-radius: 12px;
  padding: 22px 20px;
  border: 1px solid #e5ede8;
  height: 100%;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 106, 79, 0.1);
}

.feature-card .fi {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.feature-card h5 {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin: 0;
}

.why-dark-card {
  background: var(--green-deep);
  border-radius: 20px;
  padding: 40px 36px;
  height: 100%;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 14px;
}

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

.cert-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cert-text h6 {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  margin: 0;
}

.cert-text small {
  color: rgba(250, 250, 250, 0.692);
  font-size: 15px;
}

/* ── PRODUCTS ── */
#products {
  background: var(--cream);
}

.product-card {
  background: #f8f4ec;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2ece6;
  height: 100%;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(45, 106, 79, 0.12);
}

.product-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.pt-1 {
  background: linear-gradient(135deg, #d8f3dc, #b7e4c7);
}

.pt-2 {
  background: linear-gradient(135deg, #c7e9c0, #a8dadc);
}

.pt-3 {
  background: linear-gradient(135deg, #dee2ff, #c5e8d1);
}

.pt-4 {
  background: linear-gradient(135deg, #fff0d1, #c9f0d3);
}

.pt-5 {
  background: linear-gradient(135deg, #fce4ec, #d4f5e0);
}

.pt-6 {
  background: linear-gradient(135deg, #e8eaf6, #c8e6c9);
}

.pt-7 {
  background: linear-gradient(135deg, #f3e5f5, #c5e8c8);
}

.product-body {
  padding: 18px 20px;
}

.product-body h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  text-align: center;
}

.product-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.product-tag {
  display: inline-block;
  background: #eaf7f0;
  color: var(--green-mid);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 10px;
}

/* ── CUSTOM PRINT ── */
#custom {
  background: var(--green-deep);
}

#custom .section-label {
  color: var(--green-light);
}

#custom .section-title {
  color: #fff;
}

#custom .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 12px;
}

.check-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(82, 183, 136, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.check-item span {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 500;
}

.custom-visual-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 36px;
}

.brand-mock-box {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.brand-mock-logo {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-bright), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 10px;
}

.custom-stat-box {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-stat-num {
  font-family: "Dm sans", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-light);
}

.custom-stat-lbl {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── INDUSTRIES ── */
#industries {
  background: #fff;
}

.industry-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
  border: 1px solid #e2ece6;
  transition: all 0.2s;
  cursor: default;
}

.industry-card:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  transform: translateY(-4px);
}

.industry-card:hover .ind-icon,
.industry-card:hover .ind-name {
  color: #fff !important;
}

.ind-icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 10px;
}

.ind-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}

/* ── FAQ ── */
#faq {
  background: var(--cream);
}

.faq-intro-card {
  background: var(--green-deep);
  border-radius: 16px;
  padding: 36px 30px;
  position: sticky;
  top: 90px;
}

.faq-intro-card h4 {
  font-family: "Dm sans", serif;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.faq-intro-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.accordion-item {
  border: 1px solid #e2ece6 !important;
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.accordion-button {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-dark) !important;
  background: #fff !important;
}

.accordion-button:not(.collapsed) {
  background: #f0faf5 !important;
  color: var(--green-mid) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: hue-rotate(90deg);
}

.accordion-body {
  font-size: 16px;
  color: #000;
  line-height: 1.65;
  background: #fff;
}

/* ── CONTACT ── */
#contact {
  background: var(--green-mid);
}

#contact .section-label {
  color: var(--green-light);
}

#contact .section-title {
  color: #fff;
}

#contact .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  text-decoration: none;
  color: #fff;
  margin-bottom: 14px;
  transition: background 0.2s;
}

.contact-link-item:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.cl-icon {
  color: #fff;
  font-size: 18px;
}
.cl-info h6 {
  margin: 0;
  font-size: 0.72rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cl-info p {
  margin: 2px 0 0;
  font-size: 0.93rem;
  font-weight: 500;
}

.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px 36px;
}

.contact-form-card h4 {
  font-family: "Dm sans", serif;
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 22px;
}

/* ── FOOTER ── */
footer {
  background: #f8f4ec;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  font-family: "Dm sans", serif;
  font-size: 1.2rem;
  color: var(--green-light);
  font-weight: 700;
}

.footer-link {
  color: rgb(0, 0, 0) !important;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
  font-weight: 600;
}

.footer-link:hover {
  color: var(--green-light) !important;
}

/* ── FADE-IN ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ── UTILS ── */
.text-green {
  color: var(--green-bright) !important;
}

.bg-green-deep {
  background: var(--green-deep) !important;
}

.btn-green {
  background: var(--green-bright);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 28px;
  transition:
    background 0.2s,
    transform 0.15s;
}

.btn-green:hover {
  background: var(--leaf);
  color: #fff;
  transform: translateY(-1px);
}
.custom-btn {
  background: linear-gradient(135deg, #52b788, #2d6a4f);
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
  border: none;
}

.custom-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: #fff;
}

#formStatus {
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-submit {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  border: none;
  transition: 0.3s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #333;
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s ease;
  z-index: 9999;
  font-size: 14px;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.success {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
}

.toast.error {
  background: linear-gradient(135deg, #e53935, #b71c1c);
}
.custom-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  color:#fff;
}
 .wa-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 16px;
    padding: 12px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: all 0.3s ease;
}

.wa-btn i {
    font-size: 22px;
}

.wa-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
}