/* ===================== Base ===================== */
:root {
  --green: #1ea949;
  --green-dark: #168a3a;
  --green-soft: #e7f7ec;
  --green-darker: #0f5d29;
  --blue: #0f73bc;
  --blue-dark: #00488f;
  --orange: #f0923a;
  --ink: #1a2330;
  --ink-soft: #4d5867;
  --muted: #7e8896;
  --bg: #ffffff;
  --bg-alt: #f7f9fb;
  --line: #e6ebf1;
  --shadow-sm: 0 4px 14px rgba(15, 23, 40, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 40, 0.08);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0 0 0.8rem;
  color: var(--ink-soft);
}

.text-green {
  color: var(--green);
}

.text-blue {
  color: var(--blue);
}

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background 0.2s ease, color 0.2s ease;
  font-family: inherit;
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 18px rgba(30, 169, 73, 0.3);
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-dark {
  background: #0e3a1c;
  color: #fff;
  padding: 0.8rem 2rem;
}

.btn-dark:hover {
  background: #052010;
  transform: translateY(-2px);
}

.btn-arrow,
.btn-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-size: 0.9rem;
}

.btn-ghost .btn-icon {
  background: var(--green);
  color: #fff;
}

/* ===================== Header ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease, backdrop-filter 0.3s ease,
    -webkit-backdrop-filter 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.65);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: rgba(0, 0, 0, 0.06);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand-logo {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--green);
  font-weight: 700;
  font-size: 1.05rem;
}

.brand-text span {
  font-size: 0.72rem;
  color: var(--muted);
}

.menu {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.menu a {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.menu a:hover {
  color: var(--green);
  background: var(--green-soft);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ===================== 1. Hero ===================== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("./Anmol/BG.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: transparent;
}

/* Soft, centered vignette so only the area behind the text is gently
   darkened — keeps the background image fully visible elsewhere. */
.hero-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 55% at 50% 50%,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 45%,
    rgba(0, 0, 0, 0) 75%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  display: flex;
  justify-content: center;
}

.hero-copy {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.32);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5fc66e;
  box-shadow: 0 0 0 4px rgba(95, 198, 110, 0.25);
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.3rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero-copy h1 .text-green {
  color: #5fc66e;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55),
    0 0 12px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  color: #fff;
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6),
    0 1px 2px rgba(0, 0, 0, 0.4);
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Glass / frosted style for hero buttons only */
.hero-actions .btn {
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero-actions .btn-primary {
  background: rgba(30, 169, 73, 0.28);
}

.hero-actions .btn-primary:hover {
  background: rgba(30, 169, 73, 0.45);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-2px);
}

.hero-actions .btn-ghost .btn-icon,
.hero-actions .btn-primary .btn-arrow {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.6rem;
  transform: translateX(-50%);
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  z-index: 1;
}

.hero-scroll span {
  display: block;
  width: 3px;
  height: 8px;
  background: #fff;
  border-radius: 3px;
  margin: 6px auto;
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 0.9; }
  60% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ===================== Section base ===================== */
.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  margin-bottom: 0.7rem;
}

.section-head p {
  color: var(--muted);
  font-size: 0.98rem;
}

.section-head.light h2,
.section-head.light p {
  color: #fff;
}

.section-head.light p {
  color: rgba(255, 255, 255, 0.88);
}

/* ===================== 2. Why Choose ===================== */
.why {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
  overflow: hidden;
}

.why-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.why-decor-1 {
  width: 380px;
  height: 380px;
  background: rgba(30, 169, 73, 0.18);
  top: -120px;
  left: -120px;
}

.why-decor-2 {
  width: 460px;
  height: 460px;
  background: rgba(15, 115, 188, 0.15);
  bottom: -160px;
  right: -160px;
}

.why .container {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.9rem;
}

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

.feature-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem 1.7rem 3rem;
  text-align: left;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 169, 73, 0.08),
    rgba(15, 115, 188, 0.06)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 40, 0.1);
  border-color: transparent;
}

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

.feature-num {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(15, 23, 40, 0.06);
  line-height: 1;
  letter-spacing: -1px;
  transition: color 0.35s ease;
}

.feature-card[data-accent="green"]:hover .feature-num {
  color: rgba(30, 169, 73, 0.18);
}

.feature-card[data-accent="blue"]:hover .feature-num {
  color: rgba(15, 115, 188, 0.18);
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 0 1.2rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green);
  box-shadow: 0 10px 22px rgba(30, 169, 73, 0.28);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card[data-accent="blue"] .feature-icon {
  background: var(--blue);
  box-shadow: 0 10px 22px rgba(15, 115, 188, 0.28);
}

.feature-card:hover .feature-icon {
  transform: rotate(-6deg) scale(1.06);
}

.feature-icon svg {
  width: 30px;
  height: 30px;
}

.feature-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.18rem;
}

.feature-card p {
  font-size: 0.93rem;
  margin: 0;
  color: var(--ink-soft);
}

.feature-line {
  position: absolute;
  left: 1.7rem;
  bottom: 1.4rem;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
  transition: width 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.feature-card[data-accent="blue"] .feature-line {
  background: var(--blue);
}

.feature-card:hover .feature-line {
  width: 64px;
}

/* ===================== 3. Products ===================== */
.products {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f6f9f7 100%);
  overflow: hidden;
}

.products-decor {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(30, 169, 73, 0.12),
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.products .container {
  position: relative;
  z-index: 1;
}

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

.product-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 1rem 1rem 1.4rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(15, 23, 40, 0.14);
  border-color: transparent;
}

/* Floating badge top-right */
.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 16px rgba(30, 169, 73, 0.3);
}

.product-badge-blue {
  background: var(--blue);
  box-shadow: 0 8px 16px rgba(15, 115, 188, 0.3);
}

.product-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: badgePulse 1.6s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.7); }
}

/* Image frame */
.product-frame {
  position: relative;
  background: linear-gradient(135deg, #f1faf3 0%, #eaf3ff 100%);
  border-radius: 14px;
  padding: 1.5rem 1rem;
  margin-bottom: 1.1rem;
  height: 240px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.7),
    transparent 60%
  );
  opacity: 0.7;
  transition: opacity 0.4s ease;
}

