/* ==========================================================================
   TRIYURAA - Premium B2B Website
   File: style.css
   Description: Core styling, CSS variables, typography, and base layouts.
   ========================================================================== */

/* -----------------------------------------
   1. CSS VARIABLES & THEME
----------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #f9f6f0;
  /* Clean Off-White / Parchment */
  --bg-off: #f2ede4;
  /* Slightly deeper parchment for alternating sections */
  --text-primary: #1e1209;
  /* Rich Dark Earth Brown — deeper for contrast */
  --text-secondary: #4a3828;
  /* Warm Medium Brown — more readable */
  --brand-green: #4a6741;
  /* Aranya Green (Primary Accent) */
  --brand-green-dark: #1a2e1a;
  /* Deep Forest Green (Process Section bg) */
  --brand-green-mid: #2d4a2d;
  /* Mid Forest for cards/hover */
  --brand-gold: #c8af6e;
  /* Muted Antique Brass */
  --brand-gold-vivid: #d4a843;
  /* Slightly richer gold for headings */
  --brand-saffron: #e07b20;
  /* Saffron Fire */
  --white: #ffffff;
  --border-color: #e8e0d2;
  --border-green: rgba(74, 103, 65, 0.25);

  /* Typography — DM Sans (clean, open, with great letter-spacing) */
  --font-heading: "Playfair Display", serif;
  /* Rich serif for headings */
  --font-display: "DM Serif Display", serif;
  /* Display impact */
  --font-body: "DM Sans", sans-serif;
  /* Clean, readable, modern */

  /* Spacing & Layout */
  --section-pad: 6rem 5%;
  --container-max: 1200px;
  --border-radius: 14px;
  --border-radius-sm: 8px;
  --border-radius-pill: 50px;

  /* Shadows & Transitions */
  --shadow-soft: 0 8px 30px rgba(42, 26, 14, 0.07);
  --shadow-card: 0 4px 20px rgba(42, 26, 14, 0.08);
  --shadow-hover: 0 20px 48px rgba(42, 26, 14, 0.14);
  --shadow-green: 0 8px 24px rgba(74, 103, 65, 0.22);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.25s ease;
}

/* -----------------------------------------
   2. GLOBAL RESETS & BASE
----------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

section {
  /* Scroll offset accounts for sticky header (~70px) + top-bar (~34px) + breathing room */
  scroll-margin-top: 0px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

/* -----------------------------------------
   3. TYPOGRAPHY
----------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.015em;
}

.section-heading {
  font-size: 2.9rem;
  margin-bottom: 1.1rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.section-heading-light {
  color: var(--white);
}

.section-body {
  font-size: 1.07rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 680px;
  line-height: 1.85;
  letter-spacing: 0.005em;
  font-weight: 400;
}

.section-body-light {
  color: rgba(255, 255, 255, 0.7);
}

.text-center {
  text-align: center;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header.text-center .section-body {
  margin-left: auto;
  margin-right: auto;
}

/* Section Label (pill badge above headings) */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-saffron);
  background-color: rgba(224, 123, 32, 0.09);
  border: 1.5px solid rgba(224, 123, 32, 0.28);
  padding: 0.42rem 1.2rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 1.1rem;
}

.section-label-light {
  color: var(--brand-gold);
  background-color: rgba(200, 175, 110, 0.12);
  border-color: rgba(200, 175, 110, 0.35);
}

/* -----------------------------------------
   4. UTILITIES
----------------------------------------- */
.section-spacing {
  padding: var(--section-pad);
}

.bg-off {
  background-color: var(--bg-off);
}

.bg-white {
  background-color: var(--white);
}

.container {
  max-width: var(--container-max);
  width: 90%;
  margin: 0 auto;
}

/* -----------------------------------------
   5. BUTTONS
----------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Primary — filled green pill */
.btn-primary {
  background-color: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
  box-shadow: 0 4px 16px rgba(74, 103, 65, 0.2);
}

.btn-primary:hover {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  box-shadow: var(--shadow-green);
  transform: translateY(-2px);
}

