
/* =========================================================
   1. ROOT VARIABLES
   ========================================================= */
:root {
  --crimson: #c65d3b;
  --crimson-dark: #94422a;
  --crimson-deep: #6d2f1e;
  --crimson-tint: #fdf2ee;
  --gold: #e6b800;
  --gold-light: #f2d06b;
  --gold-soft: #c9982a;
  --gold-pale: #fdf6e3;
  --gold-tint: #fdf8ea;
  --forest: #4a6b3a;
  --forest-dark: #2e4a1f;
  --forest-deep: #1d3112;
  --forest-soft: #4a6b3a;
  --forest-tint: #f0f4ec;
  --leaf: #6b8f4e;
  --leaf-light: #8ca86b;
  --cream: #faf3e8;
  --cream-dark: #f0e6d8;
  --sand: #e5d5b8;
  --paper: #ffffff;
  --paper-alt: #faf9f6;
  --paper-deep: #f4f2ec;
  --white: #ffffff;
  --off-white: #fefbf5;
  --ink: #2c2c2c;
  --ink-soft: #3a3a3a;
  --ink-muted: #7a7a6c;
  --ink-light: #9a9a8a;
  --ink-faint: #c9c6bd;
  --text: #2c2c2c;
  --text-light: #555;
  --text-muted: #7a7a6c;
  --line: #e8e0d0;
  --line-dark: #d5cdb8;
  --border-light: #e8e0d0;
  --success: #4a7a2e;
  --success-tint: #f0f5e9;
  --radius-xs: 4px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 44px;
  --radius-2xl: 60px;
  --container: 1280px;
  --nav-height: 70px;
  --font-sans: 'Poppins', 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-serif2: 'Cormorant Garamond', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-xs: 0 1px 2px rgba(26, 42, 14, 0.04);
  --shadow-sm: 0 2px 12px rgba(26, 60, 14, 0.06);
  --shadow-md: 0 6px 30px rgba(26, 60, 14, 0.1);
  --shadow-lg: 0 15px 50px rgba(26, 60, 14, 0.15);
  --shadow-xl: 0 25px 70px rgba(26, 60, 14, 0.2);
}

/* =========================================================
   2. GLOBAL RESET
   ========================================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: clip;
}
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}
body.preloader-active { overflow: hidden; height: 100vh; }
body.nav-open { overflow: hidden; }
::selection { background: var(--crimson); color: var(--white); }
img, video { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); cursor: none; }
ul { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--crimson); }
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2c-8 4-12 10-12 18 0 6 4 10 8 12 4-2 8-6 8-12 0-8-4-14-12-18zm0 0c8 4 12 10 12 18 0 6-4 10-8 12-4-2-8-6-8-12 0-8 4-14 12-18z' fill='%234a6b3a' fill-opacity='0.05'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

/* =========================================================
   3. CUSTOM CURSOR
   ========================================================= */
.cursor-dot, .cursor-circle {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor-dot {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  color: var(--crimson);
  transition: width 0.3s, height 0.3s, background 0.3s, color 0.3s, transform 0.2s;
}
.cursor-dot i { pointer-events: none; transition: transform 0.3s; }
.cursor-circle {
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  background: transparent;
  border-radius: 50%;
  transition: transform 0.2s ease-out, width 0.3s, height 0.3s, border-color 0.3s, background 0.3s, border-radius 0.3s;
}
.cursor-hover .cursor-circle {
  width: 68px; height: 68px;
  border-color: var(--crimson);
  background: rgba(230, 184, 0, 0.1);
  border-radius: 40% 60% 55% 45% / 50% 40% 60% 50%;
}
.cursor-hover .cursor-dot {
  background: var(--gold);
  width: 28px; height: 28px;
  color: var(--forest);
  border-radius: 50% 50% 50% 0;
  transform: translate(-50%, -50%) rotate(15deg);
}
.cursor-hover .cursor-dot i { transform: scale(1.3); }

/* =========================================================
   4. CINEMATIC PRELOADER
   ========================================================= */
.preloader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, #1a2e0f 0%, #0d1a08 60%, #050a03 100%);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform 1s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease, visibility 0.8s ease;
  transform: translateY(0);
}
.preloader.hidden {
  transform: translateY(-100%);
  opacity: 0; visibility: hidden;
  pointer-events: none;
}
.preloader-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.8) 100%);
  pointer-events: none; z-index: 1;
}
.preloader-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.12;
  animation: grainShift 0.6s steps(4) infinite;
  pointer-events: none; z-index: 2;
  mix-blend-mode: overlay;
}
@keyframes grainShift {
  0% { background-position: 0 0; }
  25% { background-position: -30px 20px; }
  50% { background-position: 20px -15px; }
  75% { background-position: -10px -30px; }
  100% { background-position: 15px 10px; }
}
.preloader-letterbox-top, .preloader-letterbox-bottom {
  position: absolute; left: 0;
  width: 100%; background: #000;
  z-index: 3; pointer-events: none;
  transition: height 0.8s ease, opacity 0.5s ease;
}
.preloader-letterbox-top { top: 0; height: 70px; }
.preloader-letterbox-bottom { bottom: 0; height: 70px; }
.preloader.hidden .preloader-letterbox-top,
.preloader.hidden .preloader-letterbox-bottom { height: 0; opacity: 0; }
.preloader-content {
  position: relative; z-index: 10;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; padding: 20px;
}
.preloader-gots-seal {
  width: 120px; height: 120px;
  position: relative; margin-bottom: 5px;
  animation: sealCinematic 1.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
  transform-origin: center;
}
@keyframes sealCinematic {
  0% { transform: scale(0.2) rotate(-15deg); opacity: 0; filter: blur(5px); }
  60% { transform: scale(1.1) rotate(3deg); opacity: 1; filter: blur(0); }
  80% { transform: scale(0.95) rotate(-1deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
.preloader-gots-seal svg {
  width: 100%; height: 100%;
  overflow: visible;
  filter: drop-shadow(0 0 20px rgba(230, 184, 0, 0.4));
}
.seal-ring, .seal-inner-ring, .seal-leaf, .seal-check { transform-origin: center; }
.seal-ring {
  fill: none; stroke: var(--gold); stroke-width: 2.5;
  stroke-dasharray: 300; stroke-dashoffset: 300;
  animation: sealRingDraw 2s ease-out 0.3s forwards;
}
@keyframes sealRingDraw { 0% { stroke-dashoffset: 300; } 100% { stroke-dashoffset: 0; } }
.seal-inner-ring {
  fill: none; stroke: rgba(230, 184, 0, 0.4); stroke-width: 1.2;
  stroke-dasharray: 200; stroke-dashoffset: 200;
  animation: sealInnerDraw 1.8s ease-out 0.5s forwards;
}
@keyframes sealInnerDraw { to { stroke-dashoffset: 0; } }
.seal-leaf {
  fill: var(--gold); opacity: 0;
  animation: sealLeafAppear 1.2s ease-out 1s forwards;
}
@keyframes sealLeafAppear {
  0% { opacity: 0; transform: scale(0.3) rotate(-40deg); }
  70% { opacity: 1; transform: scale(1.15) rotate(5deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}
.seal-check {
  fill: none; stroke: var(--gold-light); stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: sealCheckDraw 0.5s ease-out 1.5s forwards;
}
@keyframes sealCheckDraw { to { stroke-dashoffset: 0; } }
.preloader-brand { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.preloader-brand-name {
  font-family: var(--font-heading);
  font-size: 2.4rem; font-weight: 800;
  color: var(--white); letter-spacing: 1.2px;
  text-shadow: 0 0 30px rgba(230, 184, 0, 0.3);
  animation: brandReveal 1.5s ease-out 0.6s both;
}
.preloader-brand-name span { color: var(--gold); }
@keyframes brandReveal {
  0% { opacity: 0; letter-spacing: 0.2em; transform: scale(0.8); filter: blur(3px); }
  60% { opacity: 1; letter-spacing: 0.08em; transform: scale(1.02); filter: blur(0); }
  100% { opacity: 1; letter-spacing: 0.04em; transform: scale(1); }
}
.preloader-brand-sub {
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  animation: subFade 1.2s ease-out 1s both;
}
@keyframes subFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}
.preloader-gots-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(230, 184, 0, 0.1);
  border: 1px solid rgba(230, 184, 0, 0.25);
  padding: 4px 16px; border-radius: 50px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
  animation: badgeFade 0.8s ease-out 1.2s both;
}
@keyframes badgeFade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.preloader-progress-wrap {
  margin-top: 10px; width: 260px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  animation: progressAppear 0.8s ease-out 1.3s both;
}
@keyframes progressAppear {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}
.preloader-progress-ring { width: 64px; height: 64px; position: relative; flex-shrink: 0; }
.preloader-progress-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 10px rgba(230, 184, 0, 0.5));
}
.ring-track { fill: none; stroke: rgba(255,255,255,0.1); stroke-width: 3; }
.ring-fill {
  fill: none; stroke: var(--gold); stroke-width: 3;
  stroke-linecap: round; stroke-dasharray: 160; stroke-dashoffset: 160;
  transition: stroke-dashoffset 0.1s linear;
}
.preloader-percentage {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 800;
  color: var(--gold); letter-spacing: 0.5px;
  text-shadow: 0 0 12px rgba(230, 184, 0, 0.7);
}
.preloader-progress-bar {
  width: 100%; height: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 3px; overflow: hidden; position: relative;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.4);
}
.preloader-progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 3px; width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 12px rgba(230, 184, 0, 0.6);
}
.preloader-filmstrip {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0px, transparent 8px, rgba(0,0,0,0.5) 8px, rgba(0,0,0,0.5) 10px);
  pointer-events: none; opacity: 0.6;
}
.preloader-status {
  font-size: 0.65rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px; text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
  min-height: 1.2em;
}
.preloader-dots { display: inline-flex; gap: 3px; }
.preloader-dots span {
  width: 3px; height: 3px; background: var(--gold);
  border-radius: 50%; animation: dotBlink 1.2s infinite;
}
.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotBlink {
  0%, 100% { opacity: 0.3; transform: scale(0.7); }
  50% { opacity: 1; transform: scale(1); }
}
.preloader-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.preloader-particle {
  position: absolute; color: rgba(230, 184, 0, 0.25);
  font-size: 1.3rem; animation: particleFloat 4s infinite ease-in-out;
}
.preloader-particle:nth-child(1) { top: 10%; left: 6%; animation-delay: 0s; }
.preloader-particle:nth-child(2) { top: 20%; right: 8%; animation-delay: 0.8s; font-size: 1rem; }
.preloader-particle:nth-child(3) { bottom: 18%; left: 5%; animation-delay: 1.6s; }
.preloader-particle:nth-child(4) { bottom: 10%; right: 10%; animation-delay: 2.2s; font-size: 1.5rem; }
.preloader-particle:nth-child(5) { top: 50%; left: 45%; animation-delay: 3s; font-size: 0.9rem; }
.preloader-particle:nth-child(6) { top: 5%; left: 35%; animation-delay: 3.5s; }
.preloader-particle:nth-child(7) { bottom: 30%; right: 20%; animation-delay: 1.2s; font-size: 1.1rem; }
.preloader-particle:nth-child(8) { top: 40%; left: 12%; animation-delay: 0.4s; }
@keyframes particleFloat {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.25; }
  25% { transform: translateY(-20px) rotate(12deg) scale(1.05); opacity: 0.5; }
  50% { transform: translateY(-10px) rotate(-6deg) scale(0.9); opacity: 0.35; }
  75% { transform: translateY(-25px) rotate(15deg) scale(1.1); opacity: 0.6; }
}
.preloader-shine {
  position: absolute; top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
  animation: shineSweep 3s ease-in-out infinite;
  pointer-events: none; z-index: 1;
  transform: rotate(15deg);
}
@keyframes shineSweep {
  0% { left: -60%; }
  100% { left: 160%; }
}

/* =========================================================
   5. TOPBAR
   ========================================================= */
.topbar {
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 0.75rem;
  padding: 7px 0;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(230, 184, 0, 0.15);
  letter-spacing: 0.2px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar-left span {
  display: flex; align-items: center; gap: 6px;
  font-weight: 400; color: rgba(250, 243, 232, 0.75);
  transition: var(--transition);
}
.topbar-left span:hover { color: var(--gold-light); }
.topbar-left i { color: var(--gold); font-size: 0.65rem; opacity: 0.8; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.cert-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(230, 184, 0, 0.1);
  padding: 3px 12px; border-radius: 20px;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.8px;
  border: 1px solid rgba(230, 184, 0, 0.25);
  color: var(--gold-light);
  transition: var(--transition);
}
.cert-badge:hover { background: rgba(230, 184, 0, 0.2); border-color: var(--gold); transform: translateY(-1px); }
.cert-badge i { font-size: 0.55rem; color: var(--crimson); }

/* =========================================================
   6. NAVBAR (JS-driven fixed on scroll)
   ========================================================= */
.navbar {
  position: relative;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  padding: 5px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.35s ease, background 0.35s ease;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.navbar.is-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  animation: navSlideDown 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes navSlideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }
.navbar.scrolled { box-shadow: 0 4px 30px rgba(26, 60, 14, 0.15); background: rgba(255, 255, 255, 0.98); }
.navbar-placeholder { display: none; width: 100%; height: 0; pointer-events: none; }
.navbar .container {
  display: flex; justify-content: space-between; align-items: center;
  height: var(--nav-height);
  position: relative;
}
/* ── Logo wrapper ── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  color: var(--forest);
  text-decoration: none;
  z-index: 1001;
  line-height: 1;
}



/* ── Rotating icon mark ── */
.logo-icon {
  width: 80px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: var(--transition);
  animation: logoSlowRotate 10s linear infinite;
}

.logo-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}

@keyframes logoSlowRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
/* ── Text block ── */
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer .logo-text .short-head{
    color:#fff;
}
.footer .logo-text .logo-brand span{
    color:var(--crimson);
}

/* Brand name */
.logo-brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--forest);
  white-space: nowrap;
}

.logo-brand .logo-accent {
  color: var(--crimson);
}

/* Tagline underneath */
.short-head {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2e3138;
  white-space: nowrap;
}

.short-head::before {
  content: "";
  width: 14px;
  height: 1.5px;
  background: var(--crimson);
  border-radius: 2px;
  opacity: 0.75;
}




/* ── Responsive ── */
@media (max-width: 480px) {
  .logo { gap: 8px; }
  .logo-icon { width: 56px; height: 44px; }
  .logo-brand { font-size: 1.05rem; }
  .short-head { font-size: 0.62rem; letter-spacing: 0.05em; }
  .short-head::before { width: 10px; }
  .inspection-content { 
    padding: 0 1px !important;
}
}
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  font-size: 0.9rem; font-weight: 700;
  color: #000; letter-spacing: 0.3px;
  position: relative; padding: 4px 0;
  transition: var(--transition);
  opacity: 0.9;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2.5px;
  background: var(--crimson);
  transition: var(--transition);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--crimson); opacity: 1; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--crimson);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(198, 93, 59, 0.25);
  opacity: 1 !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--forest) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 184, 0, 0.35);
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
  z-index: 1002; background: transparent; border: none;
}
.hamburger span {
  width: 28px; height: 2.5px;
  background: var(--forest);
  border-radius: 3px; transition: var(--transition);
  display: block;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); background: var(--crimson); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); background: var(--crimson); }
.nav-sidebar-head, .nav-sidebar-foot { display: none; }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
}
.nav-overlay.active { opacity: 1; visibility: visible; pointer-events: auto; }

/* =========================================================
   7. HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-video-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 0.4;
}
.hero-fallback {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background-size: cover; background-position: center; z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(29, 49, 18, 0.6) 0%, rgba(148, 66, 42, 0.3) 50%, rgba(29, 49, 18, 0.7) 100%);
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: var(--white);
  max-width: 850px; padding: 40px 24px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230, 184, 0, 0.15);
  border: 1px solid rgba(230, 184, 0, 0.35);
  padding: 8px 24px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}
.hero-badge i { color: var(--gold); }
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 800; line-height: 1.12;
  margin-bottom: 22px; letter-spacing: -1.5px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 0.9s ease-out 0.2s both;
}
.hero-content h1 span {
  color: var(--gold); font-style: italic;
  font-family: var(--font-serif); font-weight: 600;
}
.hero-content p {
  font-size: 1.08rem; color: rgba(255, 255, 255, 0.85);
  max-width: 650px; margin: 0 auto 32px;
  line-height: 1.85; font-weight: 300;
  animation: fadeInUp 0.9s ease-out 0.4s both;
}
.hero-buttons {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeInUp 0.9s ease-out 0.6s both;
}
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; color: var(--gold); font-size: 1.4rem;
  animation: bounceDown 2s infinite;
  cursor: none; opacity: 0.7;
  transition: var(--transition);
}
.hero-scroll:hover { opacity: 1; }
.floating-leaves {
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none; overflow: hidden;
}
.leaf-float {
  position: absolute; color: rgba(230, 184, 0, 0.35);
  font-size: 2rem; animation: floatLeaf 12s infinite ease-in-out;
}
.leaf-1 { top: 12%; left: 4%; animation-delay: 0s; }
.leaf-2 { top: 38%; left: 88%; animation-delay: 2s; font-size: 1.5rem; }
.leaf-3 { top: 68%; left: 12%; animation-delay: 4s; }
.leaf-4 { top: 18%; left: 72%; animation-delay: 6s; font-size: 1.8rem; }
.leaf-5 { bottom: 8%; left: 48%; animation-delay: 8s; font-size: 1.2rem; }
@keyframes floatLeaf {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50% { transform: translateY(-30px) rotate(10deg); opacity: 0.7; }
}
@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   SOUND TOGGLE BUTTON
   ========================================================= */
.video-sound-btn {
    position: absolute;
    bottom: 72px;          /* sits above the scroll-down arrow */
    right: 28px;
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px solid rgba(230, 184, 0, 0.5);
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    animation: soundPulse 2.5s ease-in-out infinite;
}
.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.72);
    border-color: rgba(230, 184, 0, 0.9);
    color: #fff;
    transform: scale(1.1);
    animation: none;
}
/* Gold glow when unmuted */
.video-sound-btn.unmuted {
    border-color: var(--gold, #e6b800);
    color: var(--gold, #e6b800);
    background: rgba(0, 0, 0, 0.6);
    animation: none;
}
@keyframes soundPulse {
    0%, 100% { box-shadow: 0 0 0 0   rgba(230, 184, 0, 0.45); }
    50%       { box-shadow: 0 0 0 12px rgba(230, 184, 0, 0); }
}
/* =========================================================
   8. SHARED BUTTONS
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: none; border: none;
  font-family: var(--font-body);
  position: relative; overflow: hidden;
  white-space: nowrap;
  justify-content: center;
}
.btn::before {
  content: ''; position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.6s;
}
.btn:hover::before { left: 100%; }
.btn-primary { background: var(--crimson); color: var(--white); box-shadow: 0 8px 30px rgba(198, 93, 59, 0.35); }
.btn-primary:hover { background: var(--gold); color: var(--forest); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(230, 184, 0, 0.35); }
.btn-gold { background: var(--gold); color: var(--forest-dark); box-shadow: 0 6px 20px rgba(230, 184, 0, 0.28); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--forest); border: 2px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); transform: translateY(-3px); }
.btn-outline-light { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); backdrop-filter: blur(10px); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--gold); transform: translateY(-3px); }
.qa-redirect-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--forest-dark);
  padding: 12px 28px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.8px; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(230, 184, 0, 0.3);
  transition: var(--transition);
  border: 2px solid transparent;
}
.qa-redirect-btn:hover {
  background: var(--crimson); color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(198, 93, 59, 0.35);
  border-color: var(--gold);
}

/* =========================================================
   9. SECTION BASICS
   ========================================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--forest-dark); color: var(--white); }
.section-header, .section-head { text-align: center; max-width: 720px; margin: 0 auto 50px; }
.section-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2.8px; text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px; position: relative;
  padding: 0 20px;
}
.section-tag::before, .section-tag::after {
  content: ''; position: absolute; top: 50%;
  width: 30px; height: 2px;
  background: var(--crimson); opacity: 0.35;
}
.section-tag::before { left: -20px; }
.section-tag::after { right: -20px; }
.section-dark .section-tag { color: var(--gold); }
.section-dark .section-tag::before, .section-dark .section-tag::after { background: var(--gold); }
.section-header h2, .section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; color: var(--forest);
  line-height: 1.2; margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.section-dark .section-header h2 { color: var(--white); }
.section-header h2 em, .section-header h2 .accent, .section-head h2 em {
  font-style: italic; color: var(--crimson);
}
.section-header p, .section-head p {
  color: var(--text-muted); font-size: 0.95rem;
  line-height: 1.8; font-weight: 400;
}
.section-dark .section-header p { color: rgba(255,255,255,0.65); }

/* =========================================================
   10. ABOUT SECTION (home)
   ========================================================= */
.about-section {
  padding: 90px 0;
  position: relative; overflow: hidden;
  background: var(--off-white);
}
.about-section::before {
  content: ''; position: absolute;
  top: -20%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.07) 0%, transparent 70%);
  border-radius: 50%; z-index: 0;
}
.about-section .container { position: relative; z-index: 1; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-visual { display: flex; flex-direction: column; gap: 16px; }
.about-img-main {
  width: 100%; height: auto;
  border-radius: 8px; overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.about-img-main:hover img { transform: scale(1.04); }
.about-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-img-secondary {
  height: 200px; border-radius: 8px;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.about-img-secondary:hover img { transform: scale(1.05); }
 
.about-text {
    padding-right: 10px;
    position: relative;
    z-index: 1;
}

.about-text::before {
    content: "";
    position: absolute;
    inset: 0;
     background-image: url('../images/banana-bg.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 90%;
    opacity: 0.28;
    z-index: 9999;
    pointer-events: none;
}
.about-text .section-tag {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 2.8px; text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 14px; position: relative;
  padding: 0 20px;
}
.about-text .section-tag::before, .about-text .section-tag::after {
  content: ''; position: absolute; top: 50%;
  width: 30px; height: 2px;
  background: var(--crimson); opacity: 0.35;
}
.about-text .section-tag::before { left: -20px; }
.about-text .section-tag::after { right: -20px; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 800; color: var(--forest);
  line-height: 1.2; margin-bottom: 20px;
  letter-spacing: -1px;
}
.about-text h2 .serif-accent {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 600;
  color: var(--crimson);
}
.about-text p { color: var(--text-light); font-size: 0.92rem; line-height: 1.85; margin-bottom: 16px; }
.about-highlight {
  background: var(--cream);
  border-left: 4px solid var(--crimson);
  padding: 18px 22px;
  border-radius: 0 12px 12px 0;
  margin-top: 20px; box-shadow: var(--shadow-sm);
  font-style: italic; color: var(--text);
  position: relative;
}
.about-highlight::before {
  content: '"'; font-size: 3rem;
  color: var(--gold); position: absolute;
  top: -10px; left: 10px; opacity: 0.5;
  font-family: var(--font-serif);
}
.about-highlight p { margin: 0; padding-left: 30px; font-size: 0.87rem; }
.about-features-organic { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.about-feature-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(230, 184, 0, 0.12);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.76rem; font-weight: 700;
  color: var(--forest);
  border: 1px solid rgba(230, 184, 0, 0.25);
  transition: var(--transition);
}
.about-feature-pill:hover { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.about-feature-pill i { color: var(--crimson); font-size: 0.7rem; }
.about-feature-pill:hover i { color: var(--gold); }

/* =========================================================
   11. SIGNATURE FABRICS
   ========================================================= */
.fabrics-section { padding: 80px 0; background: var(--off-white); }
.fabrics-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fabric-card {
  background: var(--white);
  border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  display: flex; flex-direction: column;
}
.fabric-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.fabric-img { height: 220px; overflow: hidden; position: relative; }
.fabric-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.fabric-card:hover .fabric-img img { transform: scale(1.06); }
.fabric-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--crimson); color: var(--white);
  padding: 4px 14px; border-radius: 50px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15); z-index: 2;
}
.fabric-body { padding: 22px 20px; flex-grow: 1; display: flex; flex-direction: column; }
.fabric-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--forest); margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.fabric-body .fabric-origin {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--crimson); margin-bottom: 10px;
  display: flex; align-items: center; gap: 5px;
}
.fabric-body .fabric-origin i { font-size: 0.6rem; color: var(--gold); }
.fabric-body p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; flex-grow: 1; }
.fabric-features { display: flex; flex-wrap: wrap; gap: 6px; }
.fabric-features span {
  background: rgba(230, 184, 0, 0.12);
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  color: var(--forest);
  border: 1px solid rgba(230, 184, 0, 0.2);
  display: flex; align-items: center; gap: 4px;
  transition: var(--transition);
}
.fabric-features span:hover { background: var(--crimson); color: var(--white); border-color: var(--crimson); }
.fabric-features span i { font-size: 0.55rem; color: var(--crimson); }
.fabric-features span:hover i { color: var(--gold); }
.fabric-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 700;
  color: var(--crimson); margin-top: 12px;
  transition: var(--transition);
}
.fabric-link i { font-size: 0.7rem; transition: var(--transition); }
.fabric-card:hover .fabric-link i { transform: translateX(4px); }