.product-frame img {
  position: relative;
  z-index: 1;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover .product-frame img {
  transform: scale(1.08) translateY(-4px);
}

/* Tag at top-left of frame */
.product-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(30, 169, 73, 0.2);
  backdrop-filter: blur(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-tag {
  opacity: 0;
  transform: translateY(-6px);
}

/* Hover popup that slides up over the image */
.product-pop {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    180deg,
    rgba(8, 60, 36, 0.92) 0%,
    rgba(15, 84, 50, 0.96) 100%
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.4rem 1.3rem;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.45s ease,
    transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  border-radius: 14px;
}

.product-card:hover .product-pop {
  opacity: 1;
  transform: translateY(0);
}

.product-pop h4 {
  color: #fff;
  margin: 0 0 0.7rem;
  font-size: 1.1rem;
  font-weight: 700;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.product-features li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.4;
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 8px;
  border-left: 2px solid #5fc66e;
  border-bottom: 2px solid #5fc66e;
  transform: rotate(-45deg);
}

.pop-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  align-items: center;
}

.btn-sm {
  padding: 0.55rem 1.05rem;
  font-size: 0.85rem;
}

.pop-link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pop-link:hover {
  color: #fff;
}

/* Card info under image */
.product-info {
  padding: 0 0.4rem;
}

.product-card h3 {
  font-weight: 700;
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.product-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* CTA below grid */
.products-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.products-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

/* ===================== Products Page ===================== */
.cat-section {
  background: #fff;
  padding-bottom: 3rem;
}

.cat-section + .cat-section {
  padding-top: 0;
}

.cat-band {
  background: linear-gradient(90deg, var(--blue) 0%, #1f7fc9 100%);
  color: #fff;
  padding: 1.4rem 0;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 14px rgba(15, 115, 188, 0.15);
}

.cat-band h2 {
  color: #fff;
  text-align: center;
  margin: 0;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cat-body {
  padding-top: 0.5rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.product-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.4rem 1.2rem 1.6rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.product-detail-card .product-frame {
  height: 220px;
  margin-bottom: 1.1rem;
}

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

.product-detail-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin: 0 0 0.9rem;
  min-height: 2.6em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}

.spec {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  font-size: 0.86rem;
  line-height: 1.4;
}

.spec + .spec {
  border-top: 1px solid var(--line);
}

.spec-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.spec-ico svg {
  width: 16px;
  height: 16px;
}

.spec-body {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 0.4rem 0.8rem;
  align-items: baseline;
  min-width: 0;
}

.spec-key {
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.spec-val {
  color: var(--ink-soft);
  text-align: right;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}

.spec-feature .spec-body {
  grid-template-columns: 1fr;
}

.spec-feature .spec-key {
  font-weight: 500;
  color: var(--ink-soft);
  white-space: normal;
  font-style: italic;
}

.product-detail-card:hover .spec-ico {
  background: var(--green);
  color: #fff;
  transform: scale(1.05);
}

@media (max-width: 980px) {
  .product-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }
  .cat-band {
    padding: 1.1rem 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 600px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-card h3 {
    min-height: 0;
  }
}

/* ===================== Mega Menu (in nav) ===================== */
.has-mega {
  position: relative;
}

.menu .has-mega .mega-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.menu .has-mega .mega-trigger:hover,
.has-mega:hover .mega-trigger,
.has-mega.open .mega-trigger {
  color: var(--green);
  background: var(--green-soft);
}

.has-mega .caret {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s ease;
}

.has-mega:hover .caret,
.has-mega.open .caret {
  transform: rotate(-135deg) translateY(2px);
}

.mega-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 640px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 22px 56px rgba(15, 23, 40, 0.14);
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease,
    visibility 0s linear 0.25s;
  z-index: 60;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

/* Invisible hover bridge so the menu stays open while the
   cursor crosses the gap between trigger and dropdown. */
.mega-menu::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 18px;
  background: transparent;
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu,
.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s;
}

.mega-tile {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mega-tile:hover {
  background: var(--green-soft);
  border-color: rgba(30, 169, 73, 0.18);
  transform: translateY(-1px);
}

.mega-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.mega-ico svg {
  width: 20px;
  height: 20px;
}

.mega-tile:hover .mega-ico {
  background: var(--green);
  color: #fff;
}

.mega-tile-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.mega-tile-text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.mega-tile-text small {
  font-size: 0.74rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ===================== Category Landing ===================== */
.cat-landing {
  background: linear-gradient(135deg, #0f5d29 0%, #168a3a 60%, #0f73bc 130%);
  padding: 3.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.cat-landing::before,
.cat-landing::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.cat-landing::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -100px;
}

.cat-landing::after {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: -80px;
}

.cat-landing > .container {
  position: relative;
  z-index: 1;
}

.cat-landing-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.cat-landing-head .eyebrow {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.cat-landing-head h2 {
  margin-bottom: 0.5rem;
  color: #fff;
}

.cat-landing-head h2 .text-green {
  color: #b8f0c6;
}

.cat-landing-head p {
  color: rgba(255, 255, 255, 0.85);
}

.cat-tile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.cat-tile {
  position: relative;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 1.6rem 1.6rem 2rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.cat-tile::after {
  content: "";
  position: absolute;
  inset: auto -40% -50% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(30, 169, 73, 0.18),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cat-tile:hover::after {
  opacity: 1;
}

.cat-tile:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 26px 50px rgba(0, 0, 0, 0.28);
}

.cat-tile-head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.85rem;
}

.cat-tile-img {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--green-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

.cat-tile-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.35s ease;
}

.cat-tile:hover .cat-tile-img {
  background: #d6f1de;
}

.cat-tile:hover .cat-tile-img img {
  transform: scale(1.06);
}

.cat-tile h3 {
  font-size: 1.15rem;
  margin: 0;
  line-height: 1.25;
}

.cat-tile p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 1.2rem;
}

.cat-tile-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-top: auto;
  letter-spacing: 0.2px;
}

/* ===================== Product Row (category pages) ===================== */
.product-row-list {
  background: #fff;
  padding: 1.5rem 0 3rem;
}

.product-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.product-row:last-of-type {
  border-bottom: 0;
}

.product-row-art .product-frame {
  height: 380px;
  margin-bottom: 0;
  border-radius: 18px;
}

.product-row:hover .product-frame img {
  transform: scale(1.04);
}

.product-row-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.product-row-body h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 1.1rem;
}

.product-row-body .spec-list {
  width: 100%;
}

.product-row-body .spec-ico {
  width: 34px;
  height: 34px;
}

.product-row-body .spec {
  grid-template-columns: 34px 1fr;
  padding: 0.65rem 0;
  font-size: 0.92rem;
}

.product-row-cta {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

/* ===================== Related categories strip ===================== */
.related-cats {
  background: var(--bg-alt);
  padding: 3rem 0 3.5rem;
}

.related-cats-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.related-cats-head h3 {
  font-size: 1.25rem;
  margin: 0 0 0.3rem;
}

.related-cats-head p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}

.related-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.25rem;
}

.related-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-chip:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.related-chip-thumb {
  width: 100%;
  height: 170px;
  border-radius: 14px;
  background: #f3faf6;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.related-chip-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.7rem;
}

.related-chip:hover .related-chip-thumb {
  border-color: var(--green-soft);
  background: #fff;
  transform: scale(1.01);
}

.related-chip-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

.related-chip-body h4 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}

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

.related-chip-count {
  margin-top: auto;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.08);
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.42rem 0.7rem;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .cat-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
  }
  .product-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .product-row-art .product-frame {
    height: 300px;
  }
  .related-cats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mega-menu {
    min-width: 540px;
  }
}

@media (max-width: 640px) {
  .cat-tile-grid {
    grid-template-columns: 1fr;
  }
  .related-cats-grid {
    grid-template-columns: 1fr;
  }
  .related-chip-thumb {
    height: 150px;
  }
  .related-chip-body h4 {
    font-size: 0.98rem;
  }
  .related-chip-body p {
    font-size: 0.82rem;
  }
  .related-chip-count {
    font-size: 0.8rem;
  }
  .product-row-art .product-frame {
    height: 240px;
  }
  .menu .has-mega {
    width: 100%;
  }
  .menu .has-mega .mega-trigger {
    width: 100%;
    justify-content: space-between;
    padding: 0.7rem 0.9rem;
  }
  .menu .mega-menu {
    position: static;
    transform: none;
    min-width: 0;
    box-shadow: none;
    border: 0;
    border-radius: 0;
    grid-template-columns: 1fr;
    padding: 0.4rem 0 0.6rem;
    gap: 0.3rem;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0s linear 0.3s;
  }
  .menu .mega-menu::before {
    display: none;
  }
  .menu .has-mega.open .mega-menu {
    visibility: visible;
    pointer-events: auto;
    max-height: 720px;
    transform: none;
    left: auto;
    opacity: 1;
    transition: max-height 0.4s ease, visibility 0s;
  }
  .menu .mega-tile {
    background: var(--bg-alt);
  }
}

/* ===================== 4. About ===================== */
.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  margin-bottom: 1rem;
}

.about-copy p {
  font-size: 0.97rem;
  margin-bottom: 1rem;
}

.about-art img {
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

/* ===================== 5. Reach / Stats (Green Gradient) ===================== */
.reach {
  position: relative;
  background: radial-gradient(
      1200px 600px at 12% 18%,
      rgba(110, 229, 151, 0.32),
      transparent 60%
    ),
    radial-gradient(
      1000px 500px at 88% 88%,
      rgba(6, 70, 38, 0.55),
      transparent 60%
    ),
    linear-gradient(135deg, #1ea949 0%, #0d4f29 50%, #06281a 100%);
  color: #eaf6ee;
  overflow: hidden;
}

.reach-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.reach-decor-1 {
  width: 360px;
  height: 360px;
  background: rgba(110, 229, 151, 0.45);
  top: 10%;
  left: -120px;
}

.reach-decor-2 {
  width: 380px;
  height: 380px;
  background: rgba(6, 50, 28, 0.6);
  bottom: -120px;
  right: -120px;
}

.reach .container {
  position: relative;
  z-index: 1;
}

.reach .section-head h2 {
  color: #ffffff;
}

.reach .section-head p {
  color: rgba(234, 246, 238, 0.8);
}

.reach .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #d4ffe1;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reach-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  width: 100%;
  max-width: 1100px;
}

.stat-card {
  position: relative;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem 1.2rem;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    border-color 0.3s ease, background 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border-color: rgba(110, 229, 151, 0.35);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.8rem;
  border-radius: 12px;
  background: rgba(30, 169, 73, 0.18);
  color: #6ee597;
  border: 1px solid rgba(30, 169, 73, 0.3);
  display: grid;
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease,
    transform 0.3s ease, border-color 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: rotate(-6deg) scale(1.05);
}

.stat-icon svg {
  width: 22px;
  height: 22px;
}

.stat-card h3 {
  font-size: 2.4rem;
  color: #6ee597;
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: -0.5px;
}

.stat-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(230, 236, 245, 0.72);
  font-weight: 500;
}

/* ===================== 6. Contact form ===================== */
.contact {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5faf6 100%);
  overflow: hidden;
}

.contact-decor {
  position: absolute;
  top: 20%;
  right: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(15, 115, 188, 0.14),
    transparent 70%
  );
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-wrap {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 22px;
  padding: 2.6rem 2.8rem;
  box-shadow: 0 24px 60px rgba(15, 23, 40, 0.08);
  border: 1px solid var(--line);
  box-sizing: border-box;
}