/* Secondary — outlined green pill */
.btn-secondary {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background-color: var(--white);
  color: var(--brand-green);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Outline Green — for service cards */
.btn-outline-green {
  background-color: transparent;
  color: var(--brand-green);
  border-color: var(--border-green);
  font-weight: 700;
  font-size: 0.82rem;
}

.btn-outline-green:hover {
  background-color: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
  transform: translateY(-2px);
}

/* Outline general — for product specs */
.btn-outline {
  background-color: transparent;
  color: var(--text-secondary);
  border-color: var(--border-color);
  font-weight: 600;
}

.btn-outline:hover {
  border-color: var(--brand-gold);
  color: var(--text-primary);
}

/* Size variants */
.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 0.9rem;
}

/* Shine sweep on hover for primary/secondary */
.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.18) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: left 0.65s ease;
  z-index: 1;
}

.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 150%;
}

/* -----------------------------------------
   6. TOP CONTACT BAR
----------------------------------------- */
.top-bar {
  background-color: #1c1108;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.78rem;
  font-family: var(--font-body);
  padding: 0.5rem 5%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-left i {
  color: var(--brand-gold);
  font-size: 0.75rem;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.top-bar-follow {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.top-social-link {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  transition: var(--transition-fast);
}

.top-social-link:hover {
  background: var(--brand-gold);
  color: var(--white);
}

/* -----------------------------------------
   7. HEADER & NAVIGATION
----------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(249, 246, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: var(--container-max);
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand-gold), transparent);
  border-radius: 10px;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(42, 26, 14, 0.06);
}

.header-container {
  max-width: var(--container-max);
  width: 90%;
  margin: 0 auto;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 5px;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-icon {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.brand-logo:hover .brand-icon {
  transform: scale(1.1) translateY(-2px);
  filter: drop-shadow(0 6px 10px rgba(42, 26, 14, 0.18));
}

.desktop-nav {
  margin-left: auto;
  margin-right: 1.5rem;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-secondary);
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--brand-green);
  border-radius: 2px;
  transition: width 0.3s ease;
}

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

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

.header-icons {
  display: flex;
  flex-shrink: 0;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.25rem;
  order: -1;
}

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 14, 0.5);
  z-index: 999;
  backdrop-filter: blur(3px);
}

.nav-overlay.active {
  display: block;
}

/* -----------------------------------------
   8. HERO SECTION — Full-width overlay
----------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&q=80&w=1800');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: heroKenBurns 20s ease-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(20, 36, 20, 0.92) 0%,
      rgba(30, 20, 10, 0.78) 50%,
      rgba(20, 36, 20, 0.22) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0 5rem;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-content {
  max-width: 640px;
}

.hero-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-gold);
  background: rgba(200, 175, 110, 0.14);
  border: 1.5px solid rgba(200, 175, 110, 0.4);
  padding: 0.45rem 1.25rem;
  border-radius: var(--border-radius-pill);
  margin-bottom: 1.25rem;
}

.hero-cert-badge i {
  color: var(--brand-gold);
  font-size: 0.8rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero-accent {
  color: var(--brand-gold);
  font-style: italic;
  font-size: 0.92em;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 540px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.48rem 1.2rem;
  border: 1.5px solid rgba(200, 175, 110, 0.45);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  transition: var(--transition-fast);
}

.hero-pill:hover {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
  color: var(--white);
}

.pill-dot {
  width: 7px;
  height: 7px;
  background-color: var(--brand-gold);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slide dots */
.hero-slide-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 3;
}

.dot {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot-active {
  background: var(--brand-gold);
  width: 44px;
}

/* -----------------------------------------
   9. FEATURES SECTION — 6-card grid
----------------------------------------- */
.features-section {
  background-color: var(--white);
}

.features-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-primary);
  border-radius: var(--border-radius);
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  background: rgba(74, 103, 65, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: var(--transition-smooth);
}

.feature-icon-box i {
  font-size: 1.2rem;
  color: var(--brand-green);
  transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
  background: var(--brand-green);
}

.feature-card:hover .feature-icon-box i {
  color: var(--white);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.feature-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.75;
  letter-spacing: 0.005em;
  text-align: center;
}

/* WHY TRIYURAA — Bigger section label + heading override */
.features-section .section-label {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  padding: 0.65rem 2rem;
  font-weight: 800;
}

.features-section .section-heading {
  font-size: 3.8rem;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

/* Triyuraa brand icon — green icon box with white logo */
.feature-icon-box--brand {
  background: var(--brand-green);
  width: 44px;
  /* match other icons */
  height: 44px;
  /* match other icons */
  overflow: hidden;
}

.feature-brand-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Use screen blend mode: black circle becomes transparent (shows green bg), white logo stays white */
  mix-blend-mode: screen;
  transition: transform 0.35s ease;
}

.feature-card:hover .feature-icon-box--brand {
  background: var(--brand-green-dark);
}

.feature-card:hover .feature-brand-icon {
  transform: scale(1.1);
}

/* -----------------------------------------
   10. ABOUT SECTION
----------------------------------------- */
.about-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.about-img-frame img {
  width: 100%;
  height: 600px;
  object-fit: contain;
  display: block;
  transition: transform 0.6s ease;
}

.about-img-frame:hover img {
  transform: scale(1.03);
}

.about-stat-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 1.1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--border-color);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--brand-green);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  margin-top: 0.3rem;
}

