/* ============================================================
   Kankriya Polyfilms — shared stylesheet
   ============================================================ */

:root {
  --navy: #0f2028;
  --navy-2: #123039;
  --teal: #006080;
  --teal-dark: #00485f;
  --green: #51a86a;
  --green-dark: #3d8f5a;
  --amber: #f8b63c;
  --amber-dark: #d99a1c;
  --grey: #82868f;
  --grey-dark: #5f6a70;
  --text: #16242b;
  --text-2: #4a5c63;
  --text-3: #5b6b72;
  --text-4: #7c8b91;
  --muted: #6a7a80;
  --border: #e4e8ea;
  --border-2: #d7dfe1;
  --bg-light: #f5f7f8;
  --bg-lighter: #f2f5f6;
  --white: #ffffff;
}

/* ---------- Reset / base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  overflow-x: hidden;
  max-width: 100%;
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1,
h2,
h3,
h4 {
  font-family: "Archivo", system-ui, sans-serif;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a {
  color: var(--teal);
  text-decoration: none;
}

a:hover {
  color: var(--teal-dark);
}

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

img:not(.nav-logo img) {
  border-radius: 16px;
}

input,
select,
textarea {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
}

input::placeholder,
textarea::placeholder {
  color: #98a6ac;
}

button {
  font-family: inherit;
}

@keyframes ks-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  /* overflow: hidden; */
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 9px 15px;
  font-size: 15px;
  font-weight: 500;
  color: #3c4d54;
  border-radius: 7px;
  transition: background 0.15s;
}

.nav-link:hover {
  background: var(--bg-lighter);
  color: #3c4d54;
}

.nav-link.active {
  font-weight: 600;
  color: var(--teal);
}

.nav-link.active:hover {
  background: transparent;
}

.btn-quote {
  margin-left: 10px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 72, 95, 0.25);
  transition: background 0.15s;
}

.btn-quote:hover {
  background: var(--teal-dark);
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-block;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  border-radius: 9px;
  box-shadow: 0 2px 8px rgba(0, 72, 95, 0.2);
  transition: background 0.15s;
}

.btn-primary:hover {
  background: var(--teal-dark);
  color: #fff;
}

.btn-secondary {
  display: inline-block;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  transition: border-color 0.15s;
}

.btn-secondary:hover {
  border-color: var(--teal);
}

.btn-cta {
  flex-shrink: 0;
  padding: 16px 30px;
  font-size: 16px;
  font-weight: 700;
  color: var(--teal-dark);
  background: #fff;
  border-radius: 10px;
  transition:
    background 0.15s,
    color 0.15s;
}

.btn-cta:hover {
  background: var(--amber);
  color: var(--navy);
}

/* ---------- Hero (Home) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #f4f8f9 0%, #eef3f5 55%, #e8eef0 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 96, 128, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 78px 28px 84px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero-copy {
  animation: ks-rise 0.7s ease both;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid #dbe3e5;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 22px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.hero-title {
  font-size: 53px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.hero-title .accent {
  color: var(--teal);
}

.hero-lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  animation: ks-rise 0.9s ease both;
}

.hero-image {
  position: relative;
  /* border-radius: 18px; */
  overflow: hidden;
  box-shadow: 0 24px 60px -18px rgba(15, 40, 50, 0.35);
  aspect-ratio: 4/3;
}

.hero-stats-card {
  position: absolute;
  left: -20px;
  bottom: -22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px -10px rgba(15, 40, 50, 0.25);
  display: flex;
  gap: 20px;
}

.stat-value {
  font-family: "Archivo";
  font-weight: 800;
  font-size: 24px;
  color: var(--teal);
}

.stat-value.green {
  color: var(--green);
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: var(--border);
}

.hero-flags {
  position: absolute;
  top: 20px;
  right: -14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-flags span {
  width: 44px;
  height: 9px;
  border-radius: 3px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy);
  color: #fff;
}