/* ---- Info side ---- */
.contact-info {
  position: relative;
  background: linear-gradient(160deg, #0f5d29 0%, #168a3a 60%, #0f73bc 130%);
  color: #fff;
  border-radius: 16px;
  padding: 2rem 1.7rem;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.contact-info::after {
  content: "";
  position: absolute;
  top: -60px;
  left: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.contact-info > * {
  position: relative;
  z-index: 1;
}

.contact-info h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}

.contact-info-lead {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.info-eyebrow {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #d1f5dc;
  margin-bottom: 0.9rem;
}

.process-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 38px;
  bottom: 38px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35),
    rgba(255, 255, 255, 0.05)
  );
}

.process-steps li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-num {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}

.process-steps li > div {
  flex: 1;
}

.process-steps h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
}

.process-steps p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
  color: #5fc66e;
}

/* ---- Form side ---- */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  width: 100%;
}

.contact-form .field {
  min-width: 0;
}

.contact-form .select-wrap {
  width: 100%;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.2px;
}

.field-label em {
  color: var(--green);
  font-style: normal;
  margin-left: 0.15rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1.5px solid var(--line);
  background: #fafbfc;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease,
    box-shadow 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa5b1;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  background: #fff;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(30, 169, 73, 0.15);
}

.contact-form input:disabled,
.contact-form select:disabled {
  background: #f1f3f5;
  color: #9aa5b1;
  cursor: not-allowed;
}

.contact-form textarea {
  resize: vertical;
  min-height: 130px;
}

/* Custom select arrow */
.select-wrap {
  position: relative;
}

.select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact-form select:disabled + ::after,
.contact-form select:disabled {
  opacity: 0.7;
}

/* Checkbox */
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  user-select: none;
}

.checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 0.4rem;
}

.form-status {
  text-align: left;
  margin: 0;
  min-height: 1.2em;
  font-size: 0.9rem;
  color: var(--green-dark);
  font-weight: 500;
}

/* ===================== 7. CTA Band ===================== */
.cta-band {
  background: linear-gradient(135deg, #168a3a 0%, #0f5d29 60%, #0f73bc 130%);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.cta-band::before {
  width: 280px;
  height: 280px;
  top: -120px;
  right: -80px;
}

.cta-band::after {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -60px;
}

.cta-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 0.4rem;
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.cta-band-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn-light {
  background: #fff;
  color: var(--green-dark);
}

.btn-light:hover {
  background: #f5faf6;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

.btn-light .btn-icon {
  background: var(--green);
  color: #fff;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--green-dark);
  border-color: #fff;
}

.btn-outline-light .btn-arrow {
  background: rgba(255, 255, 255, 0.2);
}

/* ===================== 8. Footer ===================== */
.site-footer {
  background: #0c2d18;
  color: rgba(255, 255, 255, 0.78);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.4rem;
  padding: 4rem 0 3rem;
}

.footer-col h4.footer-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.7rem;
  letter-spacing: 0.3px;
}

.footer-col h4.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
}

/* Brand col */
.footer-brand .brand {
  margin-bottom: 1.1rem;
}

.brand-light .brand-text strong {
  color: #fff;
}

.brand-light .brand-text span {
  color: rgba(255, 255, 255, 0.65);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.2rem;
  max-width: 360px;
}

.social-row {
  display: flex;
  gap: 0.55rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
  transition: background 0.25s ease, transform 0.25s ease,
    border-color 0.25s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-3px);
}

/* Link list */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a::before {
  content: "›";
  color: var(--green);
  font-size: 1.1rem;
  line-height: 0.7;
  transition: transform 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(2px);
}

.footer-links a:hover::before {
  transform: translateX(2px);
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.fc-ico {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(30, 169, 73, 0.18);
  border: 1px solid rgba(30, 169, 73, 0.3);
  color: #5fc66e;
  display: grid;
  place-items: center;
}

.fc-ico svg {
  width: 16px;
  height: 16px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--green);
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  padding: 1.2rem 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
}

.kenixa-link {
  color: #5fc66e;
  font-weight: 600;
  transition: color 0.2s ease;
}

.kenixa-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* ===================== About Page ===================== */
.menu a[aria-current="page"] {
  color: var(--green);
  background: var(--green-soft);
}

/* ----- Banner ----- */
.about-banner {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 93, 41, 0.92) 0%, rgba(30, 169, 73, 0.85) 100%),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
    var(--green-darker);
  color: #fff;
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}

.about-banner::before,
.about-banner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.about-banner::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -80px;
}

.about-banner::after {
  width: 220px;
  height: 220px;
  bottom: -100px;
  left: -60px;
}

.about-banner-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-banner .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.78rem;
  font-weight: 600;
  margin: 0 0 0.8rem;
  padding: 0.35rem 1rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #fff;
}

.about-banner h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  margin: 0 0 0.8rem;
}

.about-banner h1 .text-green {
  color: #c9f7d4;
}

.about-banner .lead {
  color: rgba(255, 255, 255, 0.92);
  max-width: 720px;
  margin: 0 auto 1.2rem;
  font-size: 1.02rem;
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: #fff;
}

.breadcrumbs [aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

/* ----- Section tag ----- */
.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
}

.section-tag.center {
  display: inline-block;
}

/* ----- Intro + Highlights ----- */
.about-intro {
  background: #fff;
  padding: 4.5rem 0 3rem;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.about-intro-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.about-intro-text p {
  font-size: 0.97rem;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

.check-list {
  list-style: none;
  margin: 1.4rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem 1.2rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--ink);
  font-weight: 500;
}

.check-ico {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.check-ico svg {
  width: 14px;
  height: 14px;
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.image-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  border-left: 4px solid var(--green);
}

.image-badge strong {
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 800;
}

.image-badge span {
  font-size: 0.82rem;
  color: var(--muted);
}

/* ----- Highlight Stats ----- */
.highlight-stats {
  background: var(--bg-alt);
  padding: 3rem 0;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.highlight-card {
  background: #fff;
  padding: 1.8rem 1.2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 0.9rem;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
}

.highlight-icon svg {
  width: 28px;
  height: 28px;
}

.highlight-card h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--green-dark);
  margin: 0 0 0.2rem;
}

.highlight-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ----- Mission / Vision ----- */
.mission-vision {
  padding: 4.5rem 0;
  background: #fff;
}

.mission-vision.alt {
  background: var(--bg-alt);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.mv-grid.reverse .mv-text {
  order: 1;
}

.mv-grid.reverse .mv-image {
  order: 2;
}

.mv-text h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  margin-bottom: 1rem;
}

.mv-text > p {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin-bottom: 1.4rem;
}

.mv-image {
  position: relative;
  isolation: isolate;
}

.mv-image::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  right: -18px;
  bottom: -18px;
  background: linear-gradient(145deg, var(--green-soft) 0%, rgba(30, 169, 73, 0.08) 100%);
  border-radius: 22px;
  z-index: -1;
  transition: transform 0.45s ease;
}

.mv-grid.reverse .mv-image::before {
  left: -18px;
  right: 18px;
}

.mv-image img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 18px;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  display: block;
}

.mv-image:hover img {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(30, 169, 73, 0.18);
}

.mv-image:hover::before {
  transform: translate(-4px, -4px);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

/* About page: show mission/vision cards as 2x2 grid */
.about-page .feature-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-list li:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
  border-color: var(--green);
}

.mission-vision.alt .feature-list li {
  background: #fff;
}

.feature-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 14px rgba(30, 169, 73, 0.25);
}

.feature-ico svg {
  width: 20px;
  height: 20px;
}

.feature-list li > div {
  flex: 1;
}

.feature-list li strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  margin-bottom: 0.2rem;
  font-weight: 700;
}

.feature-list li p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ----- Core Values ----- */
.core-values {
  background: #fff;
  padding: 4.5rem 0;
}

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

.value-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: left;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease,
    color 0.25s ease;
  overflow: hidden;
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: 3;
}

.value-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #62ba86 0%, #2f8a56 45%, #155a34 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.value-card > * {
  position: relative;
  z-index: 2;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: #2f8a56;
  color: #fff;
}

.value-card:hover::before {
  transform: scaleX(1);
}

.value-card:hover::after {
  opacity: 1;
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.value-card:hover .value-icon {
  background: var(--green);
  color: #fff;
}

.value-icon svg {
  width: 28px;
  height: 28px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.value-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  margin: 0;
  transition: color 0.25s ease;
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.9);
}

.value-card:hover h3 {
  color: #fff;
}

/* ----- What We Offer ----- */
.what-we-offer {
  background: var(--bg-alt);
  padding: 4.5rem 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.6rem 1.3rem;
  text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(30, 169, 73, 0.3);
}

.offer-icon svg {
  width: 28px;
  height: 28px;
}