.about-content .section-label {
  display: inline-block;
  margin-bottom: 1rem;
}

.about-lead {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--brand-green);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.about-body {
  font-size: 0.97rem;
  color: var(--text-secondary);
  line-height: 1.88;
  margin-bottom: 1rem;
  letter-spacing: 0.005em;
}

.about-highlights {
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}

.about-highlights li i {
  color: var(--brand-green);
  font-size: 0.85rem;
  flex-shrink: 0;
}


/* -----------------------------------------
   10b. COMPANY INFO BANNER
----------------------------------------- */
.company-banner-section {
  width: 100%;
  background: #fff;
  line-height: 0;
  /* removes gap below img */
}

.company-banner-wrapper {
  max-width: 100%;
  overflow: hidden;
  line-height: 0;
}

.company-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-top: 3px solid var(--brand-gold);
  border-bottom: 3px solid var(--brand-gold);
}

/* -----------------------------------------
   11. PROCESS SECTION — Dark green bg
----------------------------------------- */
.process-section {
  background-color: var(--brand-green-dark);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 103, 65, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.process-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 175, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.process-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  width: 90%;
}

.process-inner .section-header {
  width: 100%;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

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

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  padding: 2rem 1.75rem 4.5rem;
  /* extra bottom space for the centered number */
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-gold), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(200, 175, 110, 0.25);
  transform: translateY(-5px);
}

.process-step:hover::before {
  opacity: 1;
}

.process-step-num {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--brand-gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.process-step-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.process-step-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
  letter-spacing: 0.005em;
}

/* -----------------------------------------
   12. PRODUCTS SECTION
----------------------------------------- */
.featured-products {
  background-color: var(--bg-primary);
}

.product-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  background: var(--white);
  padding: 0.5rem;
  border-radius: var(--border-radius-pill);
  max-width: 750px;
  width: fit-content;
  margin: 0 auto 3.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.4rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: var(--border-radius-pill);
  position: relative;
  overflow: hidden;
}

.filter-btn i {
  font-size: 0.85rem;
}

.filter-btn:hover {
  color: var(--brand-green);
  background: rgba(74, 103, 65, 0.08);
  transform: translateY(-1px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-dark));
  color: var(--white);
  box-shadow: 0 6px 16px rgba(26, 46, 26, 0.25);
  transform: translateY(-2px);
}

.products-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* -----------------------------------------
   Inner Page Hero
----------------------------------------- */
.inner-page-hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?auto=format&fit=crop&q=80&w=1800') center/cover no-repeat;
  padding: 12rem 5% 6rem;
  text-align: center;
  border-bottom: none;
}

.inner-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
      rgba(20, 36, 20, 0.95) 0%,
      rgba(30, 20, 10, 0.85) 50%,
      rgba(20, 36, 20, 0.70) 100%);
  z-index: 1;
}

.inner-page-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-page-hero .section-badge {
  display: inline-block;
  background: var(--brand-gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 1.1rem;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(230, 154, 35, 0.3);
}

.inner-page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.2rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.inner-page-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(74, 103, 65, 0.2);
}

/* Top badge strip */
.product-card-top-badges {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0.85rem 0;
  gap: 0.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.65rem;
  border-radius: var(--border-radius-pill);
  line-height: 1;
  white-space: nowrap;
}

.badge-category {
  background: rgba(212, 168, 67, 0.12);
  color: #e8a020 !important;
  border: 1.5px solid rgba(212, 168, 67, 0.38);
  font-weight: 800;
}