/* =========================================================
   12. WHY CHOOSE
   ========================================================= */
.why-choose-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-choose-card {
  background: var(--white);
  border-radius: 28px 8px 28px 8px;
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  text-align: center; position: relative; overflow: hidden;
}
.why-choose-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  opacity: 0; transition: var(--transition);
}
.why-choose-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.why-choose-card:hover::before { opacity: 1; }
.why-choose-icon {
  width: 64px; height: 64px;
  background: rgba(230, 184, 0, 0.14);
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--crimson);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.why-choose-card:hover .why-choose-icon {
  background: var(--crimson); color: var(--gold);
  transform: scale(1.06) rotate(-4deg);
}
.why-choose-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--forest); margin-bottom: 10px;
}
.why-choose-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

/* =========================================================
   13. PRODUCTS (home grid)
   ========================================================= */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: var(--white);
  border-radius: 18px 18px 18px 0;
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: none; position: relative;
  border: 1px solid var(--cream-dark);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.product-img { height: 250px; overflow: hidden; background: var(--cream-dark); position: relative; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img img { transform: scale(1.07); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--crimson); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  z-index: 2; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}
.product-body { padding: 20px; text-align: left; flex-grow: 1; display: flex; flex-direction: column; }
.product-body h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem; font-weight: 700;
  color: var(--forest); margin-bottom: 5px;
}
.product-body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.6; flex-grow: 1; }
.product-link {
    width: max-content;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.74rem; font-weight: 700;
  color: var(--crimson); margin-top: 10px;
}
.product-link i { transition: var(--transition); font-size: 0.7rem; }
.product-card:hover .product-link i { transform: translateX(4px); }

/* =========================================================
   14. SERVICES (home grid — 4 columns)
   ========================================================= */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: var(--white);
  border-radius: 22px 4px 22px 4px;
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  text-align: center;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); border-color: rgba(198, 93, 59, 0.12); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(230, 184, 0, 0.14);
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--crimson);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--crimson); color: var(--gold); transform: scale(1.05); }
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 700;
  color: var(--forest); margin-bottom: 7px;
}
.service-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; flex-grow: 1; }
.service-btn {
  margin-top: 14px; display: inline-block;
  background: var(--crimson); color: var(--white);
  padding: 7px 18px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  transition: var(--transition);
  align-self: center;
}
.service-btn:hover { background: var(--gold); color: var(--forest); }

/* =========================================================
   15. QUALITY DETAIL
   ========================================================= */
.quality-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.quality-detail-card {
  background: var(--white);
  border-radius: 18px 18px 18px 0;
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--crimson);
  transition: var(--transition);
}
.quality-detail-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.quality-detail-card h4 {
  font-family: var(--font-heading);
  font-size: 1rem; font-weight: 700;
  color: var(--forest); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.quality-detail-card h4 i { color: var(--crimson); }
.quality-detail-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.7; }
.quality-stages { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.quality-stages span {
  background: var(--cream);
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  color: var(--forest);
  display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--cream-dark);
}
.quality-stages span i { color: var(--gold); font-size: 0.5rem; }

/* =========================================================
   16. GLOBAL NETWORK MAP
   ========================================================= */
.global-network-section { padding: 80px 0; background: var(--cream); position: relative; overflow: hidden; }
.global-network-section::before {
  content: ''; position: absolute;
  top: -15%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.global-network-section .container { position: relative; z-index: 1; }
.map-hotspot-container {
  position: relative; max-width: 1200px;
  margin: 0 auto;
  border-radius: 24px 8px 24px 8px;
  overflow: hidden; box-shadow: var(--shadow-xl);
  background: #e8efe8;
  border: 1px solid rgba(74, 107, 58, 0.15);
}
.global-map-image {
  width: 100%; height: auto; display: block;
  opacity: 0.92; transition: var(--transition);
}
.map-hotspot-container:hover .global-map-image { opacity: 1; }
.hotspot {
  position: absolute; transform: translate(-50%, -50%);
  cursor: none; z-index: 5;
  transition: transform 0.3s ease, z-index 0.3s;
}
.hotspot:hover { z-index: 10; transform: translate(-50%, -50%) scale(1.25); }
.hotspot .pin-icon {
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50% 50% 50% 0;
  background: var(--crimson); color: #fff;
  font-size: 10px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  animation: pinPop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes pinPop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.4); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.hotspot.type-hq .pin-icon { background: #c65d3b; border: 2px solid rgba(255, 255, 255, 0.7); }
.hotspot.type-marketing .pin-icon { background: #e6b800; color: #333; border: 2px solid rgba(255, 255, 255, 0.7); }
.hotspot.type-manufacturing .pin-icon { background: #6b8f4e; border: 2px solid rgba(255, 255, 255, 0.7); }
.hotspot .tooltip {
  position: absolute; bottom: 135%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white); color: var(--text);
  padding: 14px 18px;
  border-radius: 16px 4px 16px 4px;
  box-shadow: var(--shadow-lg);
  width: max-content; max-width: 220px;
  text-align: left;
  opacity: 0; visibility: hidden;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none; z-index: 30;
  border: 1px solid rgba(230, 184, 0, 0.3);
}
.hotspot .tooltip::after {
  content: ''; position: absolute;
  top: 100%; left: 50%; margin-left: -6px;
  border-width: 7px; border-style: solid;
  border-color: var(--white) transparent transparent transparent;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}
.hotspot .tooltip h6 {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 700;
  color: var(--forest); margin-bottom: 6px;
}
.hotspot .tooltip p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.6; margin: 0; }
.hotspot .tooltip p strong { color: var(--crimson); font-weight: 700; }
@media (hover: hover) {
  .hotspot:hover .tooltip, .hotspot:focus-within .tooltip {
    opacity: 1; visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}
.hotspot.active .tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.hotspot .pulse-ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border: 2px solid rgba(230, 184, 0, 0.4);
  border-radius: 50%;
  animation: pulseRing 2.5s ease-out infinite;
  pointer-events: none;
}
@keyframes pulseRing {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* =========================================================
   17. BRANDS MARQUEE
   ========================================================= */
.brands-marquee { overflow: hidden; padding: 20px 0; position: relative; }
.brands-track {
  display: flex; align-items: center; gap: 50px;
  animation: scrollBrands 25s linear infinite;
  width: max-content;
}
.brands-track:hover { animation-play-state: paused; }
@keyframes scrollBrands {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap; letter-spacing: 1.5px;
  transition: var(--transition);
}
.brand-logo:hover { color: var(--gold); }
.brand-logo i { margin-right: 8px; font-size: 1.3rem; vertical-align: middle; color: var(--crimson); }

/* =========================================================
   18. SUSTAINABLE
   ========================================================= */
.sustainable-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.sustainable-card {
  background: var(--white);
  border-radius: 22px 4px 22px 4px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
}
.sustainable-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.sustainable-card i { font-size: 2rem; color: var(--crimson); margin-bottom: 12px; display: block; }
.sustainable-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem; font-weight: 700;
  color: var(--forest); margin-bottom: 7px;
}
.sustainable-card p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   19. INSPECTION SECTION (home)
   ========================================================= */
.inspection-section {
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--crimson-deep) 55%, #3d1a0a 100%);
  color: var(--white);
  padding: 85px 0 65px;
  position: relative; overflow: hidden;
  isolation: isolate;
}
.inspection-section::before {
  content: ''; position: absolute;
  top: -30%; right: -15%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.1) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.inspection-section::after {
  content: ''; position: absolute;
  bottom: -20%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 93, 59, 0.2) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.inspection-pattern {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5l5 10 10 5-10 5-5 10-5-10-10-5 10-5z' fill='%23e6b800'/%3E%3C/svg%3E");
  pointer-events: none;
}
.inspection-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: 50px; align-items: center;
  max-width: 1250px; margin: 0 auto;
  padding: 0 24px;
}
.inspection-text { position: relative; }
.inspection-text .inspection-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.68rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
}
.inspection-text .inspection-tag i { font-size: 0.85rem; }
.inspection-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 800; margin-bottom: 20px;
  line-height: 1.2; letter-spacing: -1px;
}
.inspection-text h2 .serif-accent {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 600;
  color: var(--gold); display: block; margin-top: 4px;
}
.inspection-text > p {
  font-size: 1rem; color: rgba(255, 255, 255, 0.78);
  line-height: 1.9; margin-bottom: 24px;
  font-weight: 300; max-width: 540px;
}
.inspection-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 30px; }
.inspection-pillar {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 18px 4px 18px 4px;
  font-size: 0.82rem; font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.inspection-pillar:hover {
  background: rgba(230, 184, 0, 0.12);
  border-color: rgba(230, 184, 0, 0.35);
  transform: translateX(3px);
}
.inspection-pillar i { color: var(--gold); font-size: 1rem; flex-shrink: 0; width: 20px; text-align: center; }
.inspection-stats-row {
  display: flex; gap: 26px; flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
}
.inspection-stat { text-align: left; }
.inspection-stat h4 {
  font-family: var(--font-heading);
  font-size: 2rem; font-weight: 800;
  color: var(--gold); line-height: 1;
}
.inspection-stat p {
  font-size: 0.66rem; color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1.5px; text-transform: uppercase;
  font-weight: 700; margin-top: 4px;
}
.inspection-image-wrapper { position: relative; border-radius: 26px 8px 26px 8px; overflow: visible; }
.inspection-image-main {
  border-radius: 26px 8px 26px 8px;
  overflow: hidden; box-shadow: var(--shadow-xl);
  position: relative; z-index: 2;
}
.inspection-image-main img, .inspection-image-main video {
  width: 100%; height: 520px;
  object-fit: cover; display: block;
  transition: var(--transition);
  border-radius: 26px 8px 26px 8px;
}
.inspection-image-main:hover img, .inspection-image-main:hover video { transform: scale(1.03); }
.inspection-image-frame {
  position: absolute; top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 3px solid var(--gold);
  border-radius: 26px 8px 26px 8px;
  z-index: 1; opacity: 0.35; pointer-events: none;
}
.inspection-image-badge {
  position: absolute; bottom: 18px; left: -18px;
  background: var(--crimson); color: var(--white);
  padding: 14px 20px;
  border-radius: 18px 0 18px 0;
  z-index: 3; box-shadow: var(--shadow-lg);
  text-align: center;
  border: 2px solid rgba(230, 184, 0, 0.35);
}
.inspection-image-badge h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem; font-weight: 800;
  color: var(--gold);
}
.inspection-image-badge span {
  font-size: 0.62rem; color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px; font-weight: 600;
}

/* =========================================================
   20. VIDEO SECTION (home)
   ========================================================= */
.video-brand-section { padding: 75px 0; background: var(--cream); }
.video-wrapper {
  position: relative;
  border-radius: 36px 12px 36px 12px;
  overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 16/9;
  background: var(--forest-dark);
  max-width: 100%;
  margin: 0 auto;
}
.video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none; z-index: 2;
}
.video-overlay .play-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 3px solid rgba(255, 255, 255, 0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
}
.video-wrapper:hover .play-icon { background: rgba(255, 255, 255, 0.2); transform: scale(1.08); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 184, 0, 0.35); }
  50% { box-shadow: 0 0 0 18px rgba(230, 184, 0, 0); }
}

/* =========================================================
   21. FOOTER
   ========================================================= */
.footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 55px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px; padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .logo { color: var(--white); margin-bottom: 14px; }
.footer-brand .logo span { color: var(--gold); }
.footer-brand p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); line-height: 1.8; margin-bottom: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-social a:hover { background: var(--crimson); color: var(--gold); transform: translateY(-3px); border-color: var(--crimson); }
.footer h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  letter-spacing: 0.8px; position: relative;
  padding-bottom: 8px;
}
.footer h4::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 26px; height: 2px;
  background: var(--gold); border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.76rem; color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-links a i { font-size: 0.5rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); transform: translateX(3px); }
.footer-contact { display: flex; flex-direction: column; gap: 10px; }
.footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.76rem; color: rgba(255, 255, 255, 0.5);
}
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  padding: 18px 0; text-align: center;
  font-size: 0.72rem; color: rgba(255, 255, 255, 0.3);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.35); text-decoration: underline; }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================================
   22. FLOATING ELEMENTS
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50% 50% 0 50%;
  background: var(--crimson); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: none;
  z-index: 900; box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0; visibility: hidden;
  transform: translateY(20px); border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--gold); color: var(--crimson); transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.sticky-contact-icons {
  position: fixed; left: 24px; top: 50%;
  transform: translateY(-50%);
  z-index: 950;
  display: flex; flex-direction: column; gap: 12px;
}
.sticky-icon {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: none; position: relative;
}
.sticky-icon:hover { transform: scale(1.15) rotate(-5deg); border-color: var(--gold); }
.sticky-icon.phone-icon { background: var(--forest); }
.sticky-icon.phone-icon:hover { background: var(--gold); color: var(--forest); box-shadow: var(--shadow-lg); }
.sticky-icon.email-icon { background: var(--crimson); }
.sticky-icon.email-icon:hover { background: var(--gold); color: var(--forest); box-shadow: var(--shadow-lg); }
.sticky-tooltip {
  position: absolute; right: 58px; top: 50%;
  transform: translateY(-50%);
  background: var(--forest-dark); color: var(--white);
  padding: 6px 14px; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.3px; white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.sticky-icon:hover .sticky-tooltip { opacity: 1; right: 52px; }

.whatsapp-chat-widget {
  position: fixed; bottom: 90px; right: 28px;
  z-index: 950;
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 12px;
}
.whatsapp-chat-panel {
  background: var(--white);
  border-radius: 22px 8px 22px 8px;
  box-shadow: var(--shadow-xl);
  overflow: hidden; width: 320px;
  max-height: 0; opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  pointer-events: none;
  transform: translateY(20px);
}
.whatsapp-chat-panel.active { max-height: 420px; opacity: 1; pointer-events: auto; transform: translateY(0); }
.whatsapp-chat-header {
  background: #25d366; padding: 16px 18px;
  color: var(--white);
  display: flex; align-items: center; gap: 12px;
}
.whatsapp-chat-header .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.whatsapp-chat-header .info h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; }
.whatsapp-chat-header .info p { font-size: 0.68rem; opacity: 0.85; display: flex; align-items: center; gap: 4px; }
.whatsapp-chat-header .info p::before {
  content: ''; width: 7px; height: 7px;
  background: #7cfc00; border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.whatsapp-chat-body {
  padding: 18px 18px 14px;
  background: #f7f7f7;
  max-height: 260px; overflow-y: auto;
}
.chat-message {
  background: var(--white);
  padding: 12px 16px;
  border-radius: 14px 4px 14px 4px;
  font-size: 0.78rem; color: var(--text-light);
  margin-bottom: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  line-height: 1.6;
}
.chat-message strong { color: var(--forest); }
.whatsapp-chat-footer {
  padding: 12px 18px;
  border-top: 1px solid var(--cream-dark);
  background: var(--white);
}
.whatsapp-chat-footer a {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 12px 18px; border-radius: 50px;
  font-weight: 700; font-size: 0.82rem;
  justify-content: center;
  transition: var(--transition);
}
.whatsapp-chat-footer a:hover { background: #1da851; transform: translateY(-2px); }
.whatsapp-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  cursor: none; transition: var(--transition);
  border: 3px solid rgba(255, 255, 255, 0.5);
  animation: pulseWhatsapp 2.5s infinite;
  position: relative;
}
.whatsapp-fab:hover { transform: scale(1.1); background: #1da851; box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5); }
@keyframes pulseWhatsapp {
  0%, 100% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* =========================================================
   23. REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   24. SHARED PAGE COMPONENTS (breadcrumb, sub-banner, stats)
   ========================================================= */
.breadcrumb, .breadcrumb-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  font-size: 0.74rem;
  color: var(--ink-muted);
}
.breadcrumb-list { display: flex; align-items: center; gap: 10px; }
.breadcrumb a, .breadcrumb-bar a, .breadcrumb-list a { color: var(--crimson); font-weight: 600; }
.breadcrumb a:hover, .breadcrumb-bar a:hover, .breadcrumb-list a:hover { color: var(--forest-dark); }
.breadcrumb .sep, .breadcrumb-list .sep { color: var(--ink-faint); font-size: 0.62rem; }
.breadcrumb .current, .breadcrumb-bar .current, .breadcrumb-list .current { color: var(--forest-dark); font-weight: 600; }

.sub-banner {
  position: relative;
  padding: 110px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  min-height: 60vh;
  display: flex; align-items: center;
}
.sub-banner-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 25%;
  z-index: 0;
  animation: slowZoom 22s ease-in-out infinite alternate;
}
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.15); } }
.sub-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(13,26,8,0.65) 0%, rgba(109,47,30,0.55) 100%);
  z-index: 1;
}
.sub-banner-content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.sub-banner-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 7px 22px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sub-banner-content h1, .sub-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 0;
}
.sub-banner-content h1 .accent, .sub-banner-content h2 .accent { font-style: italic; color: var(--gold-light); }

.stats-strip {
  background: var(--forest-dark);
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
}
.stats-strip .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  align-items: center;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* =========================================================
   25. SHARED FORM ELEMENTS
   ========================================================= */
.form-section { padding: 70px 0; background: var(--white); }
.form-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 48px; align-items: start; }
.form-info {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.form-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.form-info h2 .accent { font-style: italic; color: var(--crimson); }
.form-info > p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.contact-details-card {
  margin-top: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.contact-details-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.contact-details-card h4 i { color: var(--crimson); font-size: 0.9rem; }
.contact-item { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 8px; font-size: 0.8rem; color: var(--text-light); }
.contact-item i { color: var(--crimson); font-size: 0.8rem; width: 18px; text-align: center; margin-top: 3px; flex-shrink: 0; }
.contact-item span { line-height: 1.4; word-break: break-word; }
.cert-mini-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.cert-mini {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  color: var(--forest);
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.form-feature-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.form-feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; color: var(--text-light); }
.form-feature-item i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.enquiry-form, .form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  position: relative;
}
.enquiry-form::before, .form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}
.enquiry-form h3, .form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.enquiry-form .form-subtitle, .form-card > p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 20px; }
.form-row, .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 12px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
  letter-spacing: 0.2px;
}
.form-group label .required, .form-group label .req { color: var(--crimson); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  transition: var(--transition-fast);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(198, 93, 59, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; line-height: 1.6; }
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d4a1e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: #a9a294; font-weight: 400; }
.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.form-check input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--crimson); cursor: pointer; }
.form-submit {
  width: 100%;
  margin-top: 6px;
  padding: 12px 24px;
  background: var(--crimson);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-sans);
  box-shadow: 0 6px 24px rgba(198, 93, 59, 0.3);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.form-submit:hover { background: var(--crimson-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(198, 93, 59, 0.4); }
.form-note {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}
.form-note i { color: var(--forest); font-size: 0.7rem; }
.form-success { display: none; text-align: center; padding: 24px 8px; }
.form-success.show { display: block; animation: fadeUp 0.5s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-success-icon {
  width: 66px; height: 66px;
  margin: 0 auto 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--forest);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(45, 74, 30, 0.25);
}
.form-success h3 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--forest); margin-bottom: 10px; }
.form-success p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.8; max-width: 380px; margin: 0 auto 20px; }
.form-success .btn { width: auto; }

/* =========================================================
   26. SHARED FAQ
   ========================================================= */
.faq { padding: 88px 0; background: var(--paper-alt); border-top: 1px solid var(--line); }
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 8px 28px;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--forest-dark);
  transition: var(--transition-fast);
}
.faq-q:hover { color: var(--crimson); }
.faq-q i { font-size: 0.75rem; color: var(--ink-light); transition: var(--transition-fast); flex-shrink: 0; }
.faq-item.active .faq-q i { transform: rotate(180deg); color: var(--crimson); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding: 0 4px; }
.faq-item.active .faq-a { max-height: 260px; padding-bottom: 22px; }
.faq-a p { font-size: 0.86rem; color: var(--ink-muted); line-height: 1.75; }

/* =========================================================
   27. SHARED CTA
   ========================================================= */
.cta-section, .cta {
  padding: 88px 0;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--crimson-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-section::before, .cta::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,184,0,0.12) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cta-section .container, .cta-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.cta-section h2, .cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cta-section h2 .accent, .cta h2 em { font-style: italic; color: var(--gold-light); }
.cta-section p, .cta p { color: rgba(255,255,255,0.78); font-size: 0.98rem; max-width: 560px; margin: 0 auto 32px; line-height: 1.85; }
.cta-buttons, .cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* =========================================================
   28. SERVICES PAGE STYLES
   ========================================================= */
.svc-hero {
  background: var(--forest-deep);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 92px 0 88px;
}
.svc-hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/services-banner.png');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 0;
}
.svc-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(13,26,8,0.88) 0%, rgba(45,74,30,0.55) 100%),
    radial-gradient(circle at 85% 20%, rgba(230,184,0,0.08) 0%, transparent 55%);
  z-index: 1;
}
.svc-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.svc-hero-left { max-width: 660px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 32px; height: 1px; background: var(--gold-light); }
.svc-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4.4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.13;
  margin-bottom: 22px;
}
.svc-hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 600; }
.svc-hero-lead { font-size: 1.02rem; line-height: 1.75; color: rgba(255,255,255,0.82); font-weight: 300; margin-bottom: 32px; }
.svc-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.svc-hero-meta {
  display: flex; gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}