.offer-card h4 {
  font-size: 1.05rem;
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.offer-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ----- CTA Banner ----- */
.about-cta {
  background: linear-gradient(120deg, #154f8a 0%, #1f6cb1 65%, #2a86d2 100%);
  color: #fff;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.about-cta::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.about-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-cta h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 0.5rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.97rem;
}

.about-cta-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ----- About Page Responsive ----- */
@media (max-width: 980px) {
  .about-banner {
    padding: 3rem 0 3.5rem;
  }
  .about-intro {
    padding: 3rem 0 2rem;
  }
  .about-intro-grid,
  .mv-grid,
  .mv-grid.reverse,
  .about-cta-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mv-grid.reverse .mv-text {
    order: 2;
  }
  .mv-grid.reverse .mv-image {
    order: 1;
  }
  .about-intro-image img {
    height: 360px;
  }
  .mv-image img {
    height: 360px;
  }
  .mv-image::before,
  .mv-grid.reverse .mv-image::before {
    top: 14px;
    left: 14px;
    right: -14px;
    bottom: -14px;
  }
  .highlight-grid,
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-vision,
  .core-values,
  .what-we-offer {
    padding: 3rem 0;
  }
  .about-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .about-banner {
    padding: 2.5rem 0 3rem;
  }
  .about-intro-image img {
    height: 280px;
  }
  .mv-image img {
    height: 280px;
    border-width: 4px;
  }
  .mv-image::before,
  .mv-grid.reverse .mv-image::before {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
    border-radius: 18px;
  }
  .check-list,
  .highlight-grid,
  .value-grid,
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .image-badge {
    bottom: 14px;
    left: 14px;
    padding: 0.7rem 1rem;
  }
  .image-badge strong {
    font-size: 1.05rem;
  }
  .feature-list li {
    padding: 0.85rem 0.9rem;
  }
  .about-page .feature-list {
    grid-template-columns: 1fr;
  }
}

/* ===================== Dealer Page ===================== */

/* Banner action buttons */
.dealer-banner-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.4rem 0 1.4rem;
}

.dealer-banner .btn-ghost {
  color: var(--green-dark);
}

/* Subtle background tint for the perks section so it stands out */
.dealer-perks {
  background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
}

/* End-to-End Support: side-by-side equal-height cards */
.dealer-support-section .mv-grid {
  align-items: stretch;
  gap: 2rem;
}

.dealer-support-section .mv-image,
.dealer-support-section .mv-text {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.dealer-support-section .mv-image::before {
  display: none;
}

.dealer-support-section .mv-image img {
  height: 100%;
  min-height: 560px;
  border: 0;
  box-shadow: none;
  border-radius: 14px;
}

.dealer-support-section .mv-image:hover img {
  transform: none;
  box-shadow: none;
}

.dealer-support-section .mv-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Who We're Looking For: same side-by-side card layout */
.dealer-eligibility-section .mv-grid {
  align-items: stretch;
  gap: 2rem;
}

.dealer-eligibility-section .mv-image,
.dealer-eligibility-section .mv-text {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.15rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}

.dealer-eligibility-section .mv-image::before {
  display: none;
}

.dealer-eligibility-section .mv-image img {
  height: 100%;
  min-height: 560px;
  border: 0;
  box-shadow: none;
  border-radius: 14px;
}

.dealer-eligibility-section .mv-image:hover img {
  transform: none;
  box-shadow: none;
}

.dealer-eligibility-section .mv-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ----- Process steps timeline (scoped under .dealer-process so it
   doesn't collide with the older .process-steps timeline used inside
   .contact-info, which lays items out horizontally) ----- */
.dealer-process {
  background: var(--bg-alt);
  padding: 4.5rem 0;
  position: relative;
}

.dealer-process .process-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  counter-reset: step;
  position: relative;
}

/* Reset the older .process-steps li flex layout for the dealer page */
.dealer-process .process-steps li {
  display: block;
  gap: 0;
  align-items: initial;
  z-index: 1;
}

.dealer-process .process-steps li > div {
  flex: initial;
}

/* Connecting dotted line behind step icons */
.dealer-process .process-steps::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background-image: linear-gradient(
    to right,
    rgba(30, 169, 73, 0.45) 50%,
    transparent 50%
  );
  background-size: 14px 2px;
  background-repeat: repeat-x;
  z-index: 0;
  pointer-events: none;
}

.dealer-process .step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.4rem 1.4rem 1.8rem;
  text-align: center;
  z-index: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dealer-process .step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(15, 23, 40, 0.1);
  border-color: var(--green-soft);
}

/* Override the older small-circle .step-num so it becomes a big
   ghost number in the top-right corner */
.dealer-process .step-num {
  position: absolute;
  top: 0.9rem;
  right: 1.2rem;
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: block;
  box-shadow: none;
  font-size: 2.4rem;
  font-weight: 800;
  color: rgba(30, 169, 73, 0.16);
  line-height: 1;
  letter-spacing: -1px;
  flex: initial;
  transition: color 0.3s ease;
}

.dealer-process .step-card:hover .step-num {
  color: rgba(30, 169, 73, 0.32);
}

.dealer-process .step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(30, 169, 73, 0.32);
  border: 4px solid #fff;
  position: relative;
  flex: initial;
}

.dealer-process .step-icon svg {
  width: 28px;
  height: 28px;
}

.dealer-process .step-card h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  color: var(--ink);
}

.dealer-process .step-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ----- Application form section ----- */
.dealer-apply {
  background: linear-gradient(180deg, #f5faf6 0%, #ffffff 100%);
}

/* Form-only layout (no left info aside) - single column, capped width */
.dealer-apply .contact-wrap {
  grid-template-columns: 1fr;
  max-width: 880px;
  margin: 0 auto;
}

/* ----- Testimonials ----- */
.dealer-testimonial {
  background: #fff;
  padding: 4.5rem 0;
}

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

.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2.2rem 1.6rem 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(15, 23, 40, 0.1);
  border-color: transparent;
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--green);
  opacity: 0.25;
  margin-bottom: 0.4rem;
}