.badge-grade {
  background: rgba(74, 103, 65, 0.08);
  color: var(--brand-green);
  border: 1px solid rgba(74, 103, 65, 0.18);
}

.product-img-wrapper {
  background-color: var(--bg-off);
  padding: 0.85rem;
  display: flex;
  justify-content: center;
  overflow: hidden;
  margin: 0.5rem 0.85rem;
  border-radius: var(--border-radius-sm);
}

.product-img-wrapper img {
  height: 140px;
  width: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  transition: transform 0.5s ease;
}

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

/* Coming Soon Styling */
.faded-img {
  position: relative;
}

.faded-img img {
  opacity: 0.4;
  filter: grayscale(60%);
}

.product-card.coming-soon-card:hover .product-img-wrapper img {
  transform: scale(1);
}

.coming-soon-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-green);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(74, 103, 65, 0.3);
  text-transform: uppercase;
  white-space: nowrap;
}

.product-info {
  padding: 0 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.product-short-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.72;
  margin-bottom: 0.75rem;
  flex: 1;
  letter-spacing: 0.008em;
}

.product-features {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
}

.product-features span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.67rem;
  font-weight: 700;
  color: var(--brand-green);
  background: rgba(74, 103, 65, 0.07);
  padding: 0.22rem 0.6rem;
  border-radius: var(--border-radius-pill);
  letter-spacing: 0.04em;
}

.product-features i {
  font-size: 0.63rem;
}

.product-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-cta-row .btn {
  width: 100%;
  justify-content: center;
}

.catalog-cta {
  margin-top: 3rem;
}

/* -----------------------------------------
   12b. PRODUCT SLIDER SYSTEM
----------------------------------------- */

/* Outer wrapper — positions arrows outside the viewport */
.product-slider-wrapper {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Clipping viewport — hides overflow */
.ps-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--border-radius);
}

/* Sliding track — holds all cards in a row */
.ps-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
  padding: 0.5rem 0 1rem;
  /* top/bottom breathing room for shadows */
}

/* Each card in the slider — 4 visible at once on desktop */
.ps-card {
  flex: 0 0 calc(25% - 1.15rem);
  min-width: calc(25% - 1.15rem);
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.38s ease, box-shadow 0.38s ease, border-color 0.38s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.ps-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(74, 103, 65, 0.2);
}

/* ── Arrows ── */
.ps-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s ease;
  box-shadow: 0 4px 16px rgba(42, 26, 14, 0.1);
  z-index: 10;
  position: relative;
  margin: 0 -0.5rem;
  /* Pull slightly over the viewport edge */
}

.ps-arrow:hover {
  background: var(--brand-green);
  color: var(--white);
  border-color: var(--brand-green);
  transform: scale(1.08);
  box-shadow: var(--shadow-green);
}

.ps-arrow:active {
  transform: scale(0.96);
}

.ps-arrow-prev {
  z-index: 10;
}

.ps-arrow-next {
  z-index: 10;
}

/* ── Dot + Progress Controls ── */
.ps-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.ps-dots {
  display: flex;
  gap: 0.55rem;
  align-items: center;
}

.ps-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.ps-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--brand-green);
}

.ps-dot:hover:not(.active) {
  background: var(--brand-gold);
  transform: scale(1.2);
}

/* Progress bar */
.ps-progress-track {
  width: 120px;
  height: 3px;
  background: var(--border-color);
  border-radius: 99px;
  overflow: hidden;
}

.ps-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-gold));
  border-radius: 99px;
  transition: width 0.1s linear;
}


/* -----------------------------------------
   13. SERVICES SECTION
----------------------------------------- */
.services-section {
  background-color: var(--brand-green-dark);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 103, 65, 0.35) 0%, transparent 70%);
  pointer-events: none;
}