.svc-hero-meta-value {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.svc-hero-meta-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.svc-hero-panel {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.svc-hero-panel-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.svc-hero-panel-label i { font-size: 0.7rem; }
.svc-hero-panel-list { display: flex; flex-direction: column; gap: 14px; }
.svc-hero-panel-item {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.svc-hero-panel-item i { color: var(--gold-light); font-size: 0.82rem; margin-top: 3px; flex-shrink: 0; width: 16px; text-align: center; }

.svc-intro { padding: 80px 0 60px; background: var(--white); }
.svc-intro-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.svc-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.svc-intro h2 em { font-style: italic; color: var(--crimson); }
.svc-intro p { font-size: 0.98rem; color: var(--ink-muted); line-height: 1.85; }

.svc-section { padding: 40px 0 100px; background: var(--white); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.svc-card {
  position: relative;
  display: flex; flex-direction: column;
  background: linear-gradient(168deg, #ffffff 0%, #fdfbf6 100%);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo), border-color 0.35s ease;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,184,0,0.2), transparent 70%);
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.55s ease, transform 0.6s var(--ease-out-expo);
  pointer-events: none; z-index: 0;
}
.svc-card:hover::before { opacity: 1; transform: scale(1.15); }
.svc-card::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--crimson), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.55s var(--ease-out-expo);
  z-index: 3;
}
.svc-card:hover::after { transform: scaleY(1); }
.svc-card:hover {
  border-color: rgba(230,184,0,0.6);
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(26,42,14,0.12);
}
.svc-card-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 32px 32px 0;
  position: relative; z-index: 1;
}
.svc-card-icon {
  width: 58px; height: 58px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: var(--forest-dark);
  background: linear-gradient(140deg, var(--gold-tint), var(--crimson-tint));
  border: 1px solid rgba(198,93,59,0.14);
  flex-shrink: 0;
  transition: all 0.45s var(--ease-out-expo);
}
.svc-card:hover .svc-card-icon {
  background: linear-gradient(140deg, var(--forest), var(--forest-dark));
  color: var(--gold-light);
  border-color: transparent;
  transform: translateY(-2px) rotate(-5deg);
  box-shadow: 0 14px 28px rgba(45,74,30,0.26);
}
.svc-card-num {
  font-family: var(--font-mono);
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.2px var(--ink-faint);
  user-select: none;
  transition: all 0.45s var(--ease-out-expo);
}
.svc-card:hover .svc-card-num { -webkit-text-stroke-color: var(--gold-soft); transform: scale(1.06); }
.svc-card-body { padding: 20px 32px 0; position: relative; z-index: 1; flex: 1; }
.svc-card-name {
  font-family: var(--font-serif);
  font-size: 1.52rem !important;
  font-weight: 700;
  color: var(--forest-dark);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 12px;
}
.svc-card-desc { font-size: 0.9rem; color: var(--ink-muted); line-height: 1.75; margin-bottom: 24px; }
.svc-card-deliverables {
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 18px 16px;
  margin-bottom: 24px;
  transition: background 0.45s ease, border-color 0.45s ease;
}
.svc-card:hover .svc-card-deliverables { background: var(--forest-tint); border-color: rgba(45,74,30,0.16); }
.svc-deliverables-title {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 10px;
}
.svc-deliverables-title::after { content: ''; flex: 1; height: 1px; background: var(--line-dark); }
.svc-card-deliverables ul { display: flex; flex-wrap: wrap; gap: 7px; }
.svc-card-deliverables li {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 5px 12px 5px 9px;
  line-height: 1.45;
  transition: all 0.3s ease;
}
.svc-card-deliverables li i { color: var(--success); font-size: 0.55rem; flex-shrink: 0; }
.svc-card:hover .svc-card-deliverables li { border-color: rgba(45,74,30,0.2); color: var(--forest-dark); }
.svc-card-foot { padding: 0 32px 30px; position: relative; z-index: 1; margin-top: auto; }
.svc-card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--crimson);
  padding: 11px 22px;
  border: 1.5px solid rgba(198,93,59,0.32);
  border-radius: 50px;
  background: transparent;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.svc-card-link i { transition: transform 0.35s ease; font-size: 0.7rem; }
.svc-card-link:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(198,93,59,0.32);
}
.svc-card-link:hover i { transform: translateX(4px); }

.process {
  padding: 88px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: var(--transition-fast);
}
.process-step:hover { border-color: var(--forest-soft); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.process-step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.7; }

.why { padding: 88px 0; background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.why-item {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper-alt);
  transition: var(--transition-fast);
}
.why-item:hover { background: var(--white); border-color: var(--forest-soft); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest-tint);
  color: var(--forest-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
}
.why-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--forest-dark); margin-bottom: 8px; }
.why-item p { font-size: 0.82rem; color: var(--ink-muted); line-height: 1.7; }

/* =========================================================
   29. ABOUT PAGE STYLES
   ========================================================= */

.abt-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  background:
    radial-gradient(
      ellipse at 20% 20%,
      rgba(230, 184, 0, 0.10) 0%,
      transparent 55%
    ),

    radial-gradient(
      ellipse at 85% 80%,
      rgba(198, 93, 59, 0.10) 0%,
      transparent 55%
    ),

    /* Light green overlay */
    linear-gradient(
      150deg,
      rgba(15, 26, 9, 0.35) 0%,
      rgba(28, 47, 19, 0.30) 40%,
      rgba(22, 38, 14, 0.28) 70%,
      rgba(13, 23, 7, 0.35) 100%
    ),

    url("../images/about-us-banner.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  isolation: isolate;
  padding: 40px 0;
}


/* Subtle texture */
.abt-hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 60px,
      rgba(230, 184, 0, 0.012) 60px,
      rgba(230, 184, 0, 0.012) 61px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 60px,
      rgba(230, 184, 0, 0.012) 60px,
      rgba(230, 184, 0, 0.012) 61px
    );

  pointer-events: none;
  z-index: -1;
}


/* Soft golden glow */
.abt-hero::after {
  content: '';
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(230, 184, 0, 0.05) 0%,
    transparent 65%
  );

  pointer-events: none;
  z-index: -1;
}

.abt-hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  padding: 40px 24px;
}
.abt-hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(230, 184, 0, 0.08);
  border: 1px solid rgba(230, 184, 0, 0.28);
  padding: 8px 26px;
  border-radius: 50px;
  font-size: 0.6rem; font-weight: 800;
  letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 26px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fadeInDown 1s ease;
}
.abt-hero-badge i { color: var(--gold); }
.abt-hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.733);
  animation: fadeInUp 1s ease 0.2s both;
}
.abt-hero-content h1 span {
  color: var(--gold);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 600;
  display: block;
  font-size: 0.8em;
  letter-spacing: -0.5px;
  margin-top: 6px;
  text-shadow: 0 0 50px rgba(0, 0, 0, 0.763);
}
.abt-hero-content p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.921);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 600;
  animation: fadeInUp 1s ease 0.4s both;
  letter-spacing: 0.2px;
}
.abt-hero-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 28px auto 0;
  border-radius: 3px;
  animation: fadeInUp 1s ease 0.6s both;
}
.abt-hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}
.abt-hero-scroll:hover { color: var(--gold); }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-10px); } }
 

/* =========================================================
   WHO WE ARE
   ========================================================= */
.abt-who-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.abt-who-text h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem; font-weight: 800;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}
.abt-who-text h3 em { font-family: var(--font-serif); color: var(--crimson); font-style: italic; }
.abt-who-text p { font-size: 0.9rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }
.abt-who-text p:last-child { margin-bottom: 0; }
.abt-who-highlight {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--white);
  padding: 16px 22px;
  border-radius: 14px 4px 14px 4px;
  margin: 18px 0;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.6;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.abt-who-highlight::before {
  content: '"';
  position: absolute;
  top: -10px; right: 10px;
  font-size: 5rem;
  font-family: var(--font-serif);
  color: rgba(230, 184, 0, 0.2);
  line-height: 1;
}
.abt-who-highlight i { color: var(--gold); margin-right: 8px; }
.abt-who-image { position: relative; aspect-ratio: 4 / 4.4; }
.abt-who-image .inspection-image-main {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 20px 6px 20px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--forest-deep);
  z-index: 1;
}
.abt-who-image .inspection-image-main video,
.abt-who-image .inspection-image-main img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.abt-who-image:hover .inspection-image-main video,
.abt-who-image:hover .inspection-image-main img { transform: scale(1.04); }
.abt-who-image::after {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px 6px 20px 6px;
  z-index: 0;
  opacity: 0.4;
  pointer-events: none;
}
.abt-who-caption {
  position: absolute;
  bottom: 18px; left: 18px;
  z-index: 3;
  background: rgba(14, 26, 8, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 9px 16px;
  border-radius: 8px;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-left: 3px solid var(--gold);
}
.abt-who-caption i { color: var(--gold); margin-right: 4px; }

/* =========================================================
   CORE VALUES
   ========================================================= */
.abt-values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.abt-value-card {
  background: var(--white);
  border-radius: 16px 4px 16px 4px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.abt-value-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230, 184, 0, 0.04), rgba(198, 93, 59, 0.04));
  opacity: 0;
  transition: var(--transition);
}
.abt-value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.abt-value-card:hover::before { opacity: 1; }
.abt-value-card i {
  font-size: 1.8rem;
  color: var(--crimson);
  margin-bottom: 12px;
  display: block;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}
.abt-value-card:hover i {
  color: var(--gold);
  transform: scale(1.15);
  text-shadow: 0 0 20px rgba(230, 184, 0, 0.4);
}
.abt-value-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.2px;
}
.abt-value-card p {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* =========================================================
   MISSION / VISION / PURPOSE
   ========================================================= */
.abt-mv-section {
  position: relative;
  padding: 110px 0;
  background: var(--forest-deep);
  overflow: hidden;
  isolation: isolate;
}
.abt-mv-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.75;
  filter: saturate(1) contrast(1.05) brightness(0.85);
}
.abt-mv-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(160deg,
    rgba(8, 16, 4, 0.75) 0%,
    rgba(20, 35, 12, 0.55) 45%,
    rgba(8, 16, 4, 0.82) 100%);
  z-index: -1;
}
.abt-mv-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 40%, transparent 20%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.abt-mv-section .section-header { position: relative; z-index: 2; }
.abt-mv-section .section-header .section-tag { color: var(--gold); }
.abt-mv-section .section-header .section-tag::before,
.abt-mv-section .section-header .section-tag::after { background: var(--gold); }
.abt-mv-section .section-header h2 { color: var(--white); text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6); }
.abt-mv-section .section-header p { color: rgba(255, 255, 255, 0.72); }

.abt-mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; position: relative; z-index: 2; }
.abt-mv-card {
  background: rgba(15, 26, 9, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 20px;
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}
.abt-mv-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.abt-mv-card:hover {
  transform: translateY(-8px);
  border-color: rgba(230, 184, 0, 0.45);
  background: rgba(15, 26, 9, 0.72);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.abt-mv-card:hover::before { transform: scaleX(1); }
.abt-mv-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: rgba(230, 184, 0, 0.15);
  border: 1px solid rgba(230, 184, 0, 0.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin: 0 auto 22px;
  transition: var(--transition);
}
.abt-mv-card:hover .abt-mv-icon {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-deep);
  transform: scale(1.05) rotate(-4deg);
}
.abt-mv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}
.abt-mv-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.3px;
}
.abt-mv-divider {
  width: 36px; height: 2px;
  background: rgba(230, 184, 0, 0.4);
  margin: 0 auto 18px;
  border-radius: 2px;
  transition: var(--transition);
}
.abt-mv-card:hover .abt-mv-divider {
  width: 64px;
  background: linear-gradient(90deg, var(--gold), var(--crimson));
}
.abt-mv-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
  font-weight: 300;
}

/* =========================================================
   TIMELINE
   ========================================================= */
.abt-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.abt-timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--crimson), var(--gold), var(--crimson));
  transform: translateX(-50%);
  border-radius: 3px;
  opacity: 0.25;
}
.abt-timeline-item { display: flex; align-items: flex-start; margin-bottom: 40px; position: relative; }
.abt-timeline-item:nth-child(odd) { flex-direction: row; padding-right: 52%; }
.abt-timeline-item:nth-child(even) { flex-direction: row-reverse; padding-left: 52%; }
.abt-timeline-dot {
  position: absolute;
  left: 50%; top: 18px;
  width: 16px; height: 16px;
  background: linear-gradient(135deg, var(--gold), var(--crimson));
  border-radius: 50% 50% 50% 0;
  transform: translateX(-50%) rotate(45deg);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 5px rgba(230, 184, 0, 0.2), 0 4px 15px rgba(198, 93, 59, 0.3);
  z-index: 2;
}
.abt-timeline-content {
  width: 100%;
  background: var(--white);
  border-radius: 16px 6px 16px 6px;
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--crimson);
  transition: var(--transition);
  position: relative;
}
.abt-timeline-content::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 20px; height: 2px;
  background: var(--crimson);
}
.abt-timeline-item:nth-child(odd) .abt-timeline-content::before { right: -20px; }
.abt-timeline-item:nth-child(even) .abt-timeline-content::before { left: -20px; }
.abt-timeline-content:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
  border-left-color: var(--gold);
}
.abt-timeline-item:nth-child(even) .abt-timeline-content {
  border-left: none;
  border-right: 4px solid var(--crimson);
}
.abt-timeline-item:nth-child(even) .abt-timeline-content:hover {
  transform: translateX(-5px);
  border-right-color: var(--gold);
}
.abt-timeline-year {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--crimson);
  display: inline-block;
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.abt-timeline-content h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 6px;
}
.abt-timeline-content p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =========================================================
   FIBER STORY (Banana)
   ========================================================= */
.abt-fiber-story {
  background: var(--forest-deep);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.abt-fiber-story::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(230, 184, 0, 0.4), transparent);
}
.abt-fiber-story::after {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.abt-fiber-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.abt-fiber-text .inspection-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 6px;
}
.abt-fiber-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -1px;
}
.abt-fiber-text h2 .serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  display: block;
  margin-top: 4px;
  font-size: 0.8em;
}
.abt-fiber-text > p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.85;
  margin-bottom: 16px;
  font-weight: 300;
}
.abt-fiber-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 22px; }
.abt-fiber-step {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}
.abt-fiber-step:hover {
  background: rgba(230, 184, 0, 0.07);
  border-color: rgba(230, 184, 0, 0.25);
  transform: translateX(4px);
}
.abt-fiber-step i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.abt-fiber-visual { position: relative; border-radius: 20px 6px 20px 6px; }
.abt-fiber-media {
  border-radius: 20px 6px 20px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
  z-index: 2;
  aspect-ratio: 4/4.2;
  background: var(--forest-dark);
}
.abt-fiber-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.abt-fiber-media:hover img { transform: scale(1.04); }
.abt-fiber-frame {
  position: absolute;
  top: -14px; right: -14px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: 20px 6px 20px 6px;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
}
.abt-fiber-badge {
  position: absolute;
  bottom: 18px; left: -16px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px 0 12px 0;
  z-index: 3;
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 1px solid rgba(230, 184, 0, 0.3);
}
.abt-fiber-badge h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
}
.abt-fiber-badge span {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.8px;
  font-weight: 700;
  text-transform: uppercase;
}

/* =========================================================
   PROCESS
   ========================================================= */
.abt-process-section {
  background: var(--off-white);
  padding: 90px 0;
  position: relative;
}
.abt-process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198, 93, 59, 0.2), transparent);
}
.abt-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.abt-process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson));
  opacity: 0.15;
  z-index: 0;
}
.abt-process-step { text-align: center; position: relative; z-index: 1; padding: 0 8px; }
.abt-process-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--crimson);
  margin: 0 auto 18px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(26, 60, 14, 0.06);
  position: relative;
}
.abt-process-step:hover .abt-process-icon {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(230, 184, 0, 0.15);
}
.abt-process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}
.abt-process-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* =========================================================
   CERTIFICATIONS
   ========================================================= */
.abt-certs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.abt-cert-card {
  background: var(--white);
  border-radius: 16px 4px 16px 4px;
  padding: 28px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.abt-cert-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  border-radius: 3px;
  opacity: 0;
  transition: var(--transition);
}
.abt-cert-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.abt-cert-card:hover::after { opacity: 1; width: 60%; }
.abt-cert-card i {
  font-size: 2rem;
  color: var(--crimson);
  margin-bottom: 10px;
  transition: var(--transition);
}
.abt-cert-card:hover i { color: var(--gold); transform: scale(1.1); }
.abt-cert-card h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--forest);
  margin-bottom: 6px;
}
.abt-cert-card p { font-size: 0.65rem; color: var(--text-muted); line-height: 1.4; }

/* =========================================================
   VIDEO
   ========================================================= */
.abt-video-section { position: relative; padding: 80px 0; background: var(--off-white); }
.abt-video-wrapper {
  position: relative;
  border-radius: 24px 6px 24px 6px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  background: var(--forest-dark);
  max-width: 1000px;
  margin: 0 auto;
  border: 3px solid rgba(230, 184, 0, 0.2);
}
.abt-video-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }
.abt-video-overlay {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 2;
  transition: var(--transition);
}
.abt-video-wrapper:hover .abt-video-overlay { background: rgba(0, 0, 0, 0.05); }
.abt-play-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid rgba(255, 255, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--white);
  transition: var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: pulseGlow 2.5s infinite;
}
.abt-video-wrapper:hover .abt-play-icon {
  background: rgba(230, 184, 0, 0.2);
  border-color: var(--gold);
  transform: scale(1.1);
  color: var(--gold);
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 184, 0, 0.3); }
  50% { box-shadow: 0 0 0 22px rgba(230, 184, 0, 0); }
}

 

 

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .abt-certs-grid { grid-template-columns: repeat(3, 1fr); }
  .abt-values-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-mv-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-process-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-process-grid::before { display: none; }
  .abt-who-grid { grid-template-columns: 1fr; gap: 40px; }
  .abt-fiber-content { grid-template-columns: 1fr; gap: 40px; }
  .abt-who-image { aspect-ratio: 16/11; max-width: 620px; margin: 0 auto; }
  .abt-fiber-media { aspect-ratio: 16/10; }
  .abt-timeline-item:nth-child(odd),
  .abt-timeline-item:nth-child(even) { padding: 0; }
}
@media (max-width: 768px) {
  .abt-hero { min-height: 60vh; }
  .abt-certs-grid { grid-template-columns: repeat(2, 1fr); }
  .abt-values-grid { grid-template-columns: 1fr 1fr; }
  .abt-mv-grid { grid-template-columns: 1fr; }
  .abt-process-grid { grid-template-columns: 1fr 1fr; }
  .topbar-left, .topbar-right { justify-content: center; width: 100%; }
  .section { padding: 50px 0; }
  .abt-mv-section, .abt-fiber-story { padding: 60px 0; }
  .abt-fiber-steps { grid-template-columns: 1fr; }
  .abt-fiber-badge { left: 10px; bottom: 10px; padding: 10px 14px; }
  .abt-fiber-frame { display: none; }
  .abt-who-image::after { display: none; }
  .back-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; font-size: 0.9rem; }
  .abt-timeline::before { left: 18px; }
  .abt-timeline-item,
  .abt-timeline-item:nth-child(even),
  .abt-timeline-item:nth-child(odd) {
    flex-direction: column;
    padding: 0;
  }
  .abt-timeline-dot { left: 18px; top: 20px; }
  .abt-timeline-content {
    width: 100%;
    margin-left: 38px;
    border-left: 4px solid var(--crimson) !important;
    border-right: none !important;
  }
  .abt-timeline-item:nth-child(even) .abt-timeline-content:hover { transform: translateX(5px); }
  .abt-timeline-content::before { display: none; }
}
@media (max-width: 480px) {
  .abt-certs-grid { grid-template-columns: 1fr; }
  .abt-values-grid { grid-template-columns: 1fr; }
  .abt-process-grid { grid-template-columns: 1fr; }
  .btn { width: 100%; justify-content: center; }
  .abt-who-image { aspect-ratio: 4/3; }
  .abt-fiber-media { aspect-ratio: 4/3; }
  .abt-video-wrapper { aspect-ratio: 4/3; }
  .abt-hero-content h1 { font-size: 1.8rem; }
  .section-header h2 { font-size: 1.6rem; }
  .abt-mv-card { padding: 32px 22px; }
}

/* =========================================================
   30. PRODUCT / GALLERY PAGE STYLES
   ========================================================= */
.products-hero {
  position: relative;
  padding: 120px 0 110px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  min-height: 55vh;
  display: flex; align-items: center;
}
.products-hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/product-banner.png');
  background-size: cover; background-position: center;
  z-index: 0;
  animation: slowZoom 22s ease-in-out infinite alternate;
}
.products-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,26,8,0.514) 0%, rgba(109,47,30,0.421) 100%);
  z-index: 1;
}
.products-hero-content { position: relative; z-index: 2; max-width: 820px; margin: 0 auto; }
.hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-dark);
  padding: 8px 22px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 2.2px; text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(230,184,0,0.35);
}
.products-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -1px; margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.products-hero h1 .accent { font-style: italic; color: var(--gold-light); }
.products-hero p { font-size: 1rem; color: rgba(255,255,255,0.92); line-height: 1.9; max-width: 640px; margin: 0 auto; font-weight: 300; }

.filter-section { padding: 56px 0 24px; background: var(--white); }
.filter-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.filter-tab {
  padding: 11px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border-light);
  background: var(--white);
  color: var(--text-light);
  font-size: 0.82rem; font-weight: 600;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: var(--transition-fast);
  display: inline-flex; align-items: center; gap: 8px;
}
.filter-tab i { font-size: 0.78rem; color: var(--crimson); transition: var(--transition-fast); }
.filter-tab:hover { border-color: var(--gold); background: var(--gold-pale); transform: translateY(-2px); }
.filter-tab.active {
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  border-color: var(--forest);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45,74,30,0.25);
}
.filter-tab.active i { color: var(--gold-light); }

.products-section { padding: 40px 0 100px; background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.5s cubic-bezier(0.22,1,0.36,1);
  display: flex; flex-direction: column;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s;
  z-index: 3;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.product-card.hidden { display: none; }
.product-media { position: relative; height: 240px; overflow: hidden; background: var(--cream-dark); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex-grow: 1; }
.product-cat { font-size: 0.65rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.product-body h3 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--forest); margin-bottom: 12px; line-height: 1.2; }
.product-body p { font-size: 0.86rem; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.product-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.product-meta span {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--cream);
  padding: 5px 12px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 600;
  color: var(--forest);
  border: 1px solid var(--border-light);
}
.product-meta i { font-size: 0.6rem; color: var(--crimson); }
.product-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--border-light);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.product-price { display: flex; flex-direction: column; line-height: 1.2; }
.product-price .from { font-size: 0.65rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.5px; text-transform: uppercase; }
.product-price .value { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--crimson); }
.product-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--crimson); color: var(--white);
  border-radius: 50px;
  font-size: 0.74rem; font-weight: 600;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(198,93,59,0.22);
  white-space: nowrap;
}
.product-link i { transition: var(--transition-fast); font-size: 0.68rem; }
.product-link:hover {
  background: var(--gold); color: var(--forest-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230,184,0,0.35);
}
.product-link:hover i { transform: translateX(3px); }

