/* ==========================================================================
   RUSHIKA SALES CORP — Metal & Scrap Traders
   Design tokens: White / Forest Green / Dark Gray / Lime — eco, clean, modern
   ========================================================================== */

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

:root {
  /* Colors */
  --white: #ffffff;
  --off-white: #f6f8f6;
  --mist: #eef3ee;
  --dark-gray: #2b2f2c;
  --gray: #55605a;
  --gray-light: #8b948e;
  --forest: #15803d;
  --forest-dark: #0f5f2d;
  --lime: #a3e635;
  --lime-deep: #84cc16;
  --danger: #d64545;

  /* Type */
  --font-display: 'Manrope', sans-serif;
  --font-body: 'Work Sans', sans-serif;

  /* Layout */
  --max-width: 1180px;
  --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark-gray);
  line-height: 1.6;
  font-size: 16px;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark-gray);
  font-weight: 800;
}

h1 { font-size: clamp(2.3rem, 4.8vw, 3.9rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.25rem; font-weight: 700; }

.eyebrow {
  font-family: var(--font-display);
  color: var(--forest);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 12px;
}

p { color: var(--gray); }

/* Signature element: soft green-to-lime gradient bar (replaces the old hazard stripe) */
.hazard-stripe {
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, var(--forest) 0%, var(--lime) 100%);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--lime-deep);
  color: var(--dark-gray);
  transform: translateY(-2px);
}

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

.btn-call {
  background: var(--dark-gray);
  color: var(--lime);
  border-color: var(--dark-gray);
  padding: 10px 18px;
  font-size: 0.85rem;
}
.btn-call:hover {
  background: var(--forest);
  color: var(--white);
  border-color: var(--forest);
}

.btn-block { width: 100%; justify-content: center; }

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  position: sticky;
  top: 0;
  z-index: 500;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 50px;
}
.logo-img {
  height: 70px;
  width: auto;
}
.footer-logo {
  height: 75px;
  width: auto;
  margin-bottom: 10px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--forest);
  border-color: var(--lime-deep);
}

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

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--forest);
  color: var(--forest);
  padding: 8px 10px;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: var(--radius);
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  background-color: var(--forest-dark);
  background-image: linear-gradient(160deg, rgba(11, 20, 13, 0.72) 0%, rgba(11, 20, 13, 0.55) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--mist);
  position: relative;
  overflow: hidden;
}
/* Photo goes here per-page via inline style on the <section class="hero">, e.g.:
   style="background-image: linear-gradient(160deg, rgba(11,20,13,.72) 0%, rgba(11,20,13,.55) 100%), url('assets/images/hero-bg.jpg')"
   The inline style overrides background-image above while keeping this file's
   background-size/position/repeat in effect. */

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero h1 { margin-bottom: 20px; color: var(--white); }
.hero h1 em {
  font-style: normal;
  color: var(--lime);
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 46ch;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.85);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}

.hero-stats div { text-align: left; }

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--lime);
  line-height: 1;
}

.hero-stats span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.8);
}

.hero-panel {
  background: var(--white);
  border: 1px solid var(--mist);
  border-left: 6px solid var(--lime-deep);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.hero-panel h3 {
  color: var(--forest);
  margin-bottom: 14px;
}

.hero-panel ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--dark-gray);
  font-size: 0.95rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--mist);
}
.hero-panel ul li:last-child { border-bottom: none; }
.hero-panel ul li .tick { color: var(--forest); font-weight: 700; }

/* ==========================================================================
   SECTIONS (generic)
   ========================================================================== */

.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */

.trust-strip {
  background: var(--dark-gray);
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.trust-strip .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
}
.trust-strip .item .dot {
  width: 8px; height: 8px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ==========================================================================
   MATERIALS GRID
   ========================================================================== */

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

.material-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--mist);
  border-left: 5px solid var(--forest);
  padding: 28px;
  border-radius: var(--radius);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.material-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--lime-deep);
  box-shadow: 0 12px 28px rgba(21,128,61,0.1);
}

.material-card .cat-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-dark);
  background: var(--lime);
  padding: 4px 10px;
  margin-bottom: 14px;
  border-radius: 20px;
  font-weight: 700;
}

.material-card h3 { margin-bottom: 12px; }

.material-card ul li {
  color: var(--gray);
  font-size: 0.92rem;
  padding: 5px 0;
  border-bottom: 1px dashed var(--mist);
}
.material-card ul li:last-child { border-bottom: none; }

.popular-badge {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--lime);
  color: var(--forest-dark);
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 4px;
}
.popular-badge::before {
  content: '\1F525';
  font-size: 0.75rem;
}

.materials-cta {
  margin-top: 48px;
  text-align: center;
  background: var(--off-white);
  border: 2px dashed var(--forest);
  padding: 40px;
  border-radius: var(--radius);
}
.materials-cta h3 { margin-bottom: 10px; }
.materials-cta p { max-width: 50ch; margin: 0 auto 24px; }