.services-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 175, 110, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.services-grid {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@keyframes elegantGoldGlow {
  0% {
    box-shadow: 0 0 2px rgba(200, 175, 110, 0.1);
    border-color: rgba(200, 175, 110, 0.3);
  }

  100% {
    box-shadow: 0 0 12px rgba(200, 175, 110, 0.35);
    border-color: rgba(200, 175, 110, 0.7);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  border: 1px solid rgba(200, 175, 110, 0.3);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: elegantGoldGlow 3.5s infinite alternate ease-in-out;
}

.service-card:hover {
  animation-play-state: paused;
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(200, 175, 110, 0.6);
  border-color: var(--brand-gold);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.service-card-icon i {
  font-size: 1.5rem;
  color: var(--brand-gold);
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-icon {
  background: var(--brand-gold);
}

.service-card:hover .service-card-icon i {
  color: var(--white);
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
}

.service-desc {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.82;
  letter-spacing: 0.005em;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.service-list li i {
  color: var(--brand-green);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* -----------------------------------------
   14. CONTACT SECTION
----------------------------------------- */
.contact-cta-section {
  background-color: var(--white);
}

.contact-container {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-primary);
  padding: 4rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  text-align: center;
}

.contact-inner .section-label {
  margin-bottom: 1rem;
}

.contact-list {
  margin: 2.5rem auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
  max-width: 850px;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(74, 103, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon-wrap i {
  color: var(--brand-green);
  font-size: 1rem;
}

.contact-list li>div {
  text-align: left;
}

.contact-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.contact-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* -----------------------------------------
   15. FOOTER
----------------------------------------- */
.site-footer {
  background-color: var(--text-primary);
  color: var(--white);
  padding: 5rem 5% 2rem;
}

.footer-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-logo {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 5px;
  margin-bottom: 0.75rem;
  font-weight: 400;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--brand-gold);
  line-height: 1.9;
  font-style: italic;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--brand-gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-title {
  color: var(--brand-gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-menu li {
  margin-bottom: 0.6rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-menu li i {
  color: var(--brand-gold);
  font-size: 0.75rem;
  width: 14px;
}

.footer-menu a {
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-menu a:hover {
  color: var(--brand-gold);
  transform: translateX(4px);
}

.footer-bottom {
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  gap: 1rem;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.35);
  transition: var(--transition-fast);
}

.legal-links a:hover {
  color: var(--brand-gold);
}


/* Utility: hidden cards */
.hidden-card {
  display: none !important;
}

/* ==========================================================================
   PRODUCT SPECS MODAL — TDS Format
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 8, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-container {
  background: var(--white);
  border-radius: 22px;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  box-shadow: 0 32px 80px rgba(20, 14, 8, 0.28);
  transform: translateY(28px) scale(0.97);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.32s ease;
  opacity: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--border-color) transparent;
  /* Yellow accent strip on right */
  border-right: 6px solid var(--brand-saffron);
}

.modal-overlay.active .modal-container {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-off);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 1;
}

.modal-close-btn:hover {
  background: var(--text-primary);
  color: var(--white);
  border-color: var(--text-primary);
}

/* --- Modal Header --- */
.modal-header {
  margin-bottom: 1.75rem;
  padding-right: 2.5rem;
}

.modal-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
}

.modal-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-saffron);
  background: rgba(224, 123, 32, 0.08);
  border: 1.5px solid rgba(224, 123, 32, 0.22);
  padding: 0.35rem 0.9rem;
  border-radius: var(--border-radius-pill);
}

.modal-cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand-green-dark);
  background: rgba(26, 68, 26, 0.08);
  border: 1.5px solid rgba(26, 68, 26, 0.2);
  padding: 0.3rem 0.85rem;
  border-radius: var(--border-radius-pill);
}

.modal-ref {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.modal-ref::before {
  content: 'Ref: ';
  font-weight: 700;
}

.modal-product-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.modal-divider {
  height: 2px;
  background: linear-gradient(90deg, var(--brand-saffron) 0%, transparent 80%);
  border-radius: 2px;
  margin-bottom: 0.85rem;
}

.modal-product-tagline {
  font-size: 0.93rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 680px;
}

/* --- TDS Sections --- */
#modal-specs-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.tds-section {}

.tds-section-title {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-saffron);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tds-section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 1em;
  background: var(--brand-saffron);
  border-radius: 2px;
  flex-shrink: 0;
}

.tds-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.spec-item {
  background: var(--bg-off);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border-color);
  transition: border-color 0.2s;
}

.spec-item.spec-highlight {
  background: rgba(224, 123, 32, 0.06);
  border-color: rgba(224, 123, 32, 0.3);
}

.spec-item.spec-highlight .spec-value {
  color: var(--brand-saffron);
  font-weight: 700;
}

.spec-label {
  display: block;
  font-size: 0.67rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.spec-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Modal Footer */
.modal-footer {
  display: flex;
  justify-content: center;
}

.btn-modal-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.5rem;
  background: var(--brand-green-dark);
  color: var(--white);
  border-radius: var(--border-radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  width: 100%;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(26, 46, 26, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-modal-cta i {
  transition: transform 0.3s ease;
}

.btn-modal-cta:hover {
  background: var(--brand-green);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 46, 26, 0.35);
  color: var(--white);
}

.btn-modal-cta:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   EXTRA POLISH IMPROVEMENTS
   ========================================================================== */

/* Improved section label with subtle left accent for non-centered sections */
.about-content .section-label,
.services-section .section-label {
  margin-bottom: 0.85rem;
}

/* Smoother section transitions */
.features-section,
.about-section,
.process-section,
.featured-products,
.services-section,
.contact-cta-section {
  will-change: opacity;
}

/* Better product card hover border */
.product-card:hover {
  border-color: rgba(74, 103, 65, 0.18);
}

/* Improved contact panel card */
.contact-container {
  background: linear-gradient(160deg, var(--bg-off) 0%, var(--white) 100%);
  border: 1px solid var(--border-color);
}

/* Polish: feature card title */
.feature-title {
  letter-spacing: -0.015em;
}

/* Scroll-margin — 0 so sections fill the screen from the top when navigated */
#process {
  scroll-margin-top: 0;
}

/* Mobile filter wrap fix */
@media (max-width: 640px) {
  .product-filters {
    flex-wrap: wrap;
    width: 90%;
    border-radius: var(--border-radius);
  }

  .filter-btn {
    flex: 1 1 auto;
    min-width: 120px;
    justify-content: center;
  }
}

/* Modal mobile */
@media (max-width: 576px) {
  .modal-container {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 18px;
  }

  .modal-specs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .spec-item:nth-child(3n) {
    border-right: 1px solid var(--border-color);
  }

  .spec-item:nth-child(2n) {
    border-right: none;
  }

  .modal-product-name {
    font-size: 1.6rem;
  }
}

/* ==========================================================================
   PRODUCT SEARCH BAR
   ========================================================================== */
.search-filter-container {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  margin-bottom: 1rem !important;
  padding: 0 1rem;
}

.product-search-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  border-radius: var(--border-radius-pill);
  background: linear-gradient(145deg, #ffffff, #fdfaf6);
  padding: 2px;
  box-shadow: 0 8px 24px rgba(20, 14, 8, 0.06), inset 0 2px 4px rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(74, 103, 65, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-search-wrapper:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(20, 14, 8, 0.1), inset 0 2px 4px rgba(255, 255, 255, 0.9);
}

.product-search-wrapper .search-icon {
  position: absolute;
  left: 1.3rem;
  color: var(--brand-green);
  font-size: 1rem;
  z-index: 2;
}

.product-search-input {
  width: 100%;
  padding: 0.95rem 2.8rem 0.95rem 3.2rem;
  border-radius: var(--border-radius-pill);
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: var(--transition-smooth);
}

.product-search-input::placeholder {
  color: var(--text-secondary);
  opacity: 0.65;
}

.product-search-input:focus {
  outline: none;
  background: #ffffff;
  box-shadow: inset 0 0 0 1.5px var(--brand-green);
}

.clear-search-btn {
  position: absolute;
  right: 1.1rem;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(20, 14, 8, 0.05);
  border: none;
  color: var(--text-secondary);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 2;
}

.clear-search-btn:hover {
  background: rgba(224, 123, 32, 0.1);
  color: var(--brand-rust);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background-color: #1ebe5d;
  transform: scale(1.1);
  box-shadow: 0px 6px 14px rgba(0, 0, 0, 0.2);
  color: #fff;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 30px;
  }
}

/* --- Enhanced Spec Section Titles --- */
.tds-section-title {
  font-family: var(--font-heading, "Playfair Display", serif);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-saffron, #e07b20);
  border-bottom: none;
  padding-bottom: 0;
  padding-left: 0.8rem;
  margin-top: 1.8rem;
  margin-bottom: 1.2rem;
  position: relative;
  display: flex;
  align-items: center;
}

.tds-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background-color: var(--brand-saffron, #e07b20);
  border-radius: 4px;
}