/* Gallery + lightbox */
.gallery-section { padding: 68px 0 96px; background: var(--white); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  transition: var(--transition-fast);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.gallery-item:hover { border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,26,8,0.82) 0%, rgba(13,26,8,0.25) 45%, rgba(13,26,8,0) 70%);
  opacity: 0.6; transition: opacity 0.4s ease; pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; }
.gi-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 22px;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover .gi-caption { transform: translateY(0); }
.gi-cat {
  display: inline-block;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--forest-dark);
  background: var(--gold-light);
  padding: 3px 10px; border-radius: 50px;
  margin-bottom: 8px;
}
.gi-title { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.25; }

.lightbox {
  position: fixed; inset: 0;
  z-index: 3000;
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  background: rgba(8,14,5,0.92);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
  position: relative; max-width: 1000px; width: 100%;
  border-radius: 18px; overflow: hidden;
  background: #0a1405;
  box-shadow: 0 40px 100px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.lightbox.open .lb-stage { transform: scale(1); }
.lb-stage img { width: 100%; max-height: 74vh; object-fit: contain; display: block; }
.lb-info {
  padding: 18px 26px 20px;
  background: rgba(13,26,8,0.95);
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.lb-info h3 { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 700; color: var(--white); }
.lb-info h3 span { display: block; font-family: var(--font-sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 5px; }
.lb-counter {
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold-light);
  letter-spacing: 0.06em; padding: 6px 14px;
  border: 1px solid rgba(242,208,107,0.28); border-radius: 50px;
  background: rgba(230,184,0,0.07);
}
.lb-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: var(--white); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition-fast); z-index: 3;
}
.lb-btn:hover { background: var(--gold); color: var(--forest-dark); border-color: transparent; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }
.lb-close {
  position: absolute; top: 16px; right: 16px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22);
  color: var(--white); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition-fast); z-index: 4;
}
.lb-close:hover { background: var(--crimson); border-color: transparent; transform: rotate(90deg); }

/* =========================================================
   31. CONTACT PAGE
   ========================================================= */
.cnt-hero {
  position: relative;
  padding: 90px 0 80px;
  text-align: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cnt-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/contact-banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  animation: cntHeroZoom 22s ease-in-out infinite alternate;
}
@keyframes cntHeroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.cnt-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 26, 8, 0.80) 0%, rgba(109, 47, 30, 0.70) 100%);
  z-index: 1;
}
.cnt-hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(230, 184, 0, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(198, 93, 59, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.cnt-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.cnt-hero-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--forest-dark);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(230, 184, 0, 0.3);
}
.cnt-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.cnt-hero h1 .accent {
  font-style: italic;
  color: var(--gold-light);
}
.cnt-hero p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 300;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* =========================================================
   CONTACT INFO CARDS
   ========================================================= */
.cnt-info-section {
  padding: 80px 0 40px;
  background: var(--white);
  position: relative;
}
.cnt-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cnt-info-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.cnt-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}
.cnt-info-card:hover::before { transform: scaleX(1); }
.cnt-info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.cnt-info-icon {
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, rgba(230, 184, 0, 0.15), rgba(198, 93, 59, 0.10));
  border-radius: 50% 50% 50% 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--crimson);
  margin: 0 auto 16px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.cnt-info-card:hover .cnt-info-icon {
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--gold);
  transform: scale(1.08) rotate(-6deg);
  box-shadow: 0 12px 32px rgba(198, 93, 59, 0.3);
}
.cnt-info-card h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 10px;
}
.cnt-info-card p,
.cnt-info-card a {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.7;
  display: block;
}
.cnt-info-card a:hover { color: var(--crimson); }

/* =========================================================
   CONTACT FORM SECTION
   ========================================================= */
.cnt-form-section {
  padding: 60px 0 100px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cnt-form-section::before {
  content: '';
  position: absolute;
  top: -20%; left: -12%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.07) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cnt-form-section::after {
  content: '';
  position: absolute;
  bottom: -25%; right: -10%;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 93, 59, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cnt-form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.cnt-form-side h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cnt-form-side h2 .accent { font-style: italic; color: var(--crimson); }
.cnt-form-side > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 26px;
}
.cnt-form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cnt-form-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cnt-form-benefit i {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 0;
  background: rgba(230, 184, 0, 0.14);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.cnt-form-benefit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.cnt-form-benefit span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}

.cnt-form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.cnt-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}
.cnt-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.cnt-form-card > p {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.cnt-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cnt-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cnt-form-group.full { grid-column: 1 / -1; }
.cnt-form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--forest);
}
.cnt-form-group label .req { color: var(--crimson); }
.cnt-form-group input,
.cnt-form-group select,
.cnt-form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 12px 15px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition-fast);
  width: 100%;
  outline: none;
}
.cnt-form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.cnt-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d4a1e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}
.cnt-form-group input::placeholder,
.cnt-form-group textarea::placeholder {
  color: #a9a294;
  font-weight: 400;
}
.cnt-form-group input:focus,
.cnt-form-group select:focus,
.cnt-form-group textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(198, 93, 59, 0.09);
}
.cnt-form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.cnt-form-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--crimson);
  cursor: pointer;
}
.cnt-form-submit {
  width: 100%;
  margin-top: 6px;
}
.cnt-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}
.cnt-form-note i { color: var(--forest); font-size: 0.7rem; }

/* Success state */
.cnt-form-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}
.cnt-form-success.show { display: block; animation: fadeUp 0.5s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.cnt-form-success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(45, 74, 30, 0.25);
}
.cnt-form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.cnt-form-success p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 20px;
}
.cnt-form-success .btn { width: auto; }

/* =========================================================
   MAP SECTION
   ========================================================= */
.cnt-map-section {
  padding: 80px 0;
  background: var(--cream);
}
.cnt-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 440px;
  position: relative;
  border: 1px solid var(--border-light);
}
.cnt-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.cnt-map-info-card {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  border-left: 4px solid var(--crimson);
  z-index: 2;
}
.cnt-map-info-card h5 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cnt-map-info-card h5 i { color: var(--crimson); }
.cnt-map-info-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cnt-cta-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--forest-deep) 0%, var(--crimson-deep) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cnt-cta-section::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.12) 0%, transparent 70%);
  z-index: 0;
}
.cnt-cta-section .container { position: relative; z-index: 2; }
.cnt-cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.cnt-cta-section h2 .accent { font-style: italic; color: var(--gold-light); }
.cnt-cta-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.85;
}
.cnt-cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .cnt-info-grid { grid-template-columns: repeat(2, 1fr); }
  .cnt-form-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .cnt-hero {
    padding: 70px 0 60px;
    min-height: auto;
  }
  .cnt-hero h1 { font-size: 2rem; }
  .cnt-info-grid { grid-template-columns: 1fr; }
  .cnt-form-layout { grid-template-columns: 1fr; gap: 32px; }
  .cnt-form-grid { grid-template-columns: 1fr; }
  .cnt-form-card { padding: 28px 22px; }
  .cnt-form-card::before { left: 22px; right: 22px; }
  .cnt-map-wrapper { height: 360px; }
  .cnt-map-info-card {
    top: 16px;
    left: 16px;
    right: 16px;
    max-width: none;
    padding: 18px 20px;
  }
  .cnt-cta-buttons { flex-direction: column; }
  .cnt-cta-buttons .btn { width: 100%; }
}
@media (max-width: 480px) {
  .cnt-hero { padding: 56px 0 48px; }
  .cnt-hero h1 { font-size: 1.7rem; }
  .cnt-hero p { font-size: 0.9rem; }
  .cnt-info-card { padding: 26px 20px; }
  .cnt-form-success .btn { width: 100%; }
}

/* =========================================================
   32. INSPECTION (AQL) PAGE
   ========================================================= */
.aql-intro-section { padding: 100px 0; background: var(--white); }
.aql-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; }
.aql-intro-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 520px;
  position: relative;
  background: #000;
}
.aql-intro-visual video { width: 100%; height: 100%; object-fit: cover; display: block; }
.aql-intro-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 700; color: var(--forest);
  line-height: 1.22; margin-bottom: 22px;
}
.aql-intro-content h2 .accent { font-style: italic; color: var(--crimson); }
.aql-intro-content p { font-size: 1rem; color: var(--text-light); line-height: 1.95; margin-bottom: 18px; }
.aql-intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.aql-intro-feature {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--forest);
  background: linear-gradient(135deg, var(--cream), var(--white));
  padding: 14px 18px; border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}
.aql-intro-feature i { color: var(--crimson); font-size: 1rem; width: 22px; text-align: center; }

.video-showcase-section { padding: 100px 0; background: var(--forest-deep); position: relative; overflow: hidden; }
.video-showcase-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9;
  background: #000;
  max-width: 980px; margin: 0 auto;
  border: 2px solid rgba(230,184,0,0.2);
}
.video-showcase-wrapper video { width: 100%; height: 100%; object-fit: cover; display: block; }

.deep-dive-section { padding: 100px 0; background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%); }
.deep-dive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
.deep-dive-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.deep-dive-card h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem; font-weight: 700;
  color: var(--forest); margin-bottom: 18px;
  display: flex; align-items: center; gap: 14px;
}
.deep-dive-card h3 i { color: var(--crimson); font-size: 1.3rem; }
.deep-dive-card p { font-size: 0.98rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.deep-dive-card .highlight-line {
  padding: 14px 20px;
  border-left: 3px solid var(--gold);
  background: linear-gradient(90deg, var(--gold-pale), transparent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic; color: var(--forest); font-weight: 500;
}

.aql-levels-section { padding: 100px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.aql-levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.aql-level-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 46px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.aql-level-icon {
  width: 82px; height: 82px;
  background: linear-gradient(135deg, rgba(230,184,0,0.15), rgba(198,93,59,0.1));
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--crimson);
  margin: 0 auto 20px;
}
.aql-level-card h5 { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--forest); margin-bottom: 10px; }
.aql-level-card .aql-number {
  font-family: var(--font-mono);
  font-size: 2.6rem; font-weight: 700;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px; line-height: 1; letter-spacing: -1.5px;
}
.aql-level-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

.price-tier-section { padding: 100px 0; background: var(--white); }
.price-tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.price-tier-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 46px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.price-tier-card .tier-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--forest), var(--forest-dark));
  color: var(--gold-light);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 1.5px; margin-bottom: 20px;
}
.price-tier-card .tier-label { font-family: var(--font-serif); font-size: 1.28rem; font-weight: 700; color: var(--forest); margin-bottom: 16px; }
.price-tier-card .tier-value { font-family: var(--font-mono); font-size: 1.85rem; font-weight: 700; color: var(--crimson); margin-bottom: 20px; }
.price-tier-card p { font-size: 0.94rem; color: var(--text-light); line-height: 1.8; }

.aql-table-section { padding: 100px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.aql-table-wrapper {
  max-width: 1000px; margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  background: var(--white);
  padding: 10px;
}
.aql-table {
  width: 100%; border-collapse: collapse;
  font-size: 0.98rem; background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden; min-width: 640px;
}
.aql-table th {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  color: var(--white); padding: 22px 26px; text-align: left;
  font-family: var(--font-serif); font-weight: 600;
}
.aql-table td { padding: 20px 26px; border-bottom: 1px solid var(--border-light); font-size: 0.94rem; }
.aql-table tr:last-child td { border-bottom: none; }
.aql-table tbody tr:nth-child(even) { background: var(--off-white); }
.aql-table .result-pass {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--leaf); font-weight: 700;
  background: rgba(107,143,78,0.12);
  padding: 8px 18px; border-radius: 50px;
  font-size: 0.86rem;
}
.aql-note { text-align: center; margin-top: 32px; font-size: 0.96rem; color: var(--text-muted); font-style: italic; }

.defect-section { padding: 100px 0; background: var(--white); }
.defect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.defect-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.defect-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(230,184,0,0.15), rgba(198,93,59,0.1));
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--crimson);
  margin-bottom: 22px;
}
.defect-card h5 { font-family: var(--font-serif); font-size: 1.28rem; font-weight: 700; color: var(--forest); margin-bottom: 20px; }
.defect-card ul li {
  font-size: 0.92rem; color: var(--text-light);
  line-height: 1.75; padding-left: 24px;
  position: relative; margin-bottom: 12px;
}
.defect-card ul li::before { content: '▸'; position: absolute; left: 0; color: var(--crimson); font-weight: 700; top: 5px; }

.inspection-types-section { padding: 110px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.inspection-type-row { display: grid; grid-template-columns: 1fr 1fr; gap: 68px; align-items: center; margin-bottom: 110px; }
.inspection-type-row:last-child { margin-bottom: 0; }
.inspection-type-row.reverse .type-visual { order: 2; }
.inspection-type-row.reverse .type-content { order: 1; }
.type-visual { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-xl); height: 480px; position: relative; }
.type-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.22,1,0.36,1); }
.type-visual:hover img { transform: scale(1.06); }
.type-visual .type-badge {
  position: absolute; top: 26px; left: 26px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  color: var(--white);
  padding: 14px 24px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  box-shadow: var(--shadow-lg); z-index: 2;
}
.type-content .type-number {
  font-family: var(--font-mono);
  font-size: 0.86rem; font-weight: 600;
  color: var(--crimson); letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 14px;
}
.type-content .type-number::before { content: ''; width: 36px; height: 2px; background: linear-gradient(90deg, var(--crimson), var(--gold)); }
.type-content h3 { font-family: var(--font-serif); font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.15; margin-bottom: 20px; }
.type-content h3 .accent { font-style: italic; color: var(--crimson); }
.type-content > p { font-size: 1rem; color: var(--text-light); line-height: 1.95; margin-bottom: 24px; }
.type-content h5 {
  font-family: var(--font-serif); font-size: 1.08rem; font-weight: 700;
  color: var(--forest); margin-bottom: 16px; margin-top: 24px;
  display: flex; align-items: center; gap: 12px;
}
.type-content h5::before { content: ''; width: 24px; height: 1.5px; background: var(--crimson); }
.type-content ul { display: flex; flex-direction: column; gap: 12px; }
.type-content ul li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.94rem; color: var(--text-light); line-height: 1.7;
}
.type-content ul li i {
  color: var(--crimson); font-size: 0.82rem;
  margin-top: 7px; flex-shrink: 0;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-pale); border-radius: 50%;
}

.how-it-works-section { padding: 110px 0; background: var(--white); }
.how-it-works-timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.how-it-works-timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 40px;
  width: 2px;
  background: linear-gradient(180deg, var(--crimson), var(--gold), var(--crimson));
  opacity: 0.35;
}
.timeline-item { display: flex; gap: 36px; margin-bottom: 48px; position: relative; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-badge {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--white), var(--cream));
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--crimson);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(230,184,0,0.2);
  position: relative; z-index: 2;
}
.timeline-content {
  background: linear-gradient(135deg, var(--white), var(--off-white));
  border-radius: var(--radius-lg);
  padding: 30px 34px;
  border: 1px solid var(--border-light);
  flex: 1;
  box-shadow: var(--shadow-sm);
}
.timeline-content h5 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 700; color: var(--forest); margin-bottom: 12px; }
.timeline-content p { font-size: 0.96rem; color: var(--text-light); line-height: 1.85; }
.timeline-content .time-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  color: var(--forest);
  font-size: 0.76rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
  margin-top: 16px;
}

/* Audit section with video background */
.audit-section {
  position: relative; padding: 120px 0;
  overflow: hidden; isolation: isolate;
  min-height: 720px;
  display: flex; align-items: center;
  background: var(--forest-deep);
}
.audit-bg-video { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.audit-bg-video video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.audit-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,26,8,0.62) 0%, rgba(13,26,8,0.48) 45%, rgba(109,47,30,0.52) 100%);
  z-index: 1;
}
.audit-container { position: relative; z-index: 2; width: 100%; }
.audit-overlay-content { max-width: 780px; color: var(--white); }
.audit-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 24px; color: var(--white);
  letter-spacing: -0.6px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.75), 0 4px 24px rgba(0,0,0,0.55);
}
.audit-heading .accent { font-style: italic; color: var(--gold-light); }
.audit-lead {
  font-size: 1.02rem; color: rgba(255,255,255,0.96);
  line-height: 1.95; margin-bottom: 18px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 2px 14px rgba(0,0,0,0.5);
  max-width: 720px;
}
.audit-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.audit-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.9rem; color: rgba(255,255,255,0.98);
  line-height: 1.65; padding: 16px 20px;
  background: rgba(13,26,8,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.18);
  border-left: 3px solid var(--gold);
  transition: var(--transition-fast);
}
.audit-item:hover { background: rgba(13,26,8,0.72); border-left-color: var(--crimson); transform: translateX(4px); }
.audit-item i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }

.why-choose-section { padding: 110px 0; background: var(--white); }
.why-choose-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, rgba(230,184,0,0.15), rgba(198,93,59,0.1));
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--crimson);
  margin: 0 auto 18px;
}
.why-card h5 { font-family: var(--font-serif); font-size: 1.08rem; font-weight: 700; color: var(--forest); margin-bottom: 10px; }
.why-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.7; }

.included-section { padding: 110px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 1080px; margin: 0 auto; }
.included-item {
  display: flex; gap: 22px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}
.included-icon {
  width: 62px; height: 62px;
  background: linear-gradient(135deg, var(--crimson), var(--crimson-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--gold);
  flex-shrink: 0;
}
.included-content h5 { font-family: var(--font-serif); font-size: 1.12rem; font-weight: 700; color: var(--forest); margin-bottom: 10px; }
.included-content p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.75; }

/* =========================================================
   33. DYES / SPICES / INCENSE / HERBS / SOAP NUTS PAGES
   ========================================================= */
.dyes-intro-section, .incense-intro-section,
.ayurvastra-intro-section, .spices-intro-section { padding: 80px 0; background: var(--white); }
.dyes-intro-layout, .incense-intro-layout,
.ayurvastra-intro-layout, .spices-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dyes-intro-visual, .incense-intro-visual,
.ayurvastra-intro-visual, .spices-intro-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 420px; position: relative;
}
.dyes-intro-visual img, .incense-intro-visual img,
.ayurvastra-intro-visual img, .spices-intro-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
}
.dyes-intro-visual:hover img, .incense-intro-visual:hover img,
.ayurvastra-intro-visual:hover img, .spices-intro-visual:hover img { transform: scale(1.05); }
.dyes-intro-content h2, .incense-intro-content h2,
.ayurvastra-intro-content h2, .spices-intro-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700; color: var(--forest);
  line-height: 1.2; margin-bottom: 18px;
}
.dyes-intro-content h2 .accent, .incense-intro-content h2 .accent,
.ayurvastra-intro-content h2 .accent, .spices-intro-content h2 .accent { font-style: italic; color: var(--crimson); }
.dyes-intro-content p, .incense-intro-content p,
.ayurvastra-intro-content p, .spices-intro-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.dyes-intro-features, .incense-intro-features,
.ayurvastra-intro-features, .spices-intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.dyes-intro-feature, .incense-intro-feature,
.ayurvastra-intro-feature, .spices-intro-feature {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--forest);
  background: var(--cream);
  padding: 8px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.dyes-intro-feature i, .incense-intro-feature i,
.ayurvastra-intro-feature i, .spices-intro-feature i { color: var(--crimson); font-size: 0.9rem; width: 20px; text-align: center; }

.dyes-range-section, .spices-range-section,
.ingredients-section, .scent-section,
.common-herbs-section, .organic-care-section,
.organic-science-section, .benefits-section,
.custom-dyeing-section, .custom-sourcing-section,
.history-section, .reference-section { padding: 80px 0; }
.common-herbs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.scent-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.dyes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.spices-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }

.benefit-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.benefit-icon {
  width: 58px; height: 58px;
  background: rgba(230,184,0,0.12);
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--crimson);
  margin: 0 auto 12px;
  transition: var(--transition-fast);
}
.benefit-card:hover .benefit-icon { background: var(--crimson); color: var(--gold); transform: scale(1.06) rotate(-4deg); }
.benefit-card h5 { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.benefit-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }





/* product-detail  section  */

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--cream);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
}
.breadcrumb-bar a { color: var(--crimson); font-weight: 600; }
.breadcrumb-bar a:hover { color: var(--forest); }
.breadcrumb-bar .separator { margin: 0 10px; color: var(--gold); font-size: 0.6rem; }
.breadcrumb-bar .current { color: var(--forest); font-weight: 700; }
 
/* ===== PRODUCT HERO ===== */
.product-hero {
  padding: 56px 0 64px; background: var(--off-white);
  position: relative; overflow: hidden;
}
.product-hero::before {
  content: ''; position: absolute;
  top: -15%; right: -8%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.05) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
}
.product-hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 56px; align-items: start;
  position: relative; z-index: 1;
}

/* Gallery */
.product-gallery { position: relative; }
.product-gallery-main-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  height: 520px; z-index: 2; background: var(--cream-dark);
}
.product-gallery-main {
  width: 100%; height: 100%;
  overflow: hidden; position: relative; cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.product-gallery-main:hover img { transform: scale(1.06); }
.gallery-badge {
  position: absolute; top: 20px; left: 20px;
  z-index: 3; background: var(--crimson); color: var(--white);
  padding: 8px 16px; border-radius: 50px;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex; align-items: center; gap: 6px;
}
.gallery-badge i { font-size: 0.55rem; }
.gallery-frame-accent {
  position: absolute; top: -12px; right: -12px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: 1; opacity: 0.25; pointer-events: none;
}
.gallery-thumb-row {
  display: flex; gap: 10px; margin-top: 14px;
  position: relative; z-index: 3;
}
.gallery-thumb {
  width: 72px; height: 72px;
  border-radius: var(--radius-sm);
  overflow: hidden; cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-sm); position: relative;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb:hover {
  border-color: var(--gold); transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gallery-thumb.active {
  border-color: var(--crimson);
  box-shadow: 0 4px 15px rgba(198, 93, 59, 0.25);
}
.gallery-thumb.active::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--crimson);
}

/* Product Info */
.product-info { padding-top: 6px; }
.badge-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 14px; border-radius: 50px;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  transition: var(--transition-fast);
}
.badge-organic {
  background: var(--forest); color: var(--gold-light);
  border: 1px solid rgba(230, 184, 0, 0.2);
}
.badge-origin {
  background: var(--crimson); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.badge-cert {
  background: var(--gold-pale); color: var(--forest);
  border: 1px solid rgba(230, 184, 0, 0.3);
}
.badge i { font-size: 0.5rem; }

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.7rem);
  font-weight: 700; color: var(--forest);
  line-height: 1.12; letter-spacing: -1px; margin-bottom: 6px;
}
.product-subtitle {
  font-family: var(--font-serif2);
  font-style: italic; font-weight: 600;
  color: var(--crimson); font-size: 1.25rem;
  margin-bottom: 14px; letter-spacing: 0.2px;
}
.rating-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.stars { display: flex; gap: 3px; }
.stars i { color: var(--gold); font-size: 0.85rem; }
.stars i.empty { color: var(--border-light); }
.rating-count { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }
.rating-count a { color: var(--crimson); font-weight: 600; }
.rating-count a:hover { text-decoration: underline; }

.price-row {
  display: flex; align-items: baseline; gap: 14px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.price-current {
  font-family: var(--font-serif);
  font-size: 2.4rem; font-weight: 700;
  color: var(--crimson); letter-spacing: -0.5px; line-height: 1;
}
.price-current .unit {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted); letter-spacing: 0;
}
.price-original {
  font-size: 1.1rem; color: var(--text-muted);
  text-decoration: line-through; font-weight: 500;
}
.price-save {
  background: var(--forest); color: var(--gold-light);
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.5px;
}