.trust-strip .container {
  padding: 26px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
}

.trust-num {
  font-family: "Archivo";
  font-weight: 800;
  font-size: 26px;
  color: var(--amber);
}

.trust-num.green {
  color: var(--green);
}

.trust-desc {
  font-size: 14px;
  color: #c4d0d4;
  line-height: 1.3;
}

/* ---------- Section headings ---------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px;
}

.section-intro {
  max-width: 1000px;
  margin: 0 auto;
  padding: 88px 28px 20px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}

.eyebrow.light {
  color: #8fd0b0;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--navy);
}

.section-title.lg {
  font-size: 37px;
  margin-bottom: 20px;
}

.section-lead {
  font-size: 18px;
  color: var(--text-2);
  max-width: 760px;
  margin: 0 auto;
}

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

.section-head-row .side-note {
  font-size: 15px;
  color: var(--text-3);
  max-width: 360px;
}

.section-head-row .side-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
}

/* ---------- Product / value / application grids ---------- */
.product-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.product-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    border-color 0.2s;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -18px rgba(15, 40, 50, 0.28);
}

.product-card-img {
  overflow: hidden;
  margin-bottom: 22px;
  /* height: 158px;
  border-radius: 11px;
  background: #eef3f2; */
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}

.product-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  align-items: center;
  justify-content: center;
}

.product-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.product-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-title .sub {
  font-weight: 500;
  color: var(--text-4);
  font-size: 16px;
}

.product-desc {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 16px;
}

.product-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

.app-section {
  background: var(--bg-light);
  margin-top: 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.app-section .container {
  padding: 80px 28px;
}

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

.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 24px;
  border-left: 4px solid var(--teal);
}

.app-card.green {
  border-left-color: var(--green);
}

.app-card.amber {
  border-left-color: var(--amber);
}

.app-card-title {
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  margin-bottom: 6px;
  font-family: "Archivo";
}

.app-card-desc {
  font-size: 14px;
  color: var(--text-3);
}

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

.value-card {
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(160deg, #fff, #f6f9fa);
  border: 1px solid var(--border);
}

.value-bar {
  width: 46px;
  height: 5px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.value-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 15px;
  color: var(--text-2);
}

/* ---------- Gallery ---------- */
.gallery-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gallery-section .container {
  padding: 78px 28px;
}

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

.gallery-item {
  overflow: hidden;
  /* 
  background: #eef3f2;
  border-radius: 16px;  
  height: 240px; */
}

.gallery-grid-ops {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  /* grid-template-rows: 200px 200px; */
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
}

.gallery-grid-ops img {
  height: 100%;
}

.gallery-item-tall {
  grid-row: span 2;
  overflow: hidden;
  /* border-radius: 16px;
  background: #e6ecee; */
}

.gallery-item-ops {
  overflow: hidden;
  /* border-radius: 16px;  
  background: #e6ecee; */
}

/* ---------- Image placeholder (replaces <image-slot>) ---------- */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eef3f2;
  color: #8a99a0;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 12px;
}