/* ==========================================================================
   HOW IT WORKS — process steps
   ========================================================================== */

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

.step {
  position: relative;
  padding: 30px 22px 24px;
  border-top: 4px solid var(--lime-deep);
  background: var(--off-white);
  border-radius: var(--radius);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}
.step:hover { box-shadow: 0 10px 24px rgba(21,128,61,0.1); }

.step .step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--forest);
  opacity: 0.9;
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 { margin-bottom: 10px; font-size: 1.15rem; }
.step p { font-size: 0.92rem; }

.step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.step-head-text { flex: 1; }

.step-time-badge {
  display: inline-block;
  margin-top: 4px;
  background: var(--mist);
  color: var(--forest-dark);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.step-toggle-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border: 2px solid var(--forest);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}
.step.active .step-toggle-icon {
  transform: rotate(180deg);
  background: var(--forest);
  color: var(--white);
}

.step-summary { margin-top: 10px; }

.step-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}
.step.active .step-details {
  max-height: 300px;
  margin-top: 16px;
}

.step-details h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--forest);
  margin-bottom: 8px;
}

.step-checklist li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--gray);
  padding: 4px 0;
}
.step-checklist li::before {
  content: '\2713';
  color: var(--forest);
  font-weight: 700;
  flex-shrink: 0;
}

/* Expect / Bring checklist section */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.expect-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 28px;
}

.expect-card h3 {
  margin-bottom: 16px;
  color: var(--forest-dark);
}

.expect-card ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px dashed var(--mist);
  font-size: 0.92rem;
  color: var(--dark-gray);
}
.expect-card ul li:last-child { border-bottom: none; }
.expect-card ul li .tick { color: var(--forest); font-weight: 700; flex-shrink: 0; }

/* ==========================================================================
   WEIGHING TRANSPARENCY WIDGET (how-it-works.php)
   ========================================================================== */

.weighbridge-widget {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
}

.weighbridge-visual {
  background: var(--dark-gray);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.weighbridge-platform {
  background: #1c201d;
  border: 2px solid var(--forest);
  border-radius: 6px;
  height: 90px;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.weighbridge-material {
  width: 60%;
  height: 0%;
  background: linear-gradient(180deg, var(--lime-deep), var(--forest));
  border-radius: 4px 4px 0 0;
  transition: height 1.4s ease;
}

.weighbridge-display {
  background: #10140f;
  border: 1px solid rgba(163,230,53,0.3);
  border-radius: 6px;
  padding: 18px;
}

.wb-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.wb-readout {
  font-family: 'Courier New', monospace;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--lime);
  letter-spacing: 0.03em;
  text-shadow: 0 0 12px rgba(163,230,53,0.5);
}

.wb-unit {
  font-size: 1.1rem;
  margin-left: 6px;
  color: rgba(255,255,255,0.7);
}

.wb-status {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--lime);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.weighbridge-controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.weighbridge-controls label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-gray);
}

.weighbridge-controls select,
.weighbridge-controls input {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--mist);
  padding: 12px 14px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark-gray);
  transition: border-color 0.2s ease;
}

.weighbridge-controls select:focus,
.weighbridge-controls input:focus {
  outline: none;
  border-color: var(--forest);
}

.weighbridge-controls button { margin-top: 6px; }

.weighbridge-slip {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border: 1px dashed var(--forest);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.slip-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--mist);
  font-size: 0.92rem;
  color: var(--gray);
}
.slip-row:last-child { border-bottom: none; }
.slip-row strong { color: var(--dark-gray); font-family: var(--font-display); }

.slip-total {
  margin-top: 4px;
  padding-top: 14px;
  border-top: 2px solid var(--mist);
}
.slip-total strong { color: var(--forest); font-size: 1.15rem; }

/* ==========================================================================
   WHY US — feature list
   ========================================================================== */

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

.why-card {
  background: var(--white);
  border: 1px solid var(--mist);
  padding: 26px;
  display: flex;
  gap: 18px;
  border-radius: var(--radius);
  transition: box-shadow 0.2s ease;
}
.why-card:hover { box-shadow: 0 12px 28px rgba(21,128,61,0.08); }

.why-card .icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  border-radius: var(--radius);
}

.why-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.why-card p { font-size: 0.92rem; }

/* ==========================================================================
   TESTIMONIAL / STAT BAND
   ========================================================================== */

.stat-band {
  background: var(--forest-dark);
  padding: 50px 0;
}
.stat-band .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}
.stat-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.3rem;
  color: var(--lime);
}
.stat-band span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  opacity: 0.85;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info-card,
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-left: 5px solid var(--forest);
  padding: 32px;
  border-radius: var(--radius);
}

.contact-info-card h3 { margin-bottom: 18px; }