.product-short-desc {
  font-size: 0.88rem; color: var(--text-light);
  line-height: 1.85; margin-bottom: 20px;
  border-left: 3px solid var(--gold); padding-left: 16px;
}
.product-short-desc strong { color: var(--forest); }

.specs-inline { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.spec-pill {
  display: flex; align-items: center; gap: 6px;
  background: var(--cream); padding: 8px 14px;
  border-radius: 50px; font-size: 0.7rem;
  font-weight: 600; color: var(--forest);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.spec-pill:hover {
  background: var(--gold-pale);
  border-color: var(--gold); transform: translateY(-1px);
}
.spec-pill i { color: var(--crimson); font-size: 0.6rem; }

.action-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
 
.trust-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--border-light); padding-top: 18px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 500;
  color: var(--text-muted);
}
.trust-item i { color: var(--forest); font-size: 0.9rem; }

/* ===== INFO STRIP ===== */
.info-strip { background: var(--forest-dark); padding: 16px 0; color: var(--white); }
.info-strip .container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.info-strip-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.info-strip-item i {
  color: var(--gold); font-size: 0.9rem;
  width: 20px; text-align: center;
}
.info-strip-item strong { color: var(--white); font-weight: 600; }

/* ===== SUB BANNER ===== */
.sub-banner {
  position: relative; padding: 80px 0;
  text-align: center; color: var(--white);
  overflow: hidden; isolation: isolate;
}
.sub-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  z-index: 0; animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}
.sub-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,26,8,0.65) 0%, rgba(109,47,30,0.55) 100%);
  z-index: 1;
}
.sub-banner-content {
  position: relative; z-index: 2;
  max-width: 750px; margin: 0 auto;
}
.sub-banner-tag {
  display: inline-block; background: var(--gold);
  color: var(--forest-dark); padding: 6px 20px;
  border-radius: 50px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 18px;
}
.sub-banner-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700; margin-bottom: 16px;
  letter-spacing: -0.5px; line-height: 1.2;
}

/* ===== FABRIC STORY ===== */
.fabric-story { padding: 80px 0; background: var(--white); }
.story-layout {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 60px; align-items: start;
}
.story-main h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700; color: var(--forest);
  line-height: 1.2; margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.story-main h2 .accent { font-style: italic; color: var(--crimson); }
.story-main p {
  font-size: 0.9rem; color: var(--text-light);
  line-height: 1.9; margin-bottom: 18px;
}
.story-main p strong { color: var(--forest); font-weight: 600; }
.story-quote {
  background: var(--cream); border-left: 4px solid var(--crimson);
  padding: 22px 26px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 26px 0; position: relative;
  box-shadow: var(--shadow-sm);
}
.story-quote::before {
  content: '"'; font-size: 3.5rem;
  color: var(--gold); position: absolute;
  top: -8px; left: 14px;
  font-family: var(--font-serif);
  opacity: 0.4; line-height: 1;
}
.story-quote p {
  margin: 0; padding-left: 28px;
  font-size: 0.85rem; font-style: italic; color: var(--text);
}
.story-quote p strong { color: var(--crimson); }

.story-sidebar { position: sticky; top: 24px; }
.sidebar-card {
  background: var(--cream); border-radius: var(--radius-md);
  padding: 26px 22px;
  border: 1px solid var(--border-light);
  margin-bottom: 18px; transition: var(--transition-fast);
}
.sidebar-card:hover { box-shadow: var(--shadow-md); border-color: var(--gold); }
.sidebar-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 700;
  color: var(--forest); margin-bottom: 16px;
  position: relative; padding-bottom: 10px;
}
.sidebar-card h4::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2.5px;
  background: var(--gold); border-radius: 2px;
}
.spec-table { display: flex; flex-direction: column; gap: 2px; }
.spec-table-row {
  display: flex; justify-content: space-between;
  align-items: center; padding: 9px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.76rem;
}
.spec-table-row:last-child { border-bottom: none; }
.spec-table-label { color: var(--text-muted); font-weight: 500; }
.spec-table-value {
  color: var(--forest); font-weight: 700;
  text-align: right; font-family: var(--font-mono);
  font-size: 0.72rem;
}

/* ===== VIDEO SECTION ===== */
.video-section {
  padding: 80px 0; background: var(--forest-deep);
  position: relative; overflow: hidden; isolation: isolate;
}
.video-section::before {
  content: ''; position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.07) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.video-section .container { position: relative; z-index: 2; }
.video-section .section-tag { color: var(--gold); }
.video-section .section-tag::before,
.video-section .section-tag::after { background: var(--gold); }
.video-section .section-header h2 { color: var(--white); }
.video-section .section-header p { color: rgba(255, 255, 255, 0.65); }

.video-wrapper {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-xl);
  aspect-ratio: 16/9; background: #000;
  max-width: 880px; margin: 0 auto;
  border: 2px solid rgba(230, 184, 0, 0.15);
}
.video-wrapper video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.video-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  pointer-events: none; z-index: 2;
  transition: var(--transition-fast);
}
.video-overlay .play-btn {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2.5px solid rgba(255, 255, 255, 0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  transition: var(--transition-fast);
  backdrop-filter: blur(8px);
  animation: pulseBtn 2.5s infinite;
}
@keyframes pulseBtn {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230, 184, 0, 0.3); }
  50% { box-shadow: 0 0 0 16px rgba(230, 184, 0, 0); }
}
.video-captions {
  display: flex; justify-content: center;
  gap: 32px; flex-wrap: wrap; margin-top: 28px;
}
.video-caption {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.3px;
}
.video-caption i { color: var(--gold); font-size: 0.85rem; }

/* ===== FEATURES ===== */
.features-section { padding: 80px 0; background: var(--white); }
.features-grid-6 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--off-white); border-radius: var(--radius-md);
  padding: 28px 22px;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
  text-align: center; position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
  opacity: 0; transition: var(--transition-fast);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 54px; height: 54px;
  background: rgba(230, 184, 0, 0.12);
  border-radius: 50% 50% 50% 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--crimson);
  margin: 0 auto 14px; transition: var(--transition-fast);
}
.feature-card:hover .feature-icon {
  background: var(--crimson); color: var(--gold);
  transform: scale(1.06) rotate(-4deg);
}
.feature-card h5 {
  font-family: var(--font-serif);
  font-size: 0.95rem; font-weight: 700;
  color: var(--forest); margin-bottom: 8px;
}
.feature-card p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.7; }

/* ===== BLEND SECTION ===== */
.blend-section {
  padding: 80px 0; background: var(--cream);
  position: relative; overflow: hidden;
}
.blend-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 1;
}
.blend-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700; color: var(--forest);
  margin-bottom: 16px; letter-spacing: -0.5px;
}
.blend-info h2 .accent { font-style: italic; color: var(--crimson); }
.blend-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.85; margin-bottom: 16px; }
.blend-ratio-cards { display: flex; gap: 14px; margin: 26px 0; }
.ratio-card {
  flex: 1; text-align: center;
  background: var(--white); padding: 22px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.ratio-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.ratio-percentage {
  font-family: var(--font-serif);
  font-size: 2rem; font-weight: 700;
  color: var(--crimson); line-height: 1;
}
.ratio-label {
  font-size: 0.7rem; font-weight: 700;
  color: var(--forest); letter-spacing: 1px;
  text-transform: uppercase; margin-top: 6px;
}
.ratio-sub {
  font-size: 0.65rem; color: var(--text-muted);
  margin-top: 4px; font-weight: 400;
  text-transform: none; letter-spacing: 0;
}
.blend-visual {
  border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg);
  height: 420px; position: relative; z-index: 2;
}
.blend-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.blend-visual:hover img { transform: scale(1.04); }
.blend-visual-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: var(--crimson); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius-sm);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.5px; box-shadow: var(--shadow-md);
  z-index: 3; display: flex; align-items: center; gap: 6px;
}
.blend-visual-badge i { color: var(--gold); }

/* ===== CARE ===== */
.care-section { padding: 80px 0; background: var(--white); }
.care-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.care-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.care-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.care-card i { font-size: 1.5rem; color: var(--crimson); margin-bottom: 12px; display: block; }
.care-card h5 {
  font-family: var(--font-serif);
  font-size: 0.85rem; font-weight: 700;
  color: var(--forest); margin-bottom: 6px;
}
.care-card p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-section { padding: 80px 0; background: var(--cream); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: var(--radius-sm);
  margin-bottom: 10px; box-shadow: var(--shadow-sm);
  overflow: hidden; border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}
.faq-item:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.faq-question {
  display: flex; justify-content: space-between;
  align-items: center; padding: 16px 22px;
  cursor: pointer; font-weight: 600;
  font-size: 0.82rem; color: var(--forest);
  letter-spacing: 0.2px; transition: var(--transition-fast);
  gap: 12px;
}
.faq-question:hover { color: var(--crimson); }
.faq-question i {
  transition: var(--transition-fast);
  font-size: 0.75rem; color: var(--crimson); flex-shrink: 0;
}
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  padding: 0 22px;
}
.faq-item.active .faq-answer { max-height: 240px; padding-bottom: 16px; }
.faq-answer p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.8; }

/* =========================================================
   SAMPLE REQUEST FORM — SCOPED WITH hpf- PREFIX
   ========================================================= */
.hpf-sample-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hpf-sample-section::before {
  content: '';
  position: absolute;
  top: -20%; left: -12%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.07) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hpf-sample-section::after {
  content: '';
  position: absolute;
  bottom: -25%; right: -10%;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 93, 59, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hpf-sample-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.hpf-form-side h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.hpf-form-side h2 .accent { font-style: italic; color: var(--crimson); }
.hpf-form-side > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 26px;
}
.hpf-form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hpf-form-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hpf-form-benefit i {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 0;
  background: rgba(230, 184, 0, 0.14);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.hpf-form-benefit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.hpf-form-benefit span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}
.hpf-form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hpf-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}
.hpf-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.hpf-form-card > p {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.hpf-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hpf-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hpf-form-group.full { grid-column: 1 / -1; }
.hpf-form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--forest);
}
.hpf-form-group label .req { color: var(--crimson); }
.hpf-form-group input,
.hpf-form-group select,
.hpf-form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 12px 15px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition-fast);
  width: 100%;
  outline: none;
}
.hpf-form-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}
.hpf-form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d4a1e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}
.hpf-form-group input::placeholder,
.hpf-form-group textarea::placeholder {
  color: #a9a294;
  font-weight: 400;
}
.hpf-form-group input:focus,
.hpf-form-group select:focus,
.hpf-form-group textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(198, 93, 59, 0.09);
  background: var(--white);
}
.hpf-form-check {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.hpf-form-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--crimson);
  cursor: pointer;
}
.hpf-form-submit {
  width: 100%;
  margin-top: 6px;
}
.hpf-form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}
.hpf-form-note i { color: var(--forest); font-size: 0.7rem; }

/* Success state */
.hpf-form-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}
.hpf-form-success.show { display: block; animation: fadeUp 0.5s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hpf-form-success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(45, 74, 30, 0.25);
}
.hpf-form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.hpf-form-success p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 20px;
}
.hpf-form-success .btn { width: auto; }

/* ===== CTA ===== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(160deg, var(--forest-deep) 0%, var(--crimson-deep) 55%, #3d1a0a 100%);
  color: var(--white);
  text-align: center;
  position: relative; overflow: hidden; isolation: isolate;
}
.cta-section::before {
  content: ''; position: absolute;
  top: -30%; left: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.08) 0%, transparent 70%);
  z-index: 0; pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700; margin-bottom: 14px; letter-spacing: -0.5px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem; max-width: 540px;
  margin: 0 auto 28px; line-height: 1.8;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== RELATED ===== */
.related-section { padding: 80px 0; background: var(--white); }
.related-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-card {
  background: var(--off-white);
  border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  border: 1px solid var(--border-light);
  cursor: pointer; display: block;
}
.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.related-img { height: 200px; overflow: hidden; }
.related-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.related-card:hover .related-img img { transform: scale(1.06); }
.related-body { padding: 18px 20px; }
.related-body h5 {
  font-family: var(--font-serif);
  font-size: 1rem; font-weight: 700;
  color: var(--forest); margin-bottom: 6px;
}
.related-body p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }
.related-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--crimson); margin-top: 10px;
  transition: var(--transition-fast);
}
.related-link i { transition: var(--transition-fast); font-size: 0.65rem; }
.related-card:hover .related-link i { transform: translateX(4px); }
 

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-gallery-main-wrap { height: 400px; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-sidebar { position: static; }
  .features-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .blend-layout { grid-template-columns: 1fr; gap: 36px; }
  .blend-visual { height: 320px; }
  .care-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .related-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .hpf-sample-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .product-gallery-main-wrap { height: 300px; }
  .gallery-thumb { width: 60px; height: 60px; }
  .features-grid-6 { grid-template-columns: 1fr; }
  .care-grid-4 { grid-template-columns: 1fr; }
  .related-grid-3 { grid-template-columns: 1fr; }
  .video-wrapper { aspect-ratio: 4/3; }
  .action-row { flex-direction: column; }
  .btn { width: 100%; }
  .blend-ratio-cards { flex-direction: column; }
  .video-captions { flex-direction: column; align-items: center; gap: 12px; }
  .announcement-bar { font-size: 0.62rem; }
  .hpf-form-grid { grid-template-columns: 1fr; }
  .hpf-form-card { padding: 28px 22px; }
  .hpf-form-card::before { left: 22px; right: 22px; }
}
@media (max-width: 480px) {
  .product-gallery-main-wrap { height: 240px; }
  .gallery-thumb { width: 50px; height: 50px; }
  .product-title { font-size: 1.7rem; }
  .price-current { font-size: 1.8rem; }
  .cta-buttons { flex-direction: column; }
  .cta-buttons .btn { width: 100%; }
  .badge-row { gap: 6px; }
  .badge { font-size: 0.55rem; padding: 4px 10px; }
  .spec-pill { font-size: 0.62rem; padding: 6px 10px; }
  .hpf-form-success .btn { width: 100%; }
}
/* product-detail  section  */












/* =========================================================
   34. RESPONSIVE
   ========================================================= */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; }
}

@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sustainable-grid { grid-template-columns: repeat(2, 1fr); }
  .quality-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-choose-grid { grid-template-columns: repeat(2, 1fr); }
  .inspection-content { grid-template-columns: 1fr; gap: 36px; }
  .inspection-image-main img, .inspection-image-main video { height: 300px; }
  .fabrics-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-contact-icons { right: 16px; gap: 8px; }
  .sticky-icon { width: 40px; height: 40px; font-size: 1rem; }
  .whatsapp-chat-widget { right: 16px; bottom: 80px; }
  .whatsapp-chat-panel { width: 290px; }
  .svc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .svc-hero-panel { max-width: 480px; }
  .svc-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .mv-grid, .impact-grid, .aql-levels-grid, .deep-dive-grid,
  .aql-intro-layout, .inspection-type-row, .price-tier-grid,
  .defect-grid, .why-choose-grid, .included-grid,
  .dyes-grid, .spices-grid, .common-herbs-grid, .ingredients-grid,
  .scent-grid, .form-layout, .story-layout, .product-hero-grid,
  .contact-info-grid, .sample-form-layout, .custom-dyeing-layout,
  .custom-sourcing-layout, .spices-intro-layout, .incense-intro-layout,
  .ayurvastra-intro-layout, .dyes-intro-layout, .history-layout,
  .gallery-grid, .aql-intro-layout, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .product-gallery-main-wrap { height: 400px; }
  .story-sidebar { position: static; }
}

@media (max-width: 991px) {
  html, body { overflow-x: clip; max-width: 100%; }
  body { position: relative; }
  .topbar { display: none !important; }
  .navbar { background: rgba(255, 255, 255, 0.96); }
  .navbar.scrolled { box-shadow: 0 6px 30px rgba(26, 60, 14, 0.15); background: rgba(255, 255, 255, 0.98); }
  .navbar .container { height: 66px; }
  .logo { font-size: 1rem; gap: 4px; }
  .logo-icon { width: 58px; height: 44px;  }
  .logo-icon img { max-width: 100%; height: auto; }
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0;
    width: 82%; max-width: 340px;
    height: 100vh; height: 100dvh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0; padding: 0;
    box-shadow: -12px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-left: 4px solid var(--gold);
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0.5s;
  }
  .nav-links.active {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
  }
  .nav-sidebar-head {
    display: flex;
    justify-content: space-between; align-items: center;
    padding: 22px 24px 18px;
    background: linear-gradient(135deg, var(--forest-dark), var(--forest));
    color: var(--white);
    margin-bottom: 8px;
    position: sticky; top: 0; z-index: 2;
  }
  .nav-sidebar-head::after {
    content: ''; position: absolute;
    bottom: 0; left: 24px; right: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
  }
  .nav-sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.05rem; font-weight: 800;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
  }
  .nav-close {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1.5px solid rgba(230, 184, 0, 0.4);
    color: var(--gold);
    display: none; align-items: center; justify-content: center;
    font-size: 1rem; cursor: pointer;
    transition: var(--transition);
  }
  .nav-close:hover { background: var(--gold); color: var(--forest-dark); transform: rotate(90deg); }
  .nav-links a {
    font-size: 0.98rem; font-weight: 700;
    padding: 16px 26px; width: 100%;
    border-bottom: 1px solid var(--cream-dark);
    color: var(--forest);
    display: flex; align-items: center; justify-content: space-between;
    opacity: 1; transition: var(--transition);
  }
  .nav-links a::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900; font-size: 0.8rem;
    color: var(--gold); opacity: 0.6;
    position: static; width: auto; height: auto;
    background: transparent;
    transition: var(--transition);
  }
  .nav-links a:hover { background: rgba(230, 184, 0, 0.1); color: var(--crimson); padding-left: 32px; }
  .nav-links a:hover::after { color: var(--crimson); transform: translateX(4px); opacity: 1; width: auto; }
  .nav-links .nav-cta {
    margin: 20px 24px 8px;
    width: calc(100% - 48px);
    justify-content: center;
    padding: 14px 20px !important;
    font-size: 0.82rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(198, 93, 59, 0.3);
    color: var(--white) !important;
    border-bottom: none;
  }
  .nav-links .nav-cta::after { display: none !important; }
  .nav-links .nav-cta:hover { background: var(--gold) !important; color: var(--forest) !important; padding-left: 20px !important; }
  .nav-sidebar-foot {
    display: flex; flex-direction: column; gap: 10px;
    margin-top: auto;
    padding: 20px 24px 26px;
    background: var(--cream);
    border-top: 1px solid var(--cream-dark);
  }
  .nav-sidebar-foot a {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.78rem; color: var(--forest);
    font-weight: 600; padding: 8px 0;
    border-bottom: none !important;
    justify-content: flex-start !important;
    word-break: break-word;
    transition: var(--transition);
  }
  .nav-sidebar-foot a::after { display: none !important; }
  .nav-sidebar-foot a i { color: var(--crimson); font-size: 0.9rem; width: 16px; flex-shrink: 0; text-align: center; }
  .nav-sidebar-foot a:hover { color: var(--crimson); padding-left: 4px !important; background: transparent !important; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 0.9rem; }
}