.testimonial-card p {
  font-size: 0.97rem;
  color: var(--ink);
  margin: 0 0 1.4rem;
  line-height: 1.6;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.testimonial-author > div {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.testimonial-author strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ----- FAQ ----- */
.dealer-faq {
  background: var(--bg-alt);
  padding: 4.5rem 0;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: var(--green-soft);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  list-style: none;
  transition: color 0.2s ease, background 0.2s ease;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-q:hover {
  color: var(--green-dark);
  background: rgba(30, 169, 73, 0.04);
}

.faq-toggle {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-soft);
  display: inline-block;
  transition: background 0.25s ease, transform 0.25s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.25s ease;
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-toggle {
  background: var(--green);
  transform: rotate(90deg);
}

.faq-item[open] .faq-toggle::before,
.faq-item[open] .faq-toggle::after {
  background: #fff;
}

.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a {
  padding: 0 1.3rem 1.2rem;
  border-top: 1px solid var(--line);
}

.faq-a p {
  margin: 1rem 0 0;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ----- Dealer page responsive ----- */
@media (max-width: 980px) {
  .dealer-process .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .dealer-process .process-steps::before {
    display: none;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .dealer-process,
  .dealer-testimonial,
  .dealer-faq {
    padding: 3rem 0;
  }
  .dealer-support-section .mv-image img {
    min-height: 360px;
  }
  .dealer-eligibility-section .mv-image img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .dealer-process .process-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .dealer-process .step-card {
    padding: 2rem 1.2rem 1.5rem;
  }
  .dealer-banner-actions {
    flex-direction: column;
    width: 100%;
  }
  .dealer-banner-actions .btn {
    justify-content: center;
  }
  .faq-q {
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
  }
  .faq-a {
    padding: 0 1rem 1rem;
  }
  .dealer-support-section .mv-image,
  .dealer-support-section .mv-text {
    padding: 0.8rem;
  }
  .dealer-support-section .mv-image img {
    min-height: 280px;
  }
  .dealer-eligibility-section .mv-image,
  .dealer-eligibility-section .mv-text {
    padding: 0.8rem;
  }
  .dealer-eligibility-section .mv-image img {
    min-height: 280px;
  }
}

/* ===================== Leaf cursor effect ===================== */
.leaf-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 100;
}

.leaf {
  position: absolute;
  width: 12px;
  height: 18px;
  border-radius: 90% 0 90% 0;
  background: linear-gradient(145deg, #79ffbc, #22b45d);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.8);
  animation: floatLeaf 1.1s ease-out forwards;
}

@keyframes floatLeaf {
  20% {
    opacity: 0.95;
  }
  100% {
    opacity: 0;
    transform: translate(var(--dx), var(--dy))
      rotate(calc(var(--spin) * 1deg)) scale(0.2);
  }
}

/* ===================== Floating WhatsApp Button ===================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45),
    0 4px 12px rgba(15, 23, 40, 0.15);
  z-index: 9999;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    background 0.25s ease;
  text-decoration: none;
  color: #fff;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: whatsappPulse 2s ease-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55),
    0 6px 14px rgba(15, 23, 40, 0.18);
}

.whatsapp-float:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

.whatsapp-float-icon {
  width: 34px;
  height: 34px;
  display: block;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a2330;
  color: #fff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 18px rgba(15, 23, 40, 0.18);
}

.whatsapp-float-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #1a2330;
}

.whatsapp-float:hover .whatsapp-float-tooltip,
.whatsapp-float:focus-visible .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-2px);
}

@keyframes whatsappPulse {
  0% {
    transform: scale(1);
    opacity: 0.65;
  }
  80% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

@media (max-width: 600px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
  .whatsapp-float-icon {
    width: 30px;
    height: 30px;
  }
  .whatsapp-float-tooltip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float::before {
    animation: none;
  }
  .whatsapp-float {
    transition: none;
  }
}

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero {
    min-height: 78vh;
  }
  .hero-inner {
    padding: 3.5rem 0 3rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.9rem, 6vw, 2.8rem);
  }
  .feature-grid,
  .product-grid,
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid,
  .reach-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    padding: 1.6rem;
  }
  .about-art img {
    height: 260px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0 2rem;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
  .cta-band-inner {
    text-align: center;
    flex-direction: column;
  }
  .cta-band-actions {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 4%;
    right: 4%;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border-radius: 14px;
    padding: 0.6rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
    z-index: 130;
  }
  .menu.open {
    display: flex;
  }
  .menu a {
    padding: 0.7rem 0.9rem;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .feature-grid,
  .product-grid,
  .contact-grid,
  .stats-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 3rem 0;
  }
  .hero {
    min-height: 70vh;
  }
  .hero-copy h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.4rem);
  }
  .hero-actions .btn {
    padding: 0.65rem 1.1rem;
    font-size: 0.9rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ===================== Final mobile safety pass ===================== */
@media (max-width: 640px) {
  .container {
    width: min(1180px, 94%);
  }
  .dealer-band-copy {
    min-width: 0;
  }
  .hero-actions,
  .cta-row,
  .cta-band-actions,
  .product-row-cta,
  .dealer-band-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-actions .btn,
  .cta-row .btn,
  .cta-band-actions .btn,
  .product-row-cta .btn,
  .dealer-band-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== Contact page (split layout) ===================== */
.contact-wrap-split {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
}

.contact-wrap-split .contact-info {
  height: 100%;
}

.contact-wrap-split .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.info-ico {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.info-ico svg {
  width: 18px;
  height: 18px;
  display: block;
}

.contact-info-list li > div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.5;
  min-width: 0;
}

.info-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #d1f5dc;
  margin-bottom: 0.15rem;
}

.contact-info-list a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.contact-info-list a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  .contact-wrap-split {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 1.4rem;
  }
}

/* ===================== Careers Page ===================== */
.section.careers {
  padding: 4.5rem 0;
  position: relative;
  background: var(--bg);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 920px;
  margin: 0 auto;
}

.job-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.job-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(30, 169, 73, 0.35), rgba(15, 115, 188, 0.18));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0.7;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 169, 73, 0.35);
}

.job-card-head {
  position: relative;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 1.1rem;
  margin-bottom: 1.2rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: var(--green-soft);
  color: var(--green-darker);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.job-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(30, 169, 73, 0.18);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 4px rgba(30, 169, 73, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(30, 169, 73, 0.05); }
}

.job-type {
  display: inline-flex;
  align-items: center;
  background: rgba(15, 115, 188, 0.08);
  color: var(--blue-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
}

.job-title {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem);
  color: var(--ink);
  margin: 0.2rem 0 0.7rem;
}

.job-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
}

.job-tags li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.job-tag-ico {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 26px;
}

.job-tag-ico svg {
  width: 14px;
  height: 14px;
}

.job-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.job-section h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 0.5rem;
  letter-spacing: 0.2px;
}

.job-section .check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1.2rem;
}

.job-section .check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.job-section .check-ico {
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.job-section .check-ico svg {
  width: 12px;
  height: 12px;
}

.job-card-foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

/* WhatsApp button (re-usable) */
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.3);
  border-color: transparent;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp .btn-wa-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

/* Career apply layout */
.career-apply-wrap {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.career-whatsapp-card {
  background: linear-gradient(160deg, #128c4a 0%, #1ea949 60%, #25d366 100%);
  color: #fff;
  border-radius: 20px;
  padding: 1.8rem 1.6rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 18px 40px rgba(30, 169, 73, 0.25);
}

.career-whatsapp-card::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cw-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cw-icon svg {
  width: 30px;
  height: 30px;
}

.career-whatsapp-card h3 {
  color: #fff;
  font-size: 1.2rem;
  margin: 0;
}

.career-whatsapp-card p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.career-whatsapp-card .btn-whatsapp {
  background: #fff;
  color: #128c4a;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.career-whatsapp-card .btn-whatsapp:hover {
  background: #f5fdf8;
  color: #0f5d29;
}

.cw-meta {
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 0.9rem;
}

.cw-meta li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.88rem;
}

.cw-meta a {
  color: #fff;
  font-weight: 600;
}

.cw-meta a:hover {
  text-decoration: underline;
}

.cw-meta-ico {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.cw-meta-ico svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .career-apply-wrap {
    grid-template-columns: 1fr;
  }
  .job-section .check-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .job-card {
    padding: 1.4rem 1.2rem;
  }
  .job-card-foot {
    flex-direction: column;
  }
  .job-card-foot .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== 404 / Error Page ===================== */
.error-section {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.5rem, 5vw, 4.5rem);
  background:
    radial-gradient(ellipse at top left, rgba(30, 169, 73, 0.08), transparent 55%),
    radial-gradient(ellipse at bottom right, rgba(15, 115, 188, 0.06), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.error-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.error-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

.error-blob-a {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, rgba(30, 169, 73, 0.35), transparent 70%);
}

.error-blob-b {
  width: 420px;
  height: 420px;
  bottom: -160px;
  right: -160px;
  background: radial-gradient(circle, rgba(240, 146, 58, 0.25), transparent 70%);
}

.error-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

/* --- Visual: 4 0 4 with droplet --- */
.error-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.2rem, 1.2vw, 0.8rem);
  font-weight: 800;
  line-height: 0.9;
}

.ec-digit {
  font-size: clamp(7rem, 18vw, 14rem);
  background: linear-gradient(180deg, var(--green) 0%, var(--green-darker) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 12px 30px rgba(15, 93, 41, 0.18);
  letter-spacing: -0.04em;
}

.ec-droplet {
  position: relative;
  width: clamp(6rem, 13vw, 10rem);
  aspect-ratio: 120 / 140;
  display: inline-block;
  filter: drop-shadow(0 16px 24px rgba(15, 93, 41, 0.28));
  animation: dropFloat 4.5s ease-in-out infinite;
}

.ec-droplet svg {
  width: 100%;
  height: 100%;
  display: block;
}

.ec-spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  opacity: 0;
  animation: sparkFall 2.6s ease-in infinite;
}

.ec-spark-1 {
  left: 6%;
  top: 70%;
  animation-delay: 0s;
}

.ec-spark-2 {
  left: 50%;
  top: 95%;
  width: 7px;
  height: 7px;
  animation-delay: 0.7s;
}

.ec-spark-3 {
  right: 8%;
  top: 75%;
  width: 8px;
  height: 8px;
  animation-delay: 1.4s;
  background: #3fd07a;
}

@keyframes dropFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sparkFall {
  0% {
    transform: translateY(-6px) scale(0.6);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(40px) scale(0.4);
    opacity: 0;
  }
}

.error-shadow {
  width: 70%;
  height: 18px;
  margin-top: 1.2rem;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(15, 93, 41, 0.22) 0%,
    transparent 70%
  );
  animation: shadowPulse 4.5s ease-in-out infinite;
}

@keyframes shadowPulse {
  0%, 100% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  50% {
    transform: scaleX(0.85);
    opacity: 0.45;
  }
}