.contact-line {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--mist);
}
.contact-line:last-child { border-bottom: none; }
.contact-line .label {
  font-family: var(--font-display);
  color: var(--forest);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 3px;
  font-weight: 700;
}
.contact-line a, .contact-line span.value { color: var(--dark-gray); font-weight: 500; }

.map-embed {
  margin-top: 18px;
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* Form */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--mist);
  color: var(--dark-gray);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--forest);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error {
  color: var(--danger);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}
.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea { border-color: var(--danger); }
.form-group.has-error .form-error { display: block; }

.form-success {
  display: none;
  background: var(--lime);
  color: var(--forest-dark);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--dark-gray);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  color: var(--lime);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.footer-grid p { color: #c4cbc5; font-size: 0.9rem; }

.footer-grid ul li { margin-bottom: 10px; }
.footer-grid ul li a {
  font-size: 0.9rem;
  color: #c4cbc5;
  transition: color 0.2s ease;
}
.footer-grid ul li a:hover { color: var(--lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #8b948e;
}
.footer-grid ul li {
  color: #c4cbc5;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-legal-links a {
  color: #8b948e;
  transition: color 0.2s ease;
}
.footer-legal-links a:hover { color: var(--lime); }

/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border: 3px solid var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 18px rgba(0,0,0,0.25);
  animation: wa-pulse 2.4s infinite;
}
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ==========================================================================
   ENQUIRY POPUP MODAL
   ========================================================================== */

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 21, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 5px solid var(--forest);
  padding: 34px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.modal-box h3 { margin-bottom: 6px; }
.modal-box .modal-sub { margin-bottom: 20px; font-size: 0.92rem; }

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: none;
  background: var(--off-white);
  color: var(--dark-gray);
  font-size: 1.3rem;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.modal-close:hover { background: var(--forest); color: var(--white); }

.form-error-banner {
  display: none;
  background: #fbe6e6;
  color: var(--danger);
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 18px;
  border-radius: var(--radius);
}

@media (max-width: 520px) {
  .modal-box { padding: 26px 22px; }
}

/* ==========================================================================
   TOAST NOTIFICATIONS (floating success / error popups)
   ========================================================================== */

.toast-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  pointer-events: none;
  width: 100%;
  padding: 0 16px;
}

.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(0,0,0,0.25);
  max-width: 400px;
  width: 100%;
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
}
.toast.show { opacity: 1; transform: translateY(0); }

.toast-success { border-left: 5px solid var(--forest); }
.toast-error { border-left: 5px solid var(--danger); }

.toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.toast-success .toast-icon { background: var(--forest); }
.toast-error .toast-icon { background: var(--danger); }

.toast-msg {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark-gray);
  line-height: 1.4;
}

@media (max-width: 520px) {
  .toast-container { top: 16px; }
  .toast { max-width: 100%; }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--mist);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
  border-color: var(--lime-deep);
  box-shadow: 0 8px 22px rgba(21,128,61,0.08);
}
.faq-item.active {
  border-color: var(--forest);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question .faq-q-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark-gray);
}

.faq-question .faq-num {
  color: var(--forest);
  margin-right: 6px;
}

.faq-toggle-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border: 2px solid var(--forest);
  color: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.25s ease, background 0.2s ease, color 0.2s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(180deg);
  background: var(--forest);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  margin: 0;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 520px) {
  .faq-question { padding: 18px 18px; }
  .faq-question .faq-q-text { font-size: 0.92rem; }
  .faq-item.active .faq-answer { padding: 0 18px 18px; }
}

/* ==========================================================================
   TESTIMONIALS CAROUSEL
   ========================================================================== */

.testimonials-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.testimonials-track-outer {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-slide {
  flex: 0 0 100%;
  padding: 4px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-left: 5px solid var(--lime-deep);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--lime-deep);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 800;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--dark-gray);
  max-width: 60ch;
  margin: 0 auto 22px;
  line-height: 1.65;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dark-gray);
  font-size: 0.98rem;
}

.testimonial-detail {
  font-size: 0.85rem;
  color: var(--gray);
}

.testimonial-badge {
  display: inline-block;
  margin-top: 10px;
  background: var(--mist);
  color: var(--forest-dark);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}

.testimonials-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid var(--forest);
  color: var(--forest);
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.testimonials-arrow:hover {
  background: var(--forest);
  color: var(--white);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
}

.testimonials-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mist);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}
.testimonials-dot.active {
  background: var(--forest);
  transform: scale(1.2);
}

@media (max-width: 600px) {
  .testimonial-card { padding: 26px 20px; }
  .testimonial-text { font-size: 0.95rem; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .weighbridge-widget { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--mist);
    padding: 20px 24px;
    gap: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  }
  .materials-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; }
  .weighbridge-widget { padding: 24px; }
  .wb-readout { font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float { animation: none; }
  * { scroll-behavior: auto !important; }
}