@media (max-width: 768px) {
  .preloader-gots-seal { width: 95px; height: 95px; }
  .preloader-brand-name { font-size: 1.8rem; }
  .preloader-brand-sub { font-size: 0.62rem; letter-spacing: 3px; }
  .preloader-gots-badge { font-size: 0.55rem; }
  .preloader-progress-wrap { width: 210px; }
  .preloader-progress-ring { width: 54px; height: 54px; }
  .preloader-percentage { font-size: 0.7rem; }
  .preloader-letterbox-top, .preloader-letterbox-bottom { height: 45px; }
  .section { padding: 48px 0; }
  .hero { min-height: 84vh; }
  .hero-content h1 { font-size: 1.9rem; letter-spacing: -0.8px; }
  .hero-content p { font-size: 0.88rem; }
  .products-grid, .services-grid, .sustainable-grid, .why-choose-grid,
  .fabrics-grid, .footer-grid, .quality-detail-grid, .about-grid,
  .mv-grid, .impact-grid, .aql-levels-grid, .deep-dive-grid,
  .aql-intro-layout, .inspection-type-row, .price-tier-grid,
  .defect-grid, .included-grid, .dyes-grid, .spices-grid,
  .common-herbs-grid, .ingredients-grid, .scent-grid, .form-layout,
  .story-layout, .product-hero-grid, .contact-info-grid,
  .sample-form-layout, .custom-dyeing-layout, .custom-sourcing-layout,
  .spices-intro-layout, .incense-intro-layout, .ayurvastra-intro-layout,
  .dyes-intro-layout, .history-layout, .gallery-grid, .testimonials-grid,
  .process-grid, .why-grid, .svc-grid, .services-grid,
  .values-grid, .team-grid, .certs-grid, .audit-list,
  .included-grid, .related-grid-3, .care-grid-4 { grid-template-columns: 1fr; }
  .about-img-main { height: 240px; }
  .about-img-secondary { height: 160px; }
  .about-img-row { gap: 10px; }
  .footer-grid { gap: 26px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .back-to-top { bottom: 18px; right: 18px; width: 42px; height: 42px; font-size: 0.95rem; }
  .inspection-pillars { grid-template-columns: 1fr; }
  .inspection-stats-row { gap: 18px; }
  .inspection-stat h4 { font-size: 1.5rem; }
  .inspection-image-badge { left: 8px; bottom: 8px; padding: 10px 14px; }
  .inspection-image-frame { display: none; }
  .map-hotspot-container { border-radius: 16px 6px 16px 6px; }
  .hotspot .pin-icon { width: 16px; height: 16px; font-size: 7px; }
  .hotspot .pulse-ring { width: 28px; height: 28px; }
  .hotspot .tooltip { max-width: 130px; padding: 8px 12px; bottom: 145%; }
  .hotspot .tooltip h6 { font-size: 0.72rem; }
  .hotspot .tooltip p { font-size: 0.6rem; }
  .sticky-contact-icons { right: 10px; top: auto; bottom: 120px; transform: none; gap: 8px; }
  .sticky-icon { width: 38px; height: 38px; font-size: 0.9rem; }
  .sticky-tooltip { display: none; }
  .whatsapp-chat-widget { right: 10px; bottom: 70px; }
  .whatsapp-chat-panel { width: 270px; right: 0; }
  .whatsapp-fab { width: 50px; height: 50px; font-size: 1.3rem; }
  .form-row, .form-grid, .action-row, .blend-ratio-cards { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .video-wrapper { aspect-ratio: 4/3; }
  .timeline-section::before { left: 18px; }
  .timeline-item, .timeline-item:nth-child(odd), .timeline-item:nth-child(even) { flex-direction: column; padding: 0; }
  .timeline-dot { left: 18px; top: 20px; }
  .timeline-content { width: 100%; margin-left: 38px; border-left: 4px solid var(--crimson) !important; border-right: none !important; }
  .map-wrapper { height: 360px; }
  .map-info-card { top: 16px; left: 16px; right: 16px; max-width: none; padding: 18px 20px; }
  .announcement-bar { font-size: 0.62rem; }
  .sub-banner { padding: 70px 0; min-height: auto; }
  .sub-banner-content h1, .sub-banner-content h2 { font-size: 2rem; }
  .products-hero { padding: 70px 0 60px; min-height: auto; }
  .products-hero h1 { font-size: 2rem; }
  .contact-hero { padding: 70px 0 60px; }
  .contact-hero h1 { font-size: 2rem; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item:nth-child(5) { grid-column: 1 / -1; }
  .stat-number { font-size: 1.6rem; }
  .svc-card-head { padding: 26px 24px 0; }
  .svc-card-body { padding: 18px 24px 0; }
  .svc-card-foot { padding: 0 24px 26px; }
  .svc-card-icon { width: 52px; height: 52px; font-size: 1.2rem; border-radius: 16px; }
  .svc-card-num { font-size: 2rem; }
  .svc-card-name { font-size: 1.3rem; }
  .form-card { padding: 28px 22px; }
  .form-card::before { left: 22px; right: 22px; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section-header h2, .section-head h2 { font-size: 1.65rem; }
  .products-hero h1, .contact-hero h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .preloader-gots-seal { width: 78px; height: 78px; }
  .preloader-brand-name { font-size: 1.5rem; }
  .preloader-progress-wrap { width: 170px; }
  .preloader-progress-ring { width: 44px; height: 44px; }
  .preloader-percentage { font-size: 0.6rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-features-organic { flex-direction: column; }
  .inspection-pillars { grid-template-columns: 1fr; }
  .inspection-stats-row { flex-direction: column; gap: 14px; }
  .sticky-contact-icons { right: 6px; }
  .whatsapp-chat-widget { right: 6px; }
  .whatsapp-chat-panel { width: 250px; }
  .fabric-img { height: 180px; }
  .nav-links { width: 88%; }
  .nav-sidebar-head { padding: 18px 20px 14px; }
  .nav-links a { padding: 14px 22px; font-size: 0.92rem; }
  .nav-links .nav-cta { margin: 16px 20px 6px; width: calc(100% - 40px); }
  .nav-sidebar-foot { padding: 16px 20px 22px; }
  .sub-banner { padding: 56px 0; }
  .sub-banner-content h1, .sub-banner-content h2 { font-size: 1.65rem; }
  .section-header h2, .section-head h2 { font-size: 1.5rem; }
  .product-gallery-main-wrap { height: 240px; }
  .gallery-thumb { width: 50px; height: 50px; }
  .product-title { font-size: 1.7rem; }
  .price-current { font-size: 1.8rem; }
  .badge-row { gap: 6px; }
  .badge { font-size: 0.55rem; padding: 4px 10px; }
  .spec-pill { font-size: 0.62rem; padding: 6px 10px; }
  .back-to-top { width: 38px; height: 38px; font-size: 0.85rem; bottom: 16px; right: 16px; }
  .whatsapp-fab { width: 44px; height: 44px; font-size: 1.1rem; bottom: 64px; right: 16px; }
  .svc-card-head { padding: 24px 20px 0; }
  .svc-card-body { padding: 16px 20px 0; }
  .svc-card-foot { padding: 0 20px 24px; }
  .svc-card-deliverables { padding: 16px 14px 14px; }
  .svc-card-deliverables li { font-size: 0.73rem; padding: 5px 10px 5px 8px; }
}

@media (max-width: 360px) {
  .container { padding: 0 14px; }
  .sub-banner-content h1, .sub-banner-content h2 { font-size: 1.45rem; }
  .section-header h2, .section-head h2 { font-size: 1.35rem; }
  .logo { font-size: 1rem; }
  .logo-icon { width: 28px; height: 28px; }
}

/* Touch devices — disable custom cursor */
@media (hover: none) and (pointer: coarse) {
  body, a, button, .btn, .product-card, .hamburger,
  .back-to-top, .sticky-icon, .whatsapp-fab, .hotspot { cursor: auto !important; }
  .cursor-dot, .cursor-circle { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}



/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) { 
  .spc-intro-section, .spc-range-section, .spc-process-section,
  .spc-benefits-section, .spc-custom-section { padding: 64px 0; }
}
@media (max-width: 992px) {
  .sub-banner { padding: 90px 0; min-height: 55vh; }
  .stats-strip .container { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .stat-number { font-size: 1.9rem; }
  .spc-intro-layout, .spc-custom-layout { grid-template-columns: 1fr; gap: 32px; }
  .spc-intro-visual, .spc-custom-visual { max-width: 640px; margin: 0 auto; height: 340px; }
  .spc-grid { grid-template-columns: repeat(2, 1fr); }
  .spc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .spc-process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .spc-process-steps::before { display: none; }
  .hpf-sample-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  
  .sub-banner { padding: 70px 0; min-height: auto; }
  .sub-banner-tag { font-size: 0.6rem; padding: 6px 16px; letter-spacing: 1.5px; }
  .sub-banner-content h1 { font-size: 2rem; }
  .stats-strip { padding: 26px 0; }
  .stats-strip .container { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item:nth-child(5) { grid-column: 1 / -1; }
  .stat-number { font-size: 1.6rem; }
  .spc-intro-section, .spc-range-section, .spc-process-section,
  .spc-benefits-section, .spc-custom-section { padding: 52px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.75rem; }
  .spc-intro-visual { height: 300px; }
  .spc-intro-features, .spc-custom-list { grid-template-columns: 1fr; }
  .spc-grid { grid-template-columns: 1fr; }
  .spc-image { height: 180px; }
  .spc-benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .spc-process-steps { grid-template-columns: 1fr; gap: 20px; }
  .hpf-form-grid { grid-template-columns: 1fr; }
  .hpf-form-card { padding: 28px 22px; }
  .hpf-form-card::before { left: 22px; right: 22px; }
  .hpf-form-side h2 { font-size: 1.5rem; }
   
}
@media (max-width: 480px) { 
  .sub-banner { padding: 56px 0; }
  .sub-banner-tag { font-size: 0.55rem; padding: 5px 14px; letter-spacing: 1px; }
  .sub-banner-content h1 { font-size: 1.65rem; }
  .stat-number { font-size: 1.35rem; }
  .stat-label { font-size: 0.55rem; }
  .section-header { margin-bottom: 28px; }
  .section-header h2 { font-size: 1.5rem; }
  .section-header p { font-size: 0.82rem; }
  .spc-intro-visual { height: 260px; }
  .spc-intro-content h2, .spc-custom-content h2 { font-size: 1.4rem; }
  .spc-intro-content p, .spc-custom-content p { font-size: 0.82rem; }
  .spc-image { height: 160px; }
  .spc-body h5 { font-size: 1.15rem; }
  .spc-body p { font-size: 0.78rem; }
  .hpf-form-side h2 { font-size: 1.3rem; }
  .hpf-contact-item { font-size: 0.72rem; }
  .hpf-form-feature { font-size: 0.7rem; }
  .hpf-form-group input,
  .hpf-form-group select,
  .hpf-form-group textarea { padding: 9px 12px; font-size: 0.8rem; }
  .hpf-form-submit { padding: 11px 20px; font-size: 0.78rem; }
  .hpf-form-success .btn { width: 100%; } 
}



/* ===== SUB BANNER ===== */
.sub-banner { position: relative; padding: 110px 0; text-align: center; color: var(--white); overflow: hidden; isolation: isolate; min-height: 60vh; display: flex; align-items: center; }
.sub-banner-bg { position: absolute; inset: 0; background-size: cover; background-position: center 25%; z-index: 0; animation: slowZoom 22s ease-in-out infinite alternate; }
@keyframes slowZoom { from { transform: scale(1.05); } to { transform: scale(1.18); } }
.sub-banner-overlay { position: absolute; inset: 0; background: linear-gradient(160deg, rgba(13,26,8,0.55) 0%, rgba(109,47,30,0.45) 60%, rgba(61,26,10,0.50) 100%); z-index: 1; }
.sub-banner-content { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.sub-banner-tag { display: inline-block; background: var(--gold); color: var(--forest-dark); padding: 7px 22px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.sub-banner-content h1 { font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; margin-bottom: 0; letter-spacing: -1px; line-height: 1.1; }
.sub-banner-content h1 .accent { font-style: italic; color: var(--gold-light); }
 
/* ===== STATS STRIP ===== */
.stats-strip { background: var(--forest-dark); padding: 32px 0; border-bottom: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson)); }
.stats-strip .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; align-items: center; }
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.65rem; color: rgba(255,255,255,0.6); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 6px; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.63rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--crimson); margin-bottom: 14px; }
.section-tag::before, .section-tag::after { content: ''; width: 28px; height: 1.5px; background: var(--crimson); opacity: 0.3; }
.section-header h2 { font-family: var(--font-serif); font-size: clamp(1.2rem, 3.8vw, 2.8rem); font-weight: 700; color: var(--forest); line-height: 1.15; margin-bottom: 14px; letter-spacing: -0.5px; }
.section-header h2 .accent { font-style: italic; color: var(--crimson); }
.section-header p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.85; font-weight: 400; }

/* ===== INTRO / STORY (spc-intro-*) ===== */
.spc-intro-section { padding: 80px 0; background: var(--white); position: relative; }
.spc-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.spc-intro-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); height: 420px; position: relative; }
.spc-intro-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.spc-intro-visual:hover img { transform: scale(1.05); }
.spc-intro-visual .badge { position: absolute; bottom: 20px; left: 20px; background: var(--crimson); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; box-shadow: var(--shadow-md); z-index: 2; display: flex; align-items: center; gap: 8px; }
.spc-intro-visual .badge i { color: var(--gold); }
.spc-intro-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; }
.spc-intro-content h2 .accent { font-style: italic; color: var(--crimson); }
.spc-intro-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.spc-intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.spc-intro-feature { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--forest); background: var(--cream); padding: 8px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); transition: var(--transition-fast); }
.spc-intro-feature:hover { border-color: var(--gold); background: var(--gold-pale); }
.spc-intro-feature i { color: var(--crimson); font-size: 0.9rem; width: 20px; text-align: center; }

/* ===== SPICES RANGE (spc-*) ===== */
.spc-range-section { padding: 80px 0; background: linear-gradient(180deg, #f8f5f0 0%, #ede9e1 100%); position: relative; }
.spc-range-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.spc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.spc-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.spc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.spc-image { width: 100%; height: 200px; background-size: cover; background-position: center; position: relative; flex-shrink: 0; }
.spc-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent 40%, transparent 70%, rgba(0,0,0,0.2)); pointer-events: none; }
.spc-tag { position: absolute; bottom: 12px; right: 16px; background: rgba(255,255,255,0.9); color: var(--forest); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 20px; z-index: 2; box-shadow: var(--shadow-sm); }
.spc-body { padding: 18px 24px 20px; flex-grow: 1; }
.spc-body h5 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.spc-body .spc-subtitle { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.spc-body p { font-size: 0.85rem; color: var(--text-light); line-height: 1.7; margin-bottom: 8px; }
.spc-body .source { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.spc-footer { padding: 0 24px 24px; margin-top: auto; }
.spc-btn-small { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: var(--crimson); color: var(--white); border-radius: 50px; font-size: 0.75rem; font-weight: 600; transition: var(--transition-fast); border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(198,93,59,0.2); }
.spc-btn-small:hover { background: var(--gold); color: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(230,184,0,0.4); }

/* ===== SOURCING PROCESS (spc-process-*) ===== */
.spc-process-section { padding: 80px 0; background: var(--white); }
.spc-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.spc-process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson)); opacity: 0.25; z-index: 0; }
.spc-process-step { text-align: center; position: relative; z-index: 1; }
.spc-process-icon { width: 64px; height: 64px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 14px; box-shadow: var(--shadow-md); border: 2px solid var(--gold); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.spc-process-step:hover .spc-process-icon { background: var(--crimson); color: var(--gold); transform: scale(1.1); box-shadow: var(--shadow-lg); }
.spc-process-step h5 { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.spc-process-step p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; max-width: 220px; margin: 0 auto; }
.spc-step-number { display: inline-block; background: var(--crimson); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-bottom: 10px; letter-spacing: 0.5px; }

/* ===== BENEFITS (spc-benefit-*) ===== */
.spc-benefits-section { padding: 80px 0; background: var(--cream); }
.spc-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.spc-benefit-card { background: var(--white); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; border: 1px solid var(--border-light); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.spc-benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.spc-benefit-icon { width: 52px; height: 52px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--crimson); margin: 0 auto 12px; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.spc-benefit-card:hover .spc-benefit-icon { background: var(--crimson); color: var(--gold); transform: scale(1.06) rotate(-4deg); }
.spc-benefit-card h5 { font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.spc-benefit-card p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* ===== CUSTOM SOURCING (spc-custom-*) ===== */
.spc-custom-section { padding: 80px 0; background: var(--white); }
.spc-custom-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.spc-custom-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.spc-custom-visual img { width: 100%; height: 100%; object-fit: cover; }
.spc-custom-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 18px; }
.spc-custom-content h2 .accent { font-style: italic; color: var(--crimson); }
.spc-custom-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.spc-custom-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.spc-custom-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--forest); }
.spc-custom-item i { color: var(--crimson); font-size: 0.9rem; width: 20px; text-align: center; }
 


/* =========================================================
   COMMON SAMPLE REQUEST FORM (Reusable Component)
   Usage: <section class="cbs-form"> ... </section>
   All nested classes only apply inside .cbs-form
   ========================================================= */
.cbs-form {
  padding: 80px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cbs-form::before {
  content: '';
  position: absolute;
  top: -20%; left: -12%;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 184, 0, 0.07) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.cbs-form::after {
  content: '';
  position: absolute;
  bottom: -25%; right: -10%;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 93, 59, 0.06) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

/* Layout */
.cbs-form .form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 52px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Left side: info / benefits */
.cbs-form .form-side h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cbs-form .form-side h2 .accent { font-style: italic; color: var(--crimson); }
.cbs-form .form-side > p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 26px;
}

.cbs-form .form-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cbs-form .form-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.cbs-form .form-benefit i {
  width: 38px; height: 38px;
  flex-shrink: 0;
  border-radius: 50% 50% 50% 0;
  background: rgba(230, 184, 0, 0.14);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.cbs-form .form-benefit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 2px;
}
.cbs-form .form-benefit span {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: block;
}

/* Optional contact card variant (used on spices page) */
.cbs-form .contact-card {
  margin-top: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}
.cbs-form .contact-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--forest);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cbs-form .contact-card h4 i { color: var(--crimson); font-size: 0.9rem; }
.cbs-form .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.cbs-form .contact-item i {
  color: var(--crimson);
  font-size: 0.8rem;
  width: 18px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}
.cbs-form .contact-item span {
  line-height: 1.4;
  word-break: break-word;
}
.cbs-form .cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.cbs-form .cert-mini {
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  color: var(--forest);
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Feature list variant (small icon + text row) */
.cbs-form .form-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}
.cbs-form .form-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
}
.cbs-form .form-feature i {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* Right side: form card */
.cbs-form .form-card {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.cbs-form .form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 32px; right: 32px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}
.cbs-form .form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 4px;
}
.cbs-form .form-card > p {
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Grid + fields */
.cbs-form .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.cbs-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cbs-form .form-group.full { grid-column: 1 / -1; }
.cbs-form .form-group label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--forest);
}
.cbs-form .form-group label .req { color: var(--crimson); }
.cbs-form .form-group input,
.cbs-form .form-group select,
.cbs-form .form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  padding: 12px 15px;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: var(--transition-fast);
  width: 100%;
  outline: none;
}
.cbs-form .form-group textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.6;
}
.cbs-form .form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d4a1e' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 14px;
  padding-right: 38px;
  cursor: pointer;
}
.cbs-form .form-group input::placeholder,
.cbs-form .form-group textarea::placeholder {
  color: #a9a294;
  font-weight: 400;
}
.cbs-form .form-group input:focus,
.cbs-form .form-group select:focus,
.cbs-form .form-group textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 4px rgba(198, 93, 59, 0.09);
}

/* Checkbox */
.cbs-form .form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  cursor: pointer;
}
.cbs-form .form-check input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--crimson);
  cursor: pointer;
}

/* Submit + note */
.cbs-form .form-submit {
  width: 100%;
  margin-top: 6px;
}
.cbs-form .form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 14px;
  text-align: center;
}
.cbs-form .form-note i { color: var(--forest); font-size: 0.7rem; }

/* Success state */
.cbs-form .form-success {
  display: none;
  text-align: center;
  padding: 24px 8px;
}
.cbs-form .form-success.show {
  display: block;
  animation: cbsFadeUp 0.5s ease both;
}
@keyframes cbsFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.cbs-form .form-success-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50% 50% 50% 0;
  background: var(--forest);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 30px rgba(45, 74, 30, 0.25);
}
.cbs-form .form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.cbs-form .form-success p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 380px;
  margin: 0 auto 20px;
}
.cbs-form .form-success .btn { width: auto; }

/* Responsive */
@media (max-width: 1024px) {
  .cbs-form .form-layout { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .cbs-form { padding: 52px 0; }
  .cbs-form .form-grid { grid-template-columns: 1fr; }
  .cbs-form .form-card { padding: 28px 22px; }
  .cbs-form .form-card::before { left: 22px; right: 22px; }
  .cbs-form .form-side h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .cbs-form .form-side h2 { font-size: 1.3rem; }
  .cbs-form .form-card { padding: 22px 16px; border-radius: var(--radius-md); }
  .cbs-form .form-group input,
  .cbs-form .form-group select,
  .cbs-form .form-group textarea { padding: 9px 12px; font-size: 0.8rem; }
  .cbs-form .form-success .btn { width: 100%; }
}



/* ===== APPAREL PAGE — scoped under .apparel-page ===== */
.apparel-page .apr-category { padding: 80px 0; background: var(--white); border-bottom: 1px solid var(--border-light); }
.apparel-page .apr-category.alt { background: var(--cream); }
.apparel-page .apr-category-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.apparel-page .apr-category-grid.reverse { grid-template-columns: 1.1fr 0.9fr; }
.apparel-page .apr-category-grid.reverse .apr-category-visual { order: 2; }
.apparel-page .apr-category-grid.reverse .apr-category-info { order: 1; }
.apparel-page .apr-category-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: auto; position: relative; background: var(--cream-dark); }
.apparel-page .apr-category-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.apparel-page .apr-category-visual:hover img { transform: scale(1.06); }
.apparel-page .apr-badge { position: absolute; bottom: 20px; left: 20px; background: var(--crimson); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; box-shadow: var(--shadow-md); z-index: 2; display: flex; align-items: center; gap: 8px; }
.apparel-page .apr-badge i { color: var(--gold); }
.apparel-page .apr-heading { font-family: var(--font-serif); font-size: clamp(1.7rem, 2.8vw, 2.3rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 8px; letter-spacing: -0.5px; }
.apparel-page .apr-heading .accent { font-style: italic; color: var(--crimson); }
.apparel-page .apr-subtitle { font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.apparel-page .apr-category-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.9; margin-bottom: 14px; }
.apparel-page .apr-sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 18px 0; }
.apparel-page .apr-sub-item { display: flex; align-items: center; gap: 8px; font-size: 0.76rem; font-weight: 600; color: var(--forest); background: var(--off-white); padding: 8px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); transition: var(--transition-fast); }
.apparel-page .apr-sub-item:hover { border-color: var(--gold); background: var(--gold-pale); }
.apparel-page .apr-sub-item i { color: var(--crimson); font-size: 0.7rem; }
.apparel-page .apr-meta { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0; }
.apparel-page .apr-meta span { display: inline-flex; align-items: center; gap: 6px; font-size: 0.68rem; font-weight: 600; color: var(--text-muted); background: var(--white); padding: 6px 14px; border-radius: 50px; border: 1px solid var(--border-light); }
.apparel-page .apr-meta span i { color: var(--crimson); font-size: 0.6rem; }
.apparel-page .apr-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }

/* Sample strip */
.apparel-page .apr-sample { padding: 60px 0; background: linear-gradient(150deg, var(--forest-dark) 0%, var(--forest) 100%); position: relative; overflow: hidden; }
.apparel-page .apr-sample::before { content: ''; position: absolute; top: -40%; right: -8%; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(230,184,0,0.10) 0%, transparent 70%); }
.apparel-page .apr-sample-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.apparel-page .apr-sample-text { flex: 1 1 480px; }
.apparel-page .apr-sample-text .section-tag { color: var(--gold-light); }
.apparel-page .apr-sample-text .section-tag::before,
.apparel-page .apr-sample-text .section-tag::after { background: var(--gold-light); opacity: 0.4; }
.apparel-page .apr-sample-text h2 { font-family: var(--font-serif); font-size: clamp(1.7rem, 3vw, 2.3rem); font-weight: 700; color: var(--white); line-height: 1.2; margin-bottom: 12px; }
.apparel-page .apr-sample-text h2 .accent { font-style: italic; color: var(--gold-light); }
.apparel-page .apr-sample-text p { font-size: 0.88rem; color: rgba(255,255,255,0.72); line-height: 1.85; max-width: 620px; }
.apparel-page .apr-sample-btn { flex-shrink: 0; padding: 15px 32px; font-size: 0.82rem; }

/* Process */
.apparel-page .apr-process { padding: 80px 0; background: var(--cream); }
.apparel-page .apr-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.apparel-page .apr-timeline::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson)); opacity: 0.3; z-index: 1; }
.apparel-page .apr-timeline-step { text-align: center; position: relative; z-index: 2; }
.apparel-page .apr-timeline-icon { width: 64px; height: 64px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 12px; box-shadow: var(--shadow-md); border: 2px solid var(--gold); transition: var(--transition-fast); }
.apparel-page .apr-timeline-step:hover .apr-timeline-icon { background: var(--crimson); color: var(--gold); transform: scale(1.1); }
.apparel-page .apr-timeline-step h5 { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.apparel-page .apr-timeline-step p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.6; }