/* --- Copy --- */
.error-copy .eyebrow {
  display: inline-block;
  background: var(--green-soft);
  color: var(--green-dark);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.error-copy h1 {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
  margin: 0 0 1rem;
}

.error-copy .lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 1.6rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.error-actions .btn-bordered {
  border-color: var(--green);
  color: var(--green-dark);
  background: #fff;
}

.error-actions .btn-bordered:hover {
  background: var(--green-soft);
  transform: translateY(-2px);
}

.error-copy .breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.error-copy .breadcrumbs a {
  color: var(--green-dark);
  font-weight: 600;
}

.error-copy .breadcrumbs a:hover {
  text-decoration: underline;
}

.error-copy .breadcrumbs span[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

/* --- Helpful tiles --- */
.error-helpful {
  background: var(--bg-alt);
}

.error-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.error-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.4rem 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  overflow: hidden;
}

.error-tile::after {
  content: "";
  position: absolute;
  inset: auto -40% -40% auto;
  width: 140px;
  height: 140px;
  background: radial-gradient(
    circle,
    rgba(30, 169, 73, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.error-tile:hover {
  transform: translateY(-4px);
  border-color: var(--green-soft);
  box-shadow: var(--shadow-md);
}

.error-tile:hover::after {
  opacity: 1;
}

.error-tile-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.error-tile-ico svg {
  width: 22px;
  height: 22px;
}

.error-tile strong {
  font-size: 1rem;
  color: var(--ink);
  font-weight: 700;
}

.error-tile span:not(.error-tile-ico) {
  font-size: 0.88rem;
  color: var(--muted);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .error-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .error-copy .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .error-actions {
    justify-content: center;
  }
  .error-copy .breadcrumbs {
    justify-content: center;
  }
  .error-visual {
    order: -1;
  }
}

@media (max-width: 480px) {
  .error-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== Home: About Snippet CTA ===================== */
.about-intro-actions {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ===================== Home: Featured Bestseller ===================== */
.bestseller-spotlight {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, #f4faf6 0%, #ffffff 100%);
  overflow: hidden;
}

.bestseller-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.bestseller-decor-1 {
  width: 380px;
  height: 380px;
  background: rgba(30, 169, 73, 0.18);
  top: -100px;
  left: -120px;
}

.bestseller-decor-2 {
  width: 460px;
  height: 460px;
  background: rgba(15, 115, 188, 0.15);
  bottom: -180px;
  right: -160px;
}

.bestseller-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ----- Slider wrapper ----- */
.bestseller-slider {
  position: relative;
  z-index: 1;
}

.bestseller-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.bestseller-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

.bestseller-track.no-anim {
  transition: none;
}

.bestseller-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 0.25rem;
}

/* ----- Arrows ----- */
.bestseller-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 40, 0.12);
  transition: background 0.25s ease, color 0.25s ease,
    transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.bestseller-arrow svg {
  width: 20px;
  height: 20px;
}

.bestseller-arrow:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  transform: translateY(-50%) scale(1.06);
  box-shadow: 0 16px 28px rgba(30, 169, 73, 0.3);
}

.bestseller-arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.bestseller-arrow-prev {
  left: -22px;
}

.bestseller-arrow-next {
  right: -22px;
}

/* ----- Dots ----- */
.bestseller-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.8rem;
}

.bestseller-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 40, 0.18);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease, transform 0.2s ease;
}

.bestseller-dot:hover {
  background: rgba(30, 169, 73, 0.55);
  transform: scale(1.15);
}

.bestseller-dot.is-active {
  width: 30px;
  background: var(--green);
}

/* ----- Pill colour variants for non-Anmol-Gold slides ----- */
.bestseller-pill-blue {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

.bestseller-pill-amber {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.32);
}

.bestseller-image {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: radial-gradient(
    circle at center,
    rgba(30, 169, 73, 0.12) 0%,
    rgba(30, 169, 73, 0) 65%
  );
  border-radius: 24px;
}

.bestseller-image img {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 30px 50px rgba(15, 23, 40, 0.18));
  transition: transform 0.4s ease;
}

.bestseller-image:hover img {
  transform: translateY(-6px) scale(1.02);
}

.bestseller-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.6rem 0 1rem;
}

.bestseller-copy > p {
  color: var(--ink-soft);
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

.bestseller-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(30, 169, 73, 0.28);
  margin-bottom: 0.9rem;
}

.bestseller-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
  animation: pulseDot 1.6s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.25); }
}

.bestseller-copy .eyebrow {
  margin-left: 0.5rem;
}

.bestseller-specs {
  list-style: none;
  margin: 0 0 1.8rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.1rem;
}

.bestseller-specs li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bestseller-specs li:hover {
  border-color: var(--green-soft);
  transform: translateY(-2px);
}

.bestseller-spec-ico {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
}

.bestseller-spec-ico svg {
  width: 20px;
  height: 20px;
}

.bestseller-specs li strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

.bestseller-specs li span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 2px;
}

.bestseller-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ===================== Home: Reach Map (override existing) ===================== */
.reach-grid {
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  justify-items: stretch;
}

.reach-map {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1.5rem 1rem 1rem;
  width: 100%;
}

.reach-map-pulse {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(110, 229, 151, 0.28) 0%,
    rgba(110, 229, 151, 0) 70%
  );
  z-index: 0;
  animation: mapPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes mapPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* ===== India map from file + interactive pins ===== */
.india-map {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 1;
}

.india-map-frame {
  position: relative;
}

.india-base-map {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 24px rgba(110, 229, 151, 0.18));
  border-radius: 10px;
}

.india-pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  outline: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.india-pin-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #1ea949;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.45));
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.india-pin-glow {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(110, 229, 151, 0.55);
  animation: pinPulse 2.4s ease-in-out infinite;
  opacity: 0.85;
  z-index: 1;
}

.india-pin-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(
    calc(-50% + var(--lx, 78px)),
    calc(-50% + var(--ly, -20px))
  );
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.95);
  color: var(--green-dark);
  border: 1px solid rgba(30, 169, 73, 0.28);
  border-left: 3px solid var(--green);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.38rem 0.62rem;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.28);
  pointer-events: none;
  z-index: 3;
}

/* State-specific pin colors */
.india-pin.pin-gujarat .india-pin-dot {
  background: #ff3b30;
  border-color: #ff3b30;
}

.india-pin.pin-gujarat .india-pin-glow {
  background: rgba(255, 59, 48, 0.55);
}

.india-pin.pin-rajasthan .india-pin-dot {
  background: #ffd400;
  border-color: #ffd400;
}

.india-pin.pin-rajasthan .india-pin-glow {
  background: rgba(255, 212, 0, 0.55);
}

.india-pin.pin-maharashtra .india-pin-dot {
  background: #1f6bff;
  border-color: #1f6bff;
}

.india-pin.pin-maharashtra .india-pin-glow {
  background: rgba(31, 107, 255, 0.55);
}

.india-pin:nth-child(2n) .india-pin-glow { animation-delay: 0.4s; }
.india-pin:nth-child(3n) .india-pin-glow { animation-delay: 0.9s; }
.india-pin:nth-child(5n) .india-pin-glow { animation-delay: 1.3s; }

@keyframes pinPulse {
  0%, 100% { transform: scale(0.6); opacity: 0.85; }
  50%      { transform: scale(1.6); opacity: 0; }
}

.india-pin:hover .india-pin-dot,
.india-pin:focus-visible .india-pin-dot,
.india-pin.is-active .india-pin-dot {
  background: #ffd84a;
  border-color: #ffffff;
  transform: scale(1.2);
}

.india-pin:hover,
.india-pin:focus-visible,
.india-pin.is-active {
  transform: translate(-50%, -50%) scale(1.1);
}

.india-pin:focus-visible {
  filter: drop-shadow(0 0 6px #ffd84a);
}

/* Tooltip (popup) */
.india-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, #ffffff 0%, #f4fff7 100%);
  border-radius: 14px;
  padding: 0.6rem 0.85rem 0.6rem 0.6rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(30, 169, 73, 0.18);
  border-left: 3px solid var(--green);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, calc(-100% - 14px)) scale(0.9);
  transition: opacity 0.18s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 5;
  white-space: nowrap;
}

.india-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 14px)) scale(1);
}

.india-tooltip::after {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #ffffff;
  border-right: 1px solid rgba(30, 169, 73, 0.18);
  border-bottom: 1px solid rgba(30, 169, 73, 0.18);
  border-bottom-right-radius: 3px;
}

.india-tooltip-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffffff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.india-tooltip-logo img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.india-tooltip-info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.india-tooltip-city {
  color: var(--green-dark);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.india-tooltip-state {
  color: #2c4a3a;
  font-size: 0.78rem;
  font-weight: 600;
}

.india-tooltip-meta {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Pan-India Badge */
.reach-map-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.96);
  padding: 0.7rem 1rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  border-left: 4px solid var(--green);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.reach-map-badge strong {
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
}

.reach-map-badge span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* City chip list (clickable shortcuts) */
.india-city-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 1.4rem 0 0;
  width: 100%;
  max-width: 480px;
}

.india-city-list li { margin: 0; }

.india-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #eaf6ee;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease,
    color 0.2s ease, transform 0.2s ease;
}

.india-chip:hover,
.india-chip:focus-visible,
.india-chip.is-active {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--green-dark);
  transform: translateY(-1px);
  outline: none;
}

.india-chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee597;
  box-shadow: 0 0 0 2px rgba(110, 229, 151, 0.25);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.india-chip:hover .india-chip-dot,
.india-chip:focus-visible .india-chip-dot,
.india-chip.is-active .india-chip-dot {
  background: var(--green);
  box-shadow: 0 0 0 2px rgba(30, 169, 73, 0.25);
}

.reach .stats-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: none;
}

/* ===================== Home: Testimonials ===================== */
.testimonials {
  position: relative;
  padding: 4.5rem 0;
  background: var(--bg-alt);
  overflow: hidden;
}