/* ---------- CTA banner ---------- */
.cta-section {
  max-width: 1200px;
  margin: 84px auto 84px;
  padding: 0 28px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(120deg, var(--teal), var(--teal-dark));
  padding: 58px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-flags {
  position: absolute;
  right: -40px;
  top: -40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0.5;
}

.cta-flags span {
  width: 140px;
  height: 14px;
  border-radius: 4px;
}

.cta-content {
  position: relative;
  max-width: 640px;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-lead {
  font-size: 17px;
  color: #cfe1e7;
}

/* ---------- Footer ---------- */
.site-footer {
  margin-top: auto;
  background: var(--navy);
  color: #c4d0d4;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 28px 30px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}

.footer-logo-box {
  background: #fff;
  display: inline-block;
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 18px;
}

.footer-logo-box img {
  height: 34px;
  display: block;
}

.footer-desc {
  font-size: 14px;
  color: #8ba0a7;
  max-width: 340px;
}

.footer-flags {
  display: flex;
  gap: 7px;
  margin-top: 20px;
}

.footer-flags span {
  width: 40px;
  height: 8px;
  border-radius: 3px;
}

.footer-heading {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  font-size: 15px;
  color: #c4d0d4;
}

.footer-contact-text {
  font-size: 14px;
  color: #c4d0d4;
  line-height: 1.7;
}

.footer-email {
  font-size: 14px;
  margin-top: 14px;
}

.footer-email a {
  color: #8fd0b0;
}

.footer-phone {
  font-size: 14px;
  color: #c4d0d4;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid #26383f;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  font-size: 13px;
  color: #7c9299;
}

/* ---------- Page header (About / Products / Contact) ---------- */
.page-header {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  color: #fff;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header .container {
  padding: 66px 28px 60px;
  position: relative;
}

.page-header.tall .container {
  padding: 74px 28px;
}

.page-header-flags {
  position: absolute;
  right: -30px;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0.35;
}

.page-header-flags.bottom {
  top: auto;
  bottom: 20px;
  opacity: 0.3;
}

.page-header-flags span {
  width: 180px;
  height: 16px;
  border-radius: 4px;
}

.page-title {
  font-size: 44px;
  font-weight: 800;
  max-width: 780px;
}

.page-title.wide {
  font-size: 46px;
  max-width: 820px;
}

.page-lead {
  font-size: 18px;
  color: #bcd0d6;
  max-width: 700px;
  margin-top: 18px;
}

/* ---------- About: story / vision-mission ---------- */
.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.story-text {
  font-size: 16px;
  color: var(--text-2);
  margin-bottom: 16px;
}

.story-image {
  position: relative;
}

.story-image-frame {
  overflow: hidden;
  box-shadow: 0 24px 60px -20px rgba(15, 40, 50, 0.35);
  aspect-ratio: 5/4;
  /* border-radius: 18px; */
}



.vm-section {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.vm-section .container {
  padding: 76px 28px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.vm-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 38px;
  border-top: 5px solid var(--teal);
}

.vm-card.green {
  border-top-color: var(--green);
}

.vm-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 14px;
}

.vm-card-title.green {
  color: var(--green-dark);
}

.vm-card-text {
  font-size: 17px;
  color: #3c4d54;
  line-height: 1.6;
}

/* ---------- Products page ---------- */
.subnav {
  position: sticky;
  top: 74px;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.subnav .container {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.subnav-link {
  padding: 16px 6px;
  margin-right: 18px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: border-color 0.15s;
}

.substrate-section {
  scroll-margin-top: 150px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 78px 28px 0;
}

.substrate-section.shaded {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-top: 78px;
  max-width: none;
  padding: 0;
}

.substrate-section.shaded .container {
  padding: 78px 28px;
}

.substrate-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.substrate-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.substrate-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.substrate-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.substrate-title .sub {
  font-weight: 500;
  color: var(--text-4);
  font-size: 19px;
}

.substrate-intro {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}

.substrate-intro-text {
  font-size: 17px;
  color: var(--text-2);
}

.substrate-intro-img {
  overflow: hidden;
  /* border-radius: 16px;
  height: 230px;
  background: #eef3f2; */
}

.subhead-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.subhead-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.subhead-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

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

.info-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px;
}

.info-card.shaded {
  background: var(--bg-light);
  padding: 28px;
}

.info-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.info-row {
  margin-bottom: 14px;
}

.info-row:last-child {
  margin-bottom: 0;
}

.info-row-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

.info-row-desc {
  font-size: 13.5px;
  color: var(--text-3);
}

.app-card-row {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  padding: 22px;
  border-left: 4px solid var(--teal);
}

.app-card-row.amber {
  border-left-color: var(--amber);
}

.app-card-.green {
  border-left-color: var(--green);
}

.app-card-row .app-card-title {
  font-weight: 600;
  font-size: 16px;
}

.app-card-row .app-card-desc {
  font-size: 14px;
}

.tech-table {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.tech-row {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1.4fr;
}

.tech-row.header {
  background: var(--navy);
  color: #fff;
}

.tech-row.header div {
  padding: 16px 22px;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.tech-row.body {
  border-top: 1px solid #eef1f2;
  background: #fff;
}

.tech-row.body.alt {
  background: #f7f9fa;
}

.tech-row.body div {
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-2);
}

.tech-cell-app {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

.tech-cell-combo {
  font-family: ui-monospace, Menlo, monospace;
}

.mb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mb-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  border-top: 5px solid var(--amber);
}

.mb-card.teal {
  border-top-color: var(--teal);
}

.mb-card-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.mb-card-desc {
  font-size: 15px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.mb-feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mb-feature {
  display: flex;
  gap: 12px;
}

.mb-feature-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: #fdf3dd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.mb-feature-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}

.mb-feature-desc {
  font-size: 14px;
  color: var(--text-3);
}

.resin-box {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px;
}

.resin-box-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 8px;
}

.resin-box-desc {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 14px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-pill {
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #dbe3e5;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
}

.tobacco-banner {
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(120deg, #1c2b31, #2a3d44);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.tobacco-copy {
  padding: 48px;
}

.tobacco-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.tobacco-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.tobacco-icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  align-items: center;
  justify-content: center;
}

.tobacco-title {
  font-size: 30px;
  font-weight: 700;
}

.tobacco-text {
  font-size: 17px;
  color: #c4d0d4;
  max-width: 560px;
}

.tobacco-image {
  position: relative;
  min-height: 280px;
}

.tobacco-image img {
  height: 100%;
}

/* ---------- Contact page ---------- */
.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 28px 84px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  gap: 15px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 3px;
}

.contact-card-text {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

.contact-card-link {
  font-size: 14px;
  color: var(--teal);
}

.map-placeholder {
  margin-top: 22px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-light);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: #8a99a0;
}

.map-placeholder-label {
  font-size: 13px;
  font-weight: 600;
}

.map-placeholder-sub {
  font-size: 12px;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 38px;
  box-shadow: 0 18px 50px -28px rgba(15, 40, 50, 0.3);
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-note {
  font-size: 15px;
  color: var(--text-3);
  margin-bottom: 26px;
}

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

.form-group {
  display: block;
}

.form-group.full {
  margin-bottom: 16px;
}

.form-group.mb-22 {
  margin-bottom: 22px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: #3c4d54;
  display: block;
  margin-bottom: 7px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  font-size: 15px;
  outline: none;
  background: #fbfcfc;
  color: var(--text);
}

.form-input.error,
.form-select.error {
  border-color: #e0a3a0;
}

.form-textarea {
  resize: vertical;
}

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

.btn-submit {
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 72, 95, 0.25);
  transition: background 0.15s;
}

.btn-submit:hover {
  background: var(--teal-dark);
}

.form-error {
  font-size: 14px;
  color: #c0392b;
  display: none;
}

.form-error.show {
  display: inline;
}

.success-panel {
  display: none;
  text-align: center;
  padding: 20px 10px;
}

.success-panel.show {
  display: block;
}

.success-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #eaf5ee;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.success-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.success-text {
  font-size: 16px;
  color: var(--text-3);
  max-width: 400px;
  margin: 0 auto 24px;
}

.btn-again {
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  background: #fff;
  border: 1px solid var(--border-2);
  border-radius: 9px;
  cursor: pointer;
}

/* =======================================
        Hamburger Menu 
 ======================================= */


.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle .bar {
  width: 100%;
  height: 3px;
  background-color: #000;
  /* match your brand color */
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hamburger -> X animation */
.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}