/* Fabric options */
.apparel-page .apr-fabric-options { padding: 80px 0; background: var(--white); }
.apparel-page .apr-fabric-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.apparel-page .apr-fabric-card { background: var(--off-white); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); cursor: pointer; }
.apparel-page .apr-fabric-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.apparel-page .apr-fabric-icon { width: 48px; height: 48px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--crimson); margin: 0 auto 10px; transition: var(--transition-fast); }
.apparel-page .apr-fabric-card:hover .apr-fabric-icon { background: var(--crimson); color: var(--gold); }
.apparel-page .apr-fabric-card h5 { font-family: var(--font-serif); font-size: 0.82rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.apparel-page .apr-fabric-card p { font-size: 0.66rem; color: var(--text-muted); line-height: 1.5; }

/* Quality */
.apparel-page .apr-quality { padding: 80px 0; background: var(--cream); }
.apparel-page .apr-quality-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.apparel-page .apr-quality-card { background: var(--white); border-radius: var(--radius-md); padding: 26px 20px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.apparel-page .apr-quality-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.apparel-page .apr-quality-card i { font-size: 1.6rem; color: var(--crimson); margin-bottom: 12px; display: block; }
.apparel-page .apr-quality-card h5 { font-family: var(--font-serif); font-size: 0.88rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.apparel-page .apr-quality-card p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.6; }

/* Certifications */
.apparel-page .apr-certs { padding: 60px 0; background: var(--white); border-bottom: 1px solid var(--border-light); }
.apparel-page .apr-certs-grid { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.apparel-page .apr-cert-card { display: flex; align-items: center; gap: 12px; background: var(--off-white); padding: 14px 22px; border-radius: 50px; box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition-fast); }
.apparel-page .apr-cert-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.apparel-page .apr-cert-card i { font-size: 1.3rem; color: var(--crimson); }
.apparel-page .apr-cert-name { font-size: 0.72rem; font-weight: 700; color: var(--forest); }
.apparel-page .apr-cert-sub { font-size: 0.6rem; color: var(--text-muted); }

/* Testimonials */
.apparel-page .apr-testimonials { padding: 80px 0; background: var(--cream); }
.apparel-page .apr-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.apparel-page .apr-testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 26px 22px; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.apparel-page .apr-testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.apparel-page .apr-testimonial-stars { display: flex; gap: 3px; margin-bottom: 10px; }
.apparel-page .apr-testimonial-stars i { color: var(--gold); font-size: 0.7rem; }
.apparel-page .apr-testimonial-quote { font-size: 0.82rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; font-style: italic; }
.apparel-page .apr-testimonial-author { display: flex; align-items: center; gap: 10px; }
.apparel-page .apr-testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--forest); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.apparel-page .apr-testimonial-info h6 { font-size: 0.75rem; font-weight: 700; color: var(--forest); }
.apparel-page .apr-testimonial-info span { font-size: 0.62rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 1024px) {
  .apparel-page .apr-category-grid { grid-template-columns: 1fr; gap: 32px; }
  .apparel-page .apr-category-grid.reverse .apr-category-visual { order: 1; }
  .apparel-page .apr-category-grid.reverse .apr-category-info { order: 2; }
  .apparel-page .apr-category-visual { height: 320px; }
  .apparel-page .apr-timeline { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .apparel-page .apr-timeline::before { display: none; }
  .apparel-page .apr-fabric-grid { grid-template-columns: repeat(3, 1fr); }
  .apparel-page .apr-quality-grid { grid-template-columns: repeat(2, 1fr); }
  .apparel-page .apr-testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .apparel-page .apr-timeline { grid-template-columns: 1fr 1fr; gap: 20px; }
  .apparel-page .apr-fabric-grid { grid-template-columns: repeat(2, 1fr); }
  .apparel-page .apr-testimonials-grid { grid-template-columns: 1fr; }
  .apparel-page .apr-category-visual { height: 250px; }
  .apparel-page .apr-sub-grid { grid-template-columns: 1fr; }
  .apparel-page .apr-sample-inner { flex-direction: column; align-items: flex-start; }
  .apparel-page .apr-sample-btn { width: 100%; }
}
@media (max-width: 480px) {
  .apparel-page .apr-timeline { grid-template-columns: 1fr; }
  .apparel-page .apr-fabric-grid { grid-template-columns: 1fr; }
  .apparel-page .apr-quality-grid { grid-template-columns: 1fr; }
}






/* =========================================================
   AYURVASTRA PAGE — scoped under .ayur-page
   ========================================================= */
.ayur-page { font-family: var(--font-sans); color: var(--text); background: var(--off-white); line-height: 1.7; overflow-x: hidden; }

/* ===== INTRO ===== */
.ayur-page .ayr-intro-section { padding: 80px 0; background: var(--white); position: relative; }
.ayur-page .ayr-intro-section::before { content: ''; position: absolute; top: 0; right: 0; width: 350px; height: 350px; background: radial-gradient(circle, rgba(230,184,0,0.04) 0%, transparent 70%); pointer-events: none; }
.ayur-page .ayr-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ayur-page .ayr-intro-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); height: 420px; position: relative; }
.ayur-page .ayr-intro-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.ayur-page .ayr-intro-visual:hover img { transform: scale(1.05); }
.ayur-page .ayr-intro-visual .ayr-badge { position: absolute; bottom: 20px; left: 20px; background: var(--crimson); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; box-shadow: var(--shadow-md); z-index: 2; display: flex; align-items: center; gap: 8px; }
.ayur-page .ayr-intro-visual .ayr-badge i { color: var(--gold); }
.ayur-page .ayr-intro-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; }
.ayur-page .ayr-intro-content h2 .accent { font-style: italic; color: var(--crimson); }
.ayur-page .ayr-intro-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.ayur-page .ayr-intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.ayur-page .ayr-intro-feature { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--forest); background: var(--cream); padding: 8px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); transition: var(--transition-fast); }
.ayur-page .ayr-intro-feature:hover { border-color: var(--gold); background: var(--gold-pale); }
.ayur-page .ayr-intro-feature i { color: var(--crimson); font-size: 0.9rem; width: 20px; text-align: center; }




/* =========================================================
   COMMON HERBS — EDITORIAL CATALOGUE (Professional)
   ========================================================= */
.ayur-page .ayr-herbs-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #fbf9f5 0%, #f4f0e8 100%);
  position: relative;
}
.ayur-page .ayr-herbs-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* Catalog wrapper */
.ayur-page .ayr-herb-catalog {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid var(--border-light);
}

/* Header row */
.ayur-page .ayr-herb-head {
  display: grid;
  grid-template-columns: 60px 64px minmax(180px, 1.1fr) minmax(160px, 0.9fr) minmax(240px, 1.5fr);
  gap: 24px;
  padding: 18px 4px 14px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-light);
}
.ayur-page .ayr-herb-head-num { text-align: center; }
.ayur-page .ayr-herb-head-swatch { text-align: center; }
.ayur-page .ayr-herb-head-name,
.ayur-page .ayr-herb-head-tone { text-align: left; }
.ayur-page .ayr-herb-head-tags { text-align: left; }

/* Rows */
.ayur-page .ayr-herb-row {
  display: grid;
  grid-template-columns: 60px 64px minmax(180px, 1.1fr) minmax(160px, 0.9fr) minmax(240px, 1.5fr);
  gap: 24px;
  align-items: center;
  padding: 22px 4px;
  border-bottom: 1px solid var(--border-light);
  position: relative;
  transition: background 0.4s ease, padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.ayur-page .ayr-herb-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--herb, var(--crimson));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ayur-page .ayr-herb-row:hover {
  background: var(--herb-soft, var(--cream));
  padding-left: 20px;
}
.ayur-page .ayr-herb-row:hover::before {
  transform: scaleY(1);
}

/* Number */
.ayur-page .ayr-herb-row-num {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-align: center;
  transition: color 0.4s ease;
}
.ayur-page .ayr-herb-row:hover .ayr-herb-row-num {
  color: var(--herb, var(--forest));
}

/* Swatch */
.ayur-page .ayr-herb-row-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ayur-page .ayr-herb-row-swatch span {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--herb, var(--gold));
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 0 4px var(--white),
    inset 0 0 0 5.5px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  position: relative;
}
.ayur-page .ayr-herb-row-swatch span::after {
  content: '';
  position: absolute;
  top: 25%;
  left: 25%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  filter: blur(2px);
}
.ayur-page .ayr-herb-row:hover .ayr-herb-row-swatch span {
  transform: scale(1.14) rotate(-8deg);
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.14),
    inset 0 0 0 4px var(--white),
    inset 0 0 0 5.5px rgba(0, 0, 0, 0.05);
}

/* Name */
.ayur-page .ayr-herb-row-name h4 {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.2px;
  line-height: 1.2;
  margin-bottom: 3px;
  transition: color 0.4s ease;
}
.ayur-page .ayr-herb-row:hover .ayr-herb-row-name h4 {
  color: var(--herb, var(--forest));
}
.ayur-page .ayr-herb-row-name em {
  display: block;
  font-family: var(--font-serif2);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.2px;
  font-weight: 500;
}

/* Tone */
.ayur-page .ayr-herb-row-tone {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.2px;
}

/* Tags */
.ayur-page .ayr-herb-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.ayur-page .ayr-herb-row-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--forest);
  background: var(--white);
  padding: 5px 11px;
  border-radius: 50px;
  border: 1px solid var(--border-light);
  transition: all 0.35s ease;
}
.ayur-page .ayr-herb-row-tags span i {
  font-size: 0.55rem;
  color: var(--herb, var(--crimson));
}
.ayur-page .ayr-herb-row:hover .ayr-herb-row-tags span {
  background: var(--white);
  border-color: var(--herb, var(--gold));
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* CTA */
.ayur-page .ayr-herbs-cta {
  text-align: center;
  margin-top: 56px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 992px) {
  .ayur-page .ayr-herbs-section { padding: 72px 0; }
  .ayur-page .ayr-herb-head { display: none; }
  .ayur-page .ayr-herb-row {
    grid-template-columns: 48px 56px 1fr;
    grid-template-rows: auto auto auto;
    gap: 14px 16px;
    padding: 20px 4px;
  }
  .ayur-page .ayr-herb-row-num { grid-row: 1 / 4; align-self: start; padding-top: 8px; }
  .ayur-page .ayr-herb-row-swatch { grid-row: 1 / 4; align-self: start; padding-top: 4px; }
  .ayur-page .ayr-herb-row-name { grid-column: 3; }
  .ayur-page .ayr-herb-row-tone { grid-column: 3; font-size: 0.76rem; }
  .ayur-page .ayr-herb-row-tags { grid-column: 3; }
  .ayur-page .ayr-herb-row:hover { padding-left: 16px; }
}
@media (max-width: 480px) {
  .ayur-page .ayr-herbs-section { padding: 56px 0; }
  .ayur-page .ayr-herb-row {
    grid-template-columns: 40px 46px 1fr;
    gap: 12px 12px;
    padding: 18px 2px;
  }
  .ayur-page .ayr-herb-row-swatch span { width: 34px; height: 34px; }
  .ayur-page .ayr-herb-row-name h4 { font-size: 1rem; }
  .ayur-page .ayr-herb-row-name em { font-size: 0.74rem; }
  .ayur-page .ayr-herb-row-tags span { font-size: 0.6rem; padding: 4px 9px; }
}




/* ===== PROCESS ===== */
.ayur-page .ayr-process-section { padding: 80px 0; background: var(--white); position: relative; }
.ayur-page .ayr-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.ayur-page .ayr-process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson)); opacity: 0.25; z-index: 0; }
.ayur-page .ayr-process-step { text-align: center; position: relative; z-index: 1; }
.ayur-page .ayr-process-icon { width: 64px; height: 64px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 14px; box-shadow: var(--shadow-md); border: 2px solid var(--gold); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; }
.ayur-page .ayr-process-icon::after { content: ''; position: absolute; inset: -8px; border-radius: 50%; border: 1px dashed var(--gold); opacity: 0; transition: opacity 0.3s ease; }
.ayur-page .ayr-process-step:hover .ayr-process-icon { background: var(--crimson); color: var(--gold); transform: scale(1.1); box-shadow: var(--shadow-lg); }
.ayur-page .ayr-process-step:hover .ayr-process-icon::after { opacity: 1; animation: ayrSpin 20s linear infinite; }
@keyframes ayrSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.ayur-page .ayr-process-step h5 { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.ayur-page .ayr-process-step p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; max-width: 220px; margin: 0 auto; }
.ayur-page .ayr-step-number { display: inline-block; background: var(--crimson); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-bottom: 10px; letter-spacing: 0.5px; }

/* ===== BENEFITS ===== */
.ayur-page .ayr-benefits-section { padding: 80px 0; background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); }
.ayur-page .ayr-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ayur-page .ayr-benefit-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; border: 1px solid var(--border-light); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; overflow: hidden; }
.ayur-page .ayr-benefit-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 100px; height: 100px; border-radius: 50%; background: rgba(230,184,0,0.06); transition: transform 0.4s ease; }
.ayur-page .ayr-benefit-card:hover::after { transform: scale(3); }
.ayur-page .ayr-benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.ayur-page .ayr-benefit-icon { width: 58px; height: 58px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 12px; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; z-index: 1; }
.ayur-page .ayr-benefit-card:hover .ayr-benefit-icon { background: var(--crimson); color: var(--gold); transform: scale(1.06) rotate(-4deg); }
.ayur-page .ayr-benefit-card h5 { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; position: relative; z-index: 1; }
.ayur-page .ayr-benefit-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; position: relative; z-index: 1; }

/* ===== HISTORY ===== */
.ayur-page .ayr-history-section { padding: 80px 0; background: var(--white); }
.ayur-page .ayr-history-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.ayur-page .ayr-history-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.ayur-page .ayr-history-visual img { width: 100%; height: 100%; object-fit: cover; }
.ayur-page .ayr-history-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 18px; }
.ayur-page .ayr-history-content h2 .accent { font-style: italic; color: var(--crimson); }
.ayur-page .ayr-history-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }

/* ===== CARE ===== */
.ayur-page .ayr-care-section { padding: 80px 0; background: var(--cream); }
.ayur-page .ayr-care-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ayur-page .ayr-care-card { background: var(--white); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.ayur-page .ayr-care-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.ayur-page .ayr-care-card i { font-size: 1.5rem; color: var(--crimson); margin-bottom: 10px; }
.ayur-page .ayr-care-card h5 { font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.ayur-page .ayr-care-card p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* ===== REFERENCE ===== */
.ayur-page .ayr-reference-section { padding: 60px 0; background: var(--white); }
.ayur-page .ayr-reference-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.ayur-page .ayr-reference-card { display: flex; align-items: center; gap: 16px; background: var(--off-white); padding: 22px; border-radius: var(--radius-md); border: 1px solid var(--border-light); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.ayur-page .ayr-reference-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); background: var(--gold-pale); }
.ayur-page .ayr-ref-icon { width: 48px; height: 48px; background: var(--crimson); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); flex-shrink: 0; transition: var(--transition-fast); }
.ayur-page .ayr-reference-card:hover .ayr-ref-icon { background: var(--gold); color: var(--crimson); transform: rotate(360deg); }
.ayur-page .ayr-reference-card h5 { font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.ayur-page .ayr-reference-card p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .ayur-page .ayr-intro-section,
  .ayur-page .ayr-herbs-section,
  .ayur-page .ayr-process-section,
  .ayur-page .ayr-benefits-section,
  .ayur-page .ayr-history-section,
  .ayur-page .ayr-care-section { padding: 64px 0; }
}
@media (max-width: 992px) {
  .ayur-page .ayr-intro-layout { grid-template-columns: 1fr; gap: 32px; }
  .ayur-page .ayr-intro-visual { max-width: 640px; margin: 0 auto; }
  .ayur-page .ayr-history-layout { grid-template-columns: 1fr; gap: 32px; }
  .ayur-page .ayr-history-visual { max-width: 640px; margin: 0 auto; height: 320px; }
  .ayur-page .ayr-herbs-grid { grid-template-columns: repeat(3, 1fr); }
  .ayur-page .ayr-process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .ayur-page .ayr-process-steps::before { display: none; }
  .ayur-page .ayr-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .ayur-page .ayr-care-grid { grid-template-columns: repeat(2, 1fr); }
  .ayur-page .ayr-reference-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .ayur-page .ayr-intro-section,
  .ayur-page .ayr-herbs-section,
  .ayur-page .ayr-process-section,
  .ayur-page .ayr-benefits-section,
  .ayur-page .ayr-history-section,
  .ayur-page .ayr-care-section { padding: 52px 0; }
  .ayur-page .ayr-intro-visual { height: 300px; }
  .ayur-page .ayr-intro-features { grid-template-columns: 1fr; }
  .ayur-page .ayr-herbs-grid { grid-template-columns: 1fr 1fr; }
  .ayur-page .ayr-process-steps { grid-template-columns: 1fr; gap: 20px; }
  .ayur-page .ayr-benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .ayur-page .ayr-care-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ayur-page .ayr-intro-visual { height: 260px; }
  .ayur-page .ayr-herbs-grid { grid-template-columns: 1fr; }
  .ayur-page .ayr-process-icon { width: 54px; height: 54px; font-size: 1.2rem; }
}










/* ===== INTRO ===== */
.incense-page .inc-intro-section { padding: 80px 0; background: var(--white); }
.incense-page .inc-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.incense-page .inc-intro-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; position: relative; }
.incense-page .inc-intro-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.incense-page .inc-intro-visual:hover img { transform: scale(1.05); }
.incense-page .inc-intro-visual .inc-badge { position: absolute; bottom: 20px; left: 20px; background: var(--crimson); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; box-shadow: var(--shadow-md); z-index: 2; display: flex; align-items: center; gap: 8px; }
.incense-page .inc-intro-visual .inc-badge i { color: var(--gold); }
.incense-page .inc-intro-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; }
.incense-page .inc-intro-content h2 .accent { font-style: italic; color: var(--crimson); }
.incense-page .inc-intro-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.incense-page .inc-intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 22px; }
.incense-page .inc-intro-feature { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--forest); }
.incense-page .inc-intro-feature i { color: var(--crimson); font-size: 0.9rem; width: 20px; text-align: center; }

/* ===== INGREDIENTS ===== */
.incense-page .inc-ingredients-section { padding: 80px 0; background: var(--cream); }
.incense-page .inc-ingredients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.incense-page .inc-ingredient-card { background: var(--white); border-radius: var(--radius-md); padding: 24px 18px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.incense-page .inc-ingredient-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.incense-page .inc-ingredient-icon { width: 48px; height: 48px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--crimson); margin: 0 auto 10px; transition: var(--transition-fast); }
.incense-page .inc-ingredient-card:hover .inc-ingredient-icon { background: var(--crimson); color: var(--gold); }
.incense-page .inc-ingredient-card h5 { font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.incense-page .inc-ingredient-card p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; }

/* ===== SCENT COLLECTION ===== */
.incense-page .inc-scent-section { padding: 80px 0; background: var(--white); }
.incense-page .inc-scent-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.incense-page .inc-scent-card { background: var(--off-white); border-radius: var(--radius-md); padding: 20px 12px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.incense-page .inc-scent-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.incense-page .inc-scent-card i { font-size: 1.6rem; color: var(--crimson); margin-bottom: 8px; }
.incense-page .inc-scent-card h5 { font-family: var(--font-serif); font-size: 0.8rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.incense-page .inc-scent-card p { font-size: 0.65rem; color: var(--text-muted); line-height: 1.4; }

/* ===== BENEFITS ===== */
.incense-page .inc-benefits-section { padding: 80px 0; background: var(--cream); }
.incense-page .inc-benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.incense-page .inc-benefit-card { background: var(--white); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.incense-page .inc-benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.incense-page .inc-benefit-icon { width: 58px; height: 58px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 12px; transition: var(--transition-fast); }
.incense-page .inc-benefit-card:hover .inc-benefit-icon { background: var(--crimson); color: var(--gold); transform: scale(1.06) rotate(-4deg); }
.incense-page .inc-benefit-card h5 { font-family: var(--font-serif); font-size: 0.95rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.incense-page .inc-benefit-card p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ===== PROCESS ===== */
.incense-page .inc-process-section { padding: 80px 0; background: var(--white); }
.incense-page .inc-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.incense-page .inc-process-step { text-align: center; }
.incense-page .inc-process-icon { width: 64px; height: 64px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 12px; box-shadow: var(--shadow-md); border: 2px solid var(--gold); transition: var(--transition-fast); }
.incense-page .inc-process-step:hover .inc-process-icon { background: var(--crimson); color: var(--gold); transform: scale(1.1); box-shadow: var(--shadow-lg); }
.incense-page .inc-process-step h5 { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.incense-page .inc-process-step p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.5; }
.incense-page { font-family: var(--font-sans); color: var(--text); background: var(--off-white); line-height: 1.7; overflow-x: hidden; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .incense-page .inc-intro-section { padding: 70px 0; }
  .incense-page .inc-ingredients-section,
  .incense-page .inc-scent-section,
  .incense-page .inc-benefits-section,
  .incense-page .inc-process-section { padding: 64px 0; }
}
@media (max-width: 992px) {
  .incense-page .inc-intro-layout { grid-template-columns: 1fr; gap: 32px; }
  .incense-page .inc-intro-visual { max-width: 640px; margin: 0 auto; height: 340px; }
  .incense-page .inc-ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .incense-page .inc-scent-grid { grid-template-columns: repeat(3, 1fr); }
  .incense-page .inc-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .incense-page .inc-process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 768px) {
  .incense-page .inc-intro-section { padding: 56px 0; }
  .incense-page .inc-ingredients-section,
  .incense-page .inc-scent-section,
  .incense-page .inc-benefits-section,
  .incense-page .inc-process-section { padding: 52px 0; }
  .incense-page .inc-intro-visual { height: 280px; }
  .incense-page .inc-intro-features { grid-template-columns: 1fr; }
  .incense-page .inc-ingredients-grid { grid-template-columns: 1fr; gap: 16px; }
  .incense-page .inc-scent-grid { grid-template-columns: 1fr 1fr; }
  .incense-page .inc-benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .incense-page .inc-process-steps { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .incense-page .inc-intro-visual { height: 240px; }
  .incense-page .inc-intro-content h2 { font-size: 1.4rem; }
  .incense-page .inc-intro-content p { font-size: 0.82rem; }
  .incense-page .inc-scent-grid { grid-template-columns: 1fr; }
  .incense-page .inc-ingredient-card,
  .incense-page .inc-benefit-card { padding: 22px 16px; }
  .incense-page .inc-ingredient-icon,
  .incense-page .inc-benefit-icon { width: 48px; height: 48px; font-size: 1.2rem; }
  .incense-page .inc-process-icon { width: 54px; height: 54px; font-size: 1.2rem; }
}


/* =========================================================
   VEGETABLE DYES PAGE — scoped under .dyes-page
   ========================================================= */
.dyes-page { font-family: var(--font-sans); color: var(--text); background: var(--off-white); line-height: 1.7; overflow-x: hidden; }

/* ===== INTRO ===== */
.dyes-page .dye-intro-section { padding: 80px 0; background: var(--white); position: relative; }
.dyes-page .dye-intro-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dyes-page .dye-intro-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); height: 420px; position: relative; }
.dyes-page .dye-intro-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.dyes-page .dye-intro-visual:hover img { transform: scale(1.05); }
.dyes-page .dye-intro-visual .dye-badge { position: absolute; bottom: 20px; left: 20px; background: var(--crimson); color: var(--white); padding: 12px 20px; border-radius: var(--radius-sm); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; box-shadow: var(--shadow-md); z-index: 2; display: flex; align-items: center; gap: 8px; }
.dyes-page .dye-intro-visual .dye-badge i { color: var(--gold); }
.dyes-page .dye-intro-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 18px; letter-spacing: -0.5px; }
.dyes-page .dye-intro-content h2 .accent { font-style: italic; color: var(--crimson); }
.dyes-page .dye-intro-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.dyes-page .dye-intro-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.dyes-page .dye-intro-feature { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--forest); background: var(--cream); padding: 8px 14px; border-radius: var(--radius-sm); border: 1px solid var(--border-light); transition: var(--transition-fast); }
.dyes-page .dye-intro-feature:hover { border-color: var(--gold); background: var(--gold-pale); }
.dyes-page .dye-intro-feature i { color: var(--crimson); font-size: 0.9rem; width: 20px; text-align: center; }

/* ===== DYES RANGE ===== */
.dyes-page .dye-range-section { padding: 80px 0; background: linear-gradient(180deg, #f8f5f0 0%, #ede9e1 100%); position: relative; }
.dyes-page .dye-range-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.dyes-page .dye-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.dyes-page .dye-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); position: relative; box-shadow: 0 4px 15px rgba(0,0,0,0.03); display: flex; flex-direction: column; }
.dyes-page .dye-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--gold); }
.dyes-page .dye-card-header { position: relative; }
.dyes-page .dye-image { width: 100%; height: 180px; background-size: cover; background-position: center; position: relative; transition: transform 0.4s ease; }
.dyes-page .dye-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.1), transparent 40%, transparent 70%, rgba(0,0,0,0.2)); pointer-events: none; }
.dyes-page .dye-card:hover .dye-image { transform: scale(1.05); }
.dyes-page .dye-swatch-label { position: absolute; bottom: 12px; right: 16px; background: rgba(255,255,255,0.9); color: var(--forest); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px; padding: 4px 10px; border-radius: 20px; z-index: 2; box-shadow: var(--shadow-sm); }
.dyes-page .dye-title-group { padding: 18px 24px 0; }
.dyes-page .dye-title-group h5 { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--forest); margin-bottom: 4px; }
.dyes-page .dye-title-group .dye-subtitle { font-size: 0.78rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 0; }
.dyes-page .dye-card-body { padding: 12px 24px 20px; flex-grow: 1; }
.dyes-page .dye-card-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 10px; }
.dyes-page .dye-card-body .source { font-size: 0.75rem; color: var(--text-muted); font-style: italic; margin-bottom: 0; display: flex; align-items: center; gap: 6px; }
.dyes-page .dye-card-footer { padding: 0 24px 24px; margin-top: auto; }
.dyes-page .dye-btn-small { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; background: var(--crimson); color: var(--white); border-radius: 50px; font-size: 0.75rem; font-weight: 600; transition: var(--transition-fast); border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(198,93,59,0.2); }
.dyes-page .dye-btn-small:hover { background: var(--gold); color: var(--forest-dark); transform: translateY(-2px); box-shadow: 0 6px 16px rgba(230,184,0,0.4); }