.testimonials-decor {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30, 169, 73, 0.1) 0%,
    rgba(30, 169, 73, 0) 70%
  );
  top: -180px;
  right: -180px;
  pointer-events: none;
}

.testimonial-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--green-soft);
  font-weight: 700;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  color: #f5b400;
  margin-bottom: 0.9rem;
  position: relative;
  z-index: 1;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
}

.testimonial-quote {
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.6;
  margin: 0 0 1.4rem;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink);
}

.testimonial-meta span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ===================== Home: Become-a-Dealer Strip ===================== */
.dealer-band {
  position: relative;
  padding: 3.5rem 0;
  background: linear-gradient(135deg, #0f73bc 0%, #00488f 60%, #168a3a 130%);
  color: #fff;
  overflow: hidden;
}

.dealer-band-decor {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.dealer-band-decor-1 {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -100px;
}

.dealer-band-decor-2 {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: -80px;
}

.dealer-band-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.dealer-band-copy {
  flex: 1;
  min-width: 280px;
}

.dealer-band-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #d4ffe1;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.dealer-band h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 0.6rem;
}

.dealer-band-accent {
  color: #6ee597;
}

.dealer-band p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}

.dealer-band-perks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.dealer-band-perks li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
}

.dealer-band-perks svg {
  width: 18px;
  height: 18px;
  color: #6ee597;
}

.dealer-band-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ===================== Home: FAQ ===================== */
.faq {
  padding: 4.5rem 0;
  background: #fff;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: var(--green-soft);
}

.faq-item[open] {
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--green-dark);
}

.faq-icon {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease, background 0.25s ease, color 0.25s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: var(--green);
  color: #fff;
}

.faq-answer {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.65;
  border-top: 1px solid var(--line);
}

.faq-answer p {
  margin: 0.9rem 0 0;
}

.faq-answer a {
  color: var(--green-dark);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--green);
}

/* ===================== Home: Responsive overrides for new sections ===================== */
@media (max-width: 960px) {
  .bestseller-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .bestseller-image {
    order: -1;
  }
  .bestseller-image img {
    max-width: 360px;
  }
  .bestseller-arrow-prev {
    left: 6px;
  }
  .bestseller-arrow-next {
    right: 6px;
  }
  .bestseller-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
  }
  .reach-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .reach .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1100px;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .dealer-band-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .dealer-band-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .bestseller-spotlight {
    padding: 3rem 0;
  }
  .bestseller-specs {
    grid-template-columns: 1fr;
  }
  .bestseller-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .bestseller-arrow {
    display: none;
  }
  .bestseller-dots {
    margin-top: 1.2rem;
  }
  .reach .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .india-map {
    max-width: 320px;
  }
  .reach-map-pulse {
    width: 260px;
    height: 260px;
  }
  .india-tooltip {
    padding: 0.5rem 0.7rem 0.5rem 0.5rem;
    gap: 0.55rem;
  }
  .india-tooltip-logo {
    width: 32px;
    height: 32px;
  }
  .india-tooltip-logo img {
    width: 24px;
    height: 24px;
  }
  .india-tooltip-city { font-size: 0.85rem; }
  .india-tooltip-state { font-size: 0.72rem; }
  .india-tooltip-meta { font-size: 0.62rem; }
  .india-chip {
    font-size: 0.72rem;
    padding: 0.32rem 0.65rem;
  }
  .testimonials {
    padding: 3rem 0;
  }
  .testimonial-card {
    padding: 1.5rem 1.3rem;
  }
  .dealer-band {
    padding: 2.6rem 0;
  }
  .dealer-band-perks {
    flex-direction: column;
    gap: 0.5rem;
  }
  .dealer-band-actions {
    flex-direction: column;
  }
  .dealer-band-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .faq {
    padding: 3rem 0;
  }
  .faq-item summary {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
  }
  .faq-answer {
    padding: 0 1rem 1.1rem;
  }
}

@media (max-width: 480px) {
  .about-intro-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===================== Get In Touch (product pages) ===================== */
.section.get-in-touch {
  background: linear-gradient(135deg, #0f5d29 0%, #168a3a 60%, #0f73bc 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.section.get-in-touch::before,
.section.get-in-touch::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.section.get-in-touch::before {
  width: 320px;
  height: 320px;
  top: -140px;
  right: -100px;
}

.section.get-in-touch::after {
  width: 240px;
  height: 240px;
  bottom: -120px;
  left: -80px;
}

.section.get-in-touch > .container {
  position: relative;
  z-index: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-card {
  background: #ffffff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

a.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 0.5rem;
  flex: 0 0 auto;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.contact-card h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.contact-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.cta-row {
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===================== Home: Trust Strip ===================== */
.trust-strip {
  background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.4rem 0.2rem;
  border-right: 1px dashed var(--line);
  transition: transform 0.25s ease;
}

.trust-badge:last-child {
  border-right: none;
}

.trust-badge:hover {
  transform: translateY(-2px);
}

.trust-ico {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
}

.trust-ico svg {
  width: 20px;
  height: 20px;
}

.trust-badge strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.2;
}

.trust-badge span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ===================== Home: Mission & Vision ===================== */
.mv-home {
  padding: 4.5rem 0;
  background: var(--bg-alt);
}

.mv-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.mv-home-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.8rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.mv-home-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.mv-home-vision::before {
  background: linear-gradient(90deg, var(--blue), var(--blue-dark));
}

.mv-home-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.mv-home-card:hover::before {
  transform: scaleX(1);
}

.mv-home-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mv-home-ico {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
}

.mv-home-ico-blue {
  background: rgba(15, 115, 188, 0.12);
  color: var(--blue-dark);
}

.mv-home-ico svg {
  width: 28px;
  height: 28px;
}

.mv-home-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

.mv-home-tag-blue {
  color: var(--blue-dark);
  background: rgba(15, 115, 188, 0.12);
}

.mv-home-head h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--ink);
}

.mv-home-lead {
  color: var(--ink-soft);
  font-size: 0.96rem;
  margin: 0 0 1.2rem;
}

.mv-home-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1rem;
}

.mv-home-pillars li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}

.mv-home-pillars svg {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: var(--green);
  margin-top: 3px;
}

.mv-home-pillars-blue svg {
  color: var(--blue);
}

.mv-home-pillars strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.mv-home-pillars span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1px;
}

/* ===================== Home: Browse by Category Tiles ===================== */
.cat-home {
  padding: 4.5rem 0;
  background: #fff;
}

.cat-home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.cat-home-tile {
  position: relative;
  display: block;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.4rem;
  text-align: left;
  color: var(--ink);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.cat-home-tile::after {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30, 169, 73, 0.12),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cat-home-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.cat-home-tile:hover::after {
  opacity: 1;
}

.cat-home-ico {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
  z-index: 1;
}

.cat-home-tile:hover .cat-home-ico {
  background: var(--green);
  color: #fff;
}

.cat-home-ico svg {
  width: 26px;
  height: 26px;
}

.cat-home-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 220px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f4faf6 0%, #eaf6ee 100%);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  overflow: hidden;
  transition: background 0.3s ease;
}

.cat-home-img img {
  max-width: 88%;
  max-height: 88%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.cat-home-tile:hover .cat-home-img {
  background: linear-gradient(180deg, #eaf6ee 0%, #d8efdf 100%);
}

.cat-home-tile:hover .cat-home-img img {
  transform: scale(1.06);
}

.cat-home-tile h3 {
  margin: 0 0 0.4rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cat-home-tile p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  position: relative;
  z-index: 1;
}

.cat-home-count {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  position: relative;
  z-index: 1;
}

.cat-home-arrow {
  display: inline-block;
  transition: transform 0.25s ease;
}

.cat-home-tile:hover .cat-home-arrow {
  transform: translateX(4px);
}

/* ===================== Products page: synced category style polish ===================== */
#productsCategorySync .section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
}

#productsCategorySync .section-head p {
  max-width: 760px;
  margin-inline: auto;
  font-size: 1.02rem;
}

#productsCategorySync .cat-home-tile h3 {
  font-size: 1.18rem;
}

#productsCategorySync .cat-home-tile p {
  font-size: 0.95rem;
  line-height: 1.65;
}

#productsCategorySync .cat-home-count {
  padding: 0.38rem 0.82rem;
  border: 1px solid rgba(30, 169, 73, 0.35);
  border-radius: 999px;
  background: rgba(30, 169, 73, 0.1);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

#productsCategorySync .cat-home-tile:hover .cat-home-count {
  background: var(--green);
  border-color: var(--green);
  color: #fff;
}

/* ===================== Home: What We Offer (Lineup) ===================== */
.offer-home {
  padding: 4.5rem 0;
  background: var(--bg-alt);
}

.offer-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.offer-home-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.8rem 1.3rem;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.offer-home-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.offer-home-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(30, 169, 73, 0.3);
  transition: transform 0.3s ease;
}

.offer-home-card:hover .offer-home-icon {
  transform: scale(1.06) rotate(-4deg);
}

.offer-home-icon svg {
  width: 30px;
  height: 30px;
}

.offer-home-card h4 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  color: var(--ink);
}

.offer-home-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ===================== Home: Process / How We Work ===================== */
.process-home {
  position: relative;
  padding: 4.5rem 0;
  background: #fff;
  overflow: hidden;
}

.process-home-decor {
  position: absolute;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(30, 169, 73, 0.08) 0%,
    rgba(30, 169, 73, 0) 70%
  );
  bottom: -200px;
  left: -160px;
  pointer-events: none;
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--green-soft) 0,
    var(--green-soft) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 0;
}

.process-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem 1.4rem 1.6rem;
  text-align: center;
  z-index: 1;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.process-num {
  position: absolute;
  top: -16px;
  right: 18px;
  font-size: 1.6rem;
  font-weight: 800;
  color: rgba(30, 169, 73, 0.18);
  letter-spacing: 1px;
}

.process-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(30, 169, 73, 0.3);
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover .process-icon {
  transform: scale(1.06);
}

.process-icon svg {
  width: 26px;
  height: 26px;
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.08rem;
  color: var(--ink);
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ===================== Home: In-the-field Gallery ===================== */
.gallery-home {
  padding: 4.5rem 0;
  background: var(--bg-alt);
}

.gallery-track-wrap {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.gallery-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.6rem 0 1.4rem;
  width: max-content;
  animation: gallery-marquee 45s linear infinite;
  will-change: transform;
}

.gallery-track-wrap:hover .gallery-track {
  animation-play-state: paused;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

@keyframes gallery-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-track {
    animation: none;
  }
}

.gallery-item {
  flex: 0 0 260px;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
  padding: 1.2rem;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item figcaption {
  padding: 0.8rem 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  border-top: 1px solid var(--line);
  background: #fff;
}

.gallery-arrow {
  display: none !important;
}

/* ===================== Home: Responsive overrides for 2nd batch ===================== */
@media (max-width: 1100px) {
  .trust-strip-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .trust-badge:nth-child(3n) {
    border-right: none;
  }
  .trust-badge:nth-child(-n+3) {
    border-bottom: 1px dashed var(--line);
    padding-bottom: 0.8rem;
  }
}

@media (max-width: 960px) {
  .mv-home-grid {
    grid-template-columns: 1fr;
  }
  .cat-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cat-home-img {
    height: 200px;
  }
  .offer-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline::before {
    display: none;
  }
  .gallery-item {
    flex: 0 0 240px;
  }
}

@media (max-width: 640px) {
  .trust-strip {
    padding: 1.2rem 0;
  }
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  .trust-badge {
    border-right: none;
    border-bottom: none !important;
    padding: 0.4rem 0;
  }
  .trust-badge:nth-child(odd) {
    border-right: 1px dashed var(--line);
  }
  .mv-home,
  .cat-home,
  .offer-home,
  .process-home,
  .gallery-home {
    padding: 3rem 0;
  }
  .mv-home-card {
    padding: 1.6rem 1.4rem;
  }
  .mv-home-pillars {
    grid-template-columns: 1fr;
  }
  .cat-home-grid {
    grid-template-columns: 1fr;
  }
  .cat-home-img {
    height: 220px;
  }
  .offer-home-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline {
    grid-template-columns: 1fr;
  }
  .gallery-item {
    flex: 0 0 200px;
  }
  .gallery-item img {
    height: 180px;
  }
  .gallery-track {
    animation-duration: 35s;
  }
}

/* ===================== Home: Our Journey / Development Timeline ===================== */
.journey-home {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4faf6 100%);
  overflow: hidden;
}

.journey-decor {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.journey-decor-1 {
  width: 380px;
  height: 380px;
  background: rgba(30, 169, 73, 0.18);
  top: 80px;
  left: -140px;
}

.journey-decor-2 {
  width: 460px;
  height: 460px;
  background: rgba(15, 115, 188, 0.13);
  bottom: -160px;
  right: -160px;
}

.journey-home .container {
  position: relative;
  z-index: 1;
}

.journey-timeline {
  list-style: none;
  margin: 0 auto;
  padding: 1rem 0 0;
  position: relative;
  max-width: 1080px;
}

.journey-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--green) 0%, var(--green-dark) 100%);
  border-radius: 2px;
  z-index: 0;
}

.journey-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-bottom: 2.4rem;
}

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

.journey-marker {
  grid-column: 2;
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--green);
  box-shadow: 0 10px 26px rgba(30, 169, 73, 0.28);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.journey-item:hover .journey-marker {
  transform: scale(1.06);
  border-color: var(--green-dark);
  box-shadow: 0 14px 32px rgba(30, 169, 73, 0.38);
}

.journey-marker-current {
  border-color: var(--blue);
  box-shadow: 0 10px 26px rgba(15, 115, 188, 0.32);
  background: linear-gradient(135deg, #ffffff 0%, #f0f7fd 100%);
  animation: journeyPulse 2.4s ease-in-out infinite;
}

@keyframes journeyPulse {
  0%, 100% { box-shadow: 0 10px 26px rgba(15, 115, 188, 0.32), 0 0 0 0 rgba(15, 115, 188, 0.4); }
  50% { box-shadow: 0 10px 26px rgba(15, 115, 188, 0.32), 0 0 0 14px rgba(15, 115, 188, 0); }
}

.journey-year {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: 0.5px;
}

.journey-marker-current .journey-year {
  color: var(--blue-dark);
}

.journey-dot {
  display: none;
}

.journey-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  max-width: 460px;
}

.journey-item:nth-child(odd) .journey-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 2.2rem;
  text-align: right;
}

.journey-item:nth-child(even) .journey-card {
  grid-column: 3;
  justify-self: start;
  margin-left: 2.2rem;
  text-align: left;
}

.journey-card::after {
  content: "";
  position: absolute;
  top: 32px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transition: border-color 0.3s ease;
}

.journey-item:nth-child(odd) .journey-card::after {
  right: -8px;
  transform: rotate(45deg);
}

.journey-item:nth-child(even) .journey-card::after {
  left: -8px;
  transform: rotate(-135deg);
}

.journey-item:hover .journey-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-soft);
}

.journey-item:hover .journey-card::after {
  border-color: var(--green-soft);
}

.journey-card-current {
  border-color: rgba(15, 115, 188, 0.3);
  background: linear-gradient(160deg, #ffffff 0%, #f4faff 100%);
}

.journey-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  margin-bottom: 0.8rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.journey-item:nth-child(odd) .journey-icon {
  margin-left: auto;
}

.journey-card-current .journey-icon {
  background: rgba(15, 115, 188, 0.12);
  color: var(--blue-dark);
}

.journey-icon svg {
  width: 22px;
  height: 22px;
}

.journey-item:hover .journey-icon {
  background: var(--green);
  color: #fff;
}

.journey-item:hover .journey-card-current .journey-icon {
  background: var(--blue);
  color: #fff;
}

.journey-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--ink);
  line-height: 1.3;
}

.journey-card p {
  margin: 0 0 0.9rem;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.journey-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-soft);
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
}

.journey-card-current .journey-tag {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 6px 14px rgba(15, 115, 188, 0.28);
}

.journey-footnote {
  text-align: center;
  margin-top: 2.6rem;
}

.journey-footnote p {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.journey-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 700;
  color: var(--green-dark);
  text-decoration: none;
  border-bottom: 2px solid var(--green-soft);
  padding-bottom: 1px;
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.journey-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.journey-link:hover {
  color: var(--green);
  border-color: var(--green);
}

.journey-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 860px) {
  .journey-home {
    padding: 3.5rem 0;
  }
  .journey-timeline {
    padding-left: 0;
  }
  .journey-timeline::before {
    left: 32px;
    transform: none;
  }
  .journey-item {
    grid-template-columns: 64px 1fr;
    gap: 1rem;
    margin-bottom: 1.8rem;
  }
  .journey-marker {
    grid-column: 1;
    width: 64px;
    height: 64px;
    border-width: 3px;
  }
  .journey-year {
    font-size: 0.92rem;
  }
  .journey-item:nth-child(odd) .journey-card,
  .journey-item:nth-child(even) .journey-card {
    grid-column: 2;
    justify-self: stretch;
    margin: 0;
    text-align: left;
    max-width: none;
  }
  .journey-item:nth-child(odd) .journey-card::after,
  .journey-item:nth-child(even) .journey-card::after {
    left: -8px;
    right: auto;
    transform: rotate(-135deg);
  }
  .journey-item:nth-child(odd) .journey-icon {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .journey-card {
    padding: 1.3rem 1.1rem;
  }
  .journey-marker {
    width: 56px;
    height: 56px;
  }
  .journey-year {
    font-size: 0.85rem;
  }
  .journey-timeline::before {
    left: 28px;
  }
  .journey-item {
    grid-template-columns: 56px 1fr;
  }
}