/* ===== BENEFITS ===== */
.dyes-page .dye-benefits-section { padding: 80px 0; background: var(--white); }
.dyes-page .dye-benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.dyes-page .dye-benefit-card { background: var(--off-white); border-radius: var(--radius-md); padding: 24px 16px; text-align: center; border: 1px solid var(--border-light); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.dyes-page .dye-benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.dyes-page .dye-benefit-icon { width: 52px; height: 52px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--crimson); margin: 0 auto 12px; transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.dyes-page .dye-benefit-card:hover .dye-benefit-icon { background: var(--crimson); color: var(--gold); transform: scale(1.06) rotate(-4deg); }
.dyes-page .dye-benefit-card h5 { font-family: var(--font-serif); font-size: 0.9rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.dyes-page .dye-benefit-card p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; }

/* ===== PROCESS ===== */
.dyes-page .dye-process-section { padding: 80px 0; background: var(--cream); }
.dyes-page .dye-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.dyes-page .dye-process-steps::before { content: ''; position: absolute; top: 32px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg, var(--crimson), var(--gold), var(--crimson)); opacity: 0.25; z-index: 0; }
.dyes-page .dye-process-step { text-align: center; position: relative; z-index: 1; }
.dyes-page .dye-process-icon { width: 64px; height: 64px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 14px; box-shadow: var(--shadow-md); border: 2px solid var(--gold); transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.dyes-page .dye-process-step:hover .dye-process-icon { background: var(--crimson); color: var(--gold); transform: scale(1.1); box-shadow: var(--shadow-lg); }
.dyes-page .dye-process-step h5 { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--forest); margin-bottom: 6px; }
.dyes-page .dye-process-step p { font-size: 0.72rem; color: var(--text-muted); line-height: 1.5; max-width: 220px; margin: 0 auto; }
.dyes-page .dye-step-number { display: inline-block; background: var(--crimson); color: var(--white); font-size: 0.65rem; font-weight: 700; padding: 2px 10px; border-radius: 50px; margin-bottom: 10px; letter-spacing: 0.5px; }

/* ===== CUSTOM DYEING ===== */
.dyes-page .dye-custom-section { padding: 80px 0; background: var(--white); }
.dyes-page .dye-custom-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dyes-page .dye-custom-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 400px; }
.dyes-page .dye-custom-visual img { width: 100%; height: 100%; object-fit: cover; }
.dyes-page .dye-custom-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 18px; }
.dyes-page .dye-custom-content h2 .accent { font-style: italic; color: var(--crimson); }
.dyes-page .dye-custom-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.9; margin-bottom: 16px; }
.dyes-page .dye-custom-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 22px; }
.dyes-page .dye-custom-item { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; color: var(--forest); }
.dyes-page .dye-custom-item i { color: var(--crimson); font-size: 0.9rem; width: 20px; text-align: center; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .dyes-page .dye-intro-section,
  .dyes-page .dye-range-section,
  .dyes-page .dye-benefits-section,
  .dyes-page .dye-process-section,
  .dyes-page .dye-custom-section { padding: 64px 0; }
}
@media (max-width: 992px) {
  .dyes-page .dye-intro-layout,
  .dyes-page .dye-custom-layout { grid-template-columns: 1fr; gap: 32px; }
  .dyes-page .dye-intro-visual,
  .dyes-page .dye-custom-visual { max-width: 640px; margin: 0 auto; height: 340px; }
  .dyes-page .dye-grid { grid-template-columns: 1fr; }
  .dyes-page .dye-image { height: 150px; }
  .dyes-page .dye-benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .dyes-page .dye-process-steps { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .dyes-page .dye-process-steps::before { display: none; }
}
@media (max-width: 768px) {
  .dyes-page .dye-intro-section,
  .dyes-page .dye-range-section,
  .dyes-page .dye-benefits-section,
  .dyes-page .dye-process-section,
  .dyes-page .dye-custom-section { padding: 52px 0; }
  .dyes-page .dye-intro-visual { height: 280px; }
  .dyes-page .dye-intro-features,
  .dyes-page .dye-custom-list { grid-template-columns: 1fr; }
  .dyes-page .dye-grid { grid-template-columns: 1fr; }
  .dyes-page .dye-image { height: 140px; }
  .dyes-page .dye-benefits-grid { grid-template-columns: 1fr; gap: 18px; }
  .dyes-page .dye-process-steps { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .dyes-page .dye-intro-visual,
  .dyes-page .dye-custom-visual { height: 240px; }
  .dyes-page .dye-intro-content h2,
  .dyes-page .dye-custom-content h2 { font-size: 1.4rem; }
  .dyes-page .dye-intro-content p,
  .dyes-page .dye-custom-content p { font-size: 0.82rem; }
  .dyes-page .dye-image { height: 120px; }
  .dyes-page .dye-title-group h5 { font-size: 1.15rem; }
  .dyes-page .dye-card-body p { font-size: 0.8rem; }
}


/* =========================================================
   SOAP NUTS PAGE — scoped under .soapnuts-page
   ========================================================= */
.soapnuts-page { font-family: var(--font-sans); color: var(--text); background: var(--off-white); line-height: 1.7; overflow-x: hidden; }

/* ===== SCIENCE SECTION ===== */
.soapnuts-page .sn-science-section { padding: 90px 0; background: var(--cream); }
.soapnuts-page .sn-science-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: center; }
.soapnuts-page .sn-science-visual { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: auto; position: relative; }
.soapnuts-page .sn-science-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.soapnuts-page .sn-science-visual:hover img { transform: scale(1.04); }
.soapnuts-page .sn-science-content h2 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--forest); line-height: 1.2; margin-bottom: 14px; letter-spacing: -0.5px; }
.soapnuts-page .sn-science-content h2 .accent { font-style: italic; color: var(--crimson); }
.soapnuts-page .sn-science-content .lead { font-size: 0.95rem; color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }
.soapnuts-page .sn-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 20px; }
.soapnuts-page .sn-point { display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px; background: var(--white); border-radius: var(--radius-sm); border: 1px solid var(--border-light); transition: var(--transition-fast); }
.soapnuts-page .sn-point:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.soapnuts-page .sn-point-icon { width: 36px; height: 36px; border-radius: 50%; background: rgba(230,184,0,0.12); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--crimson); flex-shrink: 0; margin-top: 2px; }
.soapnuts-page .sn-point-text h5 { font-family: var(--font-serif); font-size: 0.85rem; font-weight: 700; color: var(--forest); margin-bottom: 2px; }
.soapnuts-page .sn-point-text p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }

/* ===== ORGANIC CARE ===== */
.soapnuts-page .sn-care-section { padding: 80px 0; background: var(--white); }
.soapnuts-page .sn-care-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.soapnuts-page .sn-care-card { background: var(--off-white); border-radius: var(--radius-md); padding: 28px 22px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.soapnuts-page .sn-care-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.soapnuts-page .sn-care-icon { width: 62px; height: 62px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--crimson); margin: 0 auto 14px; transition: var(--transition-fast); }
.soapnuts-page .sn-care-card:hover .sn-care-icon { background: var(--crimson); color: var(--gold); transform: scale(1.06) rotate(-4deg); }
.soapnuts-page .sn-care-card h5 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.soapnuts-page .sn-care-card p { font-size: 0.78rem; color: var(--text-light); line-height: 1.7; }

/* ===== PRODUCT FORMS ===== */
.soapnuts-page .sn-forms-section { padding: 80px 0; background: var(--cream); }
.soapnuts-page .sn-forms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.soapnuts-page .sn-form-card { background: var(--white); border-radius: var(--radius-md); padding: 32px 22px; text-align: center; border: 1px solid var(--border-light); transition: var(--transition-fast); }
.soapnuts-page .sn-form-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.soapnuts-page .sn-form-icon { width: 58px; height: 58px; background: rgba(230,184,0,0.12); border-radius: 50% 50% 50% 0; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--crimson); margin: 0 auto 14px; transition: var(--transition-fast); }
.soapnuts-page .sn-form-card:hover .sn-form-icon { background: var(--crimson); color: var(--gold); transform: scale(1.06) rotate(-4deg); }
.soapnuts-page .sn-form-card h5 { font-family: var(--font-serif); font-size: 1rem; font-weight: 700; color: var(--forest); margin-bottom: 8px; }
.soapnuts-page .sn-form-card p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.6; }
.soapnuts-page .sn-forms-cta { text-align: center; margin-top: 48px; }

/* ===== LAUNDRY DETAIL ===== */
.soapnuts-page .sn-laundry-section { padding: 80px 0; background: var(--white); }
.soapnuts-page .sn-laundry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.soapnuts-page .sn-laundry-card { background: var(--off-white); border-radius: var(--radius-md); padding: 28px 24px; border: 1px solid var(--border-light); box-shadow: var(--shadow-sm); }
.soapnuts-page .sn-laundry-card h3 { font-family: var(--font-serif); color: var(--forest); font-size: 1.3rem; margin-bottom: 16px; }
.soapnuts-page .sn-laundry-card table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.soapnuts-page .sn-laundry-card th { text-align: left; padding: 8px 6px; color: var(--forest); border-bottom: 2px solid var(--gold); }
.soapnuts-page .sn-laundry-card td { padding: 10px 6px; border-bottom: 1px solid var(--border-light); }
.soapnuts-page .sn-laundry-card ul { padding-left: 18px; margin-top: 18px; font-size: 0.82rem; color: var(--text-light); }
.soapnuts-page .sn-laundry-card ul li { margin-bottom: 8px; }
.soapnuts-page .sn-tip-box { background: var(--gold-pale); border-left: 4px solid var(--gold); padding: 14px 16px; border-radius: var(--radius-sm); font-size: 0.8rem; color: var(--forest); font-weight: 600; margin-top: 16px; }
.soapnuts-page .sn-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; font-size: 0.8rem; color: var(--text-light); }
.soapnuts-page .sn-benefit-item { background: var(--cream); padding: 12px; border-radius: var(--radius-sm); }
.soapnuts-page .sn-benefit-item strong { display: block; color: var(--forest); margin-bottom: 2px; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1100px) {
  .soapnuts-page .sn-science-section { padding: 70px 0; }
  .soapnuts-page .sn-care-section,
  .soapnuts-page .sn-forms-section,
  .soapnuts-page .sn-laundry-section { padding: 64px 0; }
  .soapnuts-page .sn-points { gap: 12px; }
}
@media (max-width: 992px) {
  .soapnuts-page .sn-science-layout { grid-template-columns: 1fr; gap: 32px; }
  .soapnuts-page .sn-science-visual { max-width: 640px; margin: 0 auto; }
  .soapnuts-page .sn-points { grid-template-columns: 1fr 1fr; }
  .soapnuts-page .sn-care-grid { grid-template-columns: repeat(2, 1fr); }
  .soapnuts-page .sn-forms-grid { grid-template-columns: repeat(2, 1fr); }
  .soapnuts-page .sn-laundry-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .soapnuts-page .sn-science-section { padding: 56px 0; }
  .soapnuts-page .sn-care-section,
  .soapnuts-page .sn-forms-section,
  .soapnuts-page .sn-laundry-section { padding: 52px 0; }
  .soapnuts-page .sn-points { grid-template-columns: 1fr; gap: 10px; }
  .soapnuts-page .sn-point { padding: 12px 14px; }
  .soapnuts-page .sn-point:hover { transform: none; }
  .soapnuts-page .sn-science-content h2 { font-size: 1.6rem; }
  .soapnuts-page .sn-science-content .lead { font-size: 0.88rem; }
  .soapnuts-page .sn-care-grid { grid-template-columns: 1fr; gap: 18px; }
  .soapnuts-page .sn-forms-grid { grid-template-columns: 1fr; gap: 18px; }
  .soapnuts-page .sn-care-card,
  .soapnuts-page .sn-form-card { padding: 24px 20px; }
  .soapnuts-page .sn-laundry-card { padding: 22px 18px; }
  .soapnuts-page .sn-laundry-card h3 { font-size: 1.1rem; }
  .soapnuts-page .sn-laundry-card table { font-size: 0.76rem; }
  .soapnuts-page .sn-laundry-card th,
  .soapnuts-page .sn-laundry-card td { padding: 8px 4px; }
  .soapnuts-page .sn-benefits-grid { grid-template-columns: 1fr; gap: 8px; }
}
@media (max-width: 480px) {
  .soapnuts-page .sn-science-section { padding: 44px 0; }
  .soapnuts-page .sn-care-section,
  .soapnuts-page .sn-forms-section,
  .soapnuts-page .sn-laundry-section { padding: 44px 0; }
  .soapnuts-page .sn-science-content h2 { font-size: 1.4rem; }
  .soapnuts-page .sn-science-content .lead { font-size: 0.82rem; line-height: 1.75; }
  .soapnuts-page .sn-point-text h5 { font-size: 0.8rem; }
  .soapnuts-page .sn-point-text p { font-size: 0.72rem; }
  .soapnuts-page .sn-care-icon,
  .soapnuts-page .sn-form-icon { width: 52px; height: 52px; font-size: 1.2rem; }
  .soapnuts-page .sn-care-card h5,
  .soapnuts-page .sn-form-card h5 { font-size: 0.92rem; }
  .soapnuts-page .sn-care-card p,
  .soapnuts-page .sn-form-card p { font-size: 0.72rem; }
  .soapnuts-page .sn-laundry-card { padding: 18px 14px; border-radius: var(--radius-sm); }
  .soapnuts-page .sn-laundry-card h3 { font-size: 1rem; }
  .soapnuts-page .sn-laundry-card table { font-size: 0.7rem; }
  .soapnuts-page .sn-laundry-card th,
  .soapnuts-page .sn-laundry-card td { padding: 7px 3px; }
  .soapnuts-page .sn-laundry-card ul { font-size: 0.75rem; padding-left: 16px; }
  .soapnuts-page .sn-tip-box { font-size: 0.72rem; padding: 12px 14px; }
  .soapnuts-page .sn-benefit-item { font-size: 0.72rem; padding: 10px; }
}





/* ============================================================
   HEADER
   ============================================================ */
.cbs-reviews .reviews-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: end;
  padding: 32px 10px;
  margin-bottom: 8px;
}

.cbs-reviews .reviews-header .kicker {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--crimson-dark);
  margin-bottom: 12px;
}

.cbs-reviews .reviews-header h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(28px, 3.2vw, 38px);
  line-height: 1.25;
  color: var(--forest-deep);
  max-width: 20ch;
}

.cbs-reviews .reviews-header .lead-stat {
  text-align: right;
  border-left: 1px solid var(--line-dark);
  padding-left: 32px;
}

.cbs-reviews .reviews-header .lead-stat .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 44px;
  color: var(--crimson-dark);
  line-height: 1;
}

.cbs-reviews .reviews-header .lead-stat .label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.cbs-reviews .rule {
  height: 1px;
  background: var(--line-dark);
  margin-bottom: 56px;
}

/* ============================================================
   FEATURED TESTIMONIAL
   ============================================================ */
.cbs-reviews .featured {
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--crimson);
  border-radius: var(--radius-sm);
  padding: 48px 56px;
  margin-bottom: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cbs-reviews .featured-content {
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.cbs-reviews .featured-content.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.cbs-reviews .featured-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(19px, 1.8vw, 23px);
  line-height: 1.55;
  color: var(--ink);
  max-width: 66ch;
}

.cbs-reviews .featured-foot {
  margin-top: 28px;
  display: none;
  align-items: center;
  gap: 16px;
}

.cbs-reviews .avatar {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-xs);
  background: var(--forest-deep);
  color: var(--off-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cbs-reviews .featured-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--ink);
  font-size: 14.5px;
}

.cbs-reviews .featured-role {
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 2px;
}

.cbs-reviews .featured-score {
  text-align: center;
  padding-left: 40px;
  border-left: 1px solid var(--line);
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}

.cbs-reviews .featured-score.is-swapping {
  opacity: 0;
  transform: translateY(6px);
}

.cbs-reviews .featured-score .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 36px;
  color: var(--forest-deep);
  line-height: 1;
}

.cbs-reviews .featured-score .out-of {
  font-size: 13px;
  color: var(--text-muted);
}

.cbs-reviews .featured-score .basis {
  font-size: 12px;
  color: var(--ink-light);
  margin-top: 6px;
  max-width: 12ch;
}

/* ============================================================
   REVIEW CAROUSEL
   ============================================================ */
.cbs-reviews .review-carousel {
  position: relative;
  margin-bottom: 64px;
  --per-view: 3; /* keep in sync with computePerView() in JS */
}

.cbs-reviews .carousel-viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--line); /* shows through 1px gaps as hairlines */
  touch-action: pan-y;
  cursor: grab;
}

.cbs-reviews .carousel-viewport:active {
  cursor: grabbing;
}

.cbs-reviews .carousel-track {
  position: relative;
  display: flex;
  gap: 1px;
  transition: transform 0.65s var(--ease-out-expo);
  will-change: transform;
}

.cbs-reviews .review-card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * 1px) / var(--per-view));
  min-width: 0;
  background: var(--paper);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
}

.cbs-reviews .review-score {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest-deep);
  margin-bottom: 16px;
}

.cbs-reviews .review-score span.max {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

.cbs-reviews .review-card p.quote {
  font-size: 15px;
  color: var(--ink-soft);
  margin-bottom: 26px;
}

.cbs-reviews .review-who {
  display: none;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

.cbs-reviews .review-who .avatar {
  width: 38px;
  height: 38px;
  font-size: 12px;
}

.cbs-reviews .review-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 13.5px;
  color: var(--ink);
}

.cbs-reviews .review-role {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 1px;
}

/* ---------- Carousel controls ---------- */
.cbs-reviews .carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
}

.cbs-reviews .carousel-controls[hidden] {
  display: none;
}

.cbs-reviews .carousel-btn {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  background: var(--paper);
  color: var(--forest-deep);
  cursor: pointer;
  transition: background var(--transition-fast),
              border-color var(--transition-fast),
              color var(--transition-fast),
              opacity var(--transition-fast);
}

.cbs-reviews .carousel-btn:hover:not(:disabled) {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--off-white);
}

.cbs-reviews .carousel-btn:focus-visible {
  outline: 2px solid var(--forest-deep);
  outline-offset: 3px;
}

.cbs-reviews .carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.cbs-reviews .carousel-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cbs-reviews .carousel-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line-dark);
  cursor: pointer;
  transition: background var(--transition-fast),
              width var(--transition-fast),
              border-radius var(--transition-fast);
}

.cbs-reviews .carousel-dot:hover {
  background: var(--ink-light);
}

.cbs-reviews .carousel-dot:focus-visible {
  outline: 2px solid var(--forest-deep);
  outline-offset: 3px;
}

.cbs-reviews .carousel-dot[aria-selected="true"] {
  width: 24px;
  border-radius: 4px;
  background: var(--crimson-dark);
}

/* ============================================================
   RECOMMENDATION STRIP
   ============================================================ */
.cbs-reviews .recommend-strip {
  background: var(--forest-deep);
  border-radius: var(--radius-sm);
  padding: 40px 56px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 36px;
  align-items: center;
}

.cbs-reviews .recommend-intro h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 17px;
  color: var(--off-white);
  margin-bottom: 6px;
}

.cbs-reviews .recommend-intro p {
  font-size: 13.5px;
  color: var(--sand);
  max-width: 32ch;
}

.cbs-reviews .stat {
  text-align: left;
  border-left: 1px solid rgba(250, 243, 232, 0.18);
  padding-left: 26px;
}

.cbs-reviews .stat .num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 30px;
  color: var(--gold-light);
  display: block;
}

.cbs-reviews .stat .label {
  font-size: 12px;
  color: var(--sand);
  margin-top: 4px;
  max-width: 20ch;
}

/* ============================================================
   CTA
   ============================================================ */
.cbs-reviews .reviews-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
}

.cbs-reviews .reviews-cta p {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink);
}

.cbs-reviews .btn-primary {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--off-white);
  background: var(--crimson-dark);
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.cbs-reviews .btn-primary:hover {
  background: var(--crimson-deep);
}

.cbs-reviews .btn-primary:focus-visible {
  outline: 2px solid var(--forest-deep);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1000px) {
  .cbs-reviews .review-carousel {
    --per-view: 2;
  }
}

@media (max-width: 900px) {
  .cbs-reviews {
    padding: 64px 20px;
  }

  .cbs-reviews .reviews-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cbs-reviews .reviews-header .lead-stat {
    text-align: left;
    border-left: none;
    padding-left: 0;
  }

  .cbs-reviews .featured {
    grid-template-columns: 1fr;
    padding: 36px 28px;
  }

  .cbs-reviews .featured-score {
    border-left: none;
    padding-left: 0;
    text-align: left;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }

  .cbs-reviews .recommend-strip {
    grid-template-columns: 1fr;
  }

  .cbs-reviews .stat {
    border-left: none;
    border-top: 1px solid rgba(250, 243, 232, 0.18);
    padding-left: 0;
    padding-top: 18px;
  }
}

@media (max-width: 680px) {
  .cbs-reviews .review-carousel {
    --per-view: 1;
  }

  .qa-redirect-btn{
    font-size: 0.72rem;
  }

  .cbs-reviews .review-card {
    padding: 30px 24px;
  }

  .sticky-contact-icons {
    position: fixed;
    left: 6px;
  }

  .cbs-reviews .carousel-controls {
    gap: 14px;
    margin-top: 22px;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .cbs-reviews .btn-primary,
  .cbs-reviews .carousel-btn,
  .cbs-reviews .carousel-dot {
    transition: none;
  }

  .cbs-reviews .carousel-track,
  .cbs-reviews .featured-content,
  .cbs-reviews .featured-score {
    transition: none;
  }
}