﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Rajdhani:wght@500;600;700&display=swap');

:root {
  --primary:        #39b54a;
  --primary-dark:   #2d8c3a;
  --primary-light:  #e8f8eb;
  --secondary:      #1a1a2e;
  --dark:           #111827;
  --light:          #ffffff;
  --body-bg:        #ffffff;
  --section-alt:    #f1f5f9;
  --text:           #1e293b;
  --text-muted:     #64748b;
  --gray:           #94a3b8;
  --border:         #e2e8f0;
  --card-bg:        #ffffff;
  --radius:         18px;
  --radius-sm:      10px;
  --radius-xs:      6px;
  --shadow:         0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover:   0 16px 48px rgba(57,181,74,0.18);
  --shadow-card:    0 2px 16px rgba(0,0,0,0.06);
  --transition:     all 0.4s ease;
  --container:      1320px;
  --heading-size:   clamp(1.6rem, 2.8vw, 2.4rem);
  --text-size:      16px;
  --section-py:     50px;
  --section-py-sm:  60px;
  --font-heading:   'Rajdhani', sans-serif;
  --font-body:      'Poppins', sans-serif;
  --badge-radius:   50px;
  --card-hover-up:  -8px;
  --icon-size:      56px;
  --section-label-size: 0.8rem;
}

/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: var(--text-size); }

body {
  font-family: var(--font-body);
  background: var(--body-bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   SECTION HEADING SYSTEM (Unified)
═══════════════════════════════════════════ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: var(--section-label-size);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 6px 16px;
  border-radius: var(--badge-radius);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--heading-size);
  font-weight: 700;
  line-height: 1.18;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-title span { color: var(--primary); }

.section-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head .section-desc { margin: 0 auto; }

.section-head-left { text-align: left; margin-bottom: 40px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 5px 14px;
  border-radius: var(--badge-radius);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--badge-radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(57,181,74,0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(57,181,74,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
}

.btn-outline:hover {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-white:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.btn svg { transition: transform 0.3s ease; }
.btn:hover svg { transform: translateX(4px); }

/* ═══════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.jk-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: var(--transition);
}

.jk-navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  height: 70px;
}

.jk-navbar.scrolled .nav-logo img { filter: none; }
.jk-navbar.scrolled .nav-link { color: var(--dark); }
.jk-navbar.scrolled .nav-link:hover { color: var(--primary); }
.jk-navbar.scrolled .nav-link.active { color: var(--primary); }

.nav-logo a { display: flex; align-items: center; gap: 10px; }

.nav-logo img {
  height: 52px;
  width: auto;
  /* filter: brightness(0) invert(1); */
  transition: var(--transition);
}

.jk-navbar.scrolled .nav-logo img { filter: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

.nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Get Quote Button */
.nav-quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #39b54a 0%, #2d8c3a 100%);
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(57, 181, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.nav-quote-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d8c3a 0%, #39b54a 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.nav-quote-btn:hover::before {
  left: 0;
}

.nav-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 181, 74, 0.5);
}

.nav-quote-btn iconify-icon {
  font-size: 1.15rem;
}

.jk-navbar.scrolled .nav-quote-btn {
  background: linear-gradient(135deg, #39b54a 0%, #2d8c3a 100%);
}

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  padding: 8px 16px;
  border-radius: var(--badge-radius);
  border: 1px solid rgba(255,255,255,0.25);
  transition: var(--transition);
}

.jk-navbar.scrolled .nav-call { color: var(--dark); border-color: var(--border); }

.nav-call:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  background: #25d366;
  padding: 8px 18px;
  border-radius: var(--badge-radius);
  transition: var(--transition);
}

.nav-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.jk-navbar.scrolled .nav-hamburger span { background: var(--dark); }

/* Top-to-bottom drawer animation */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.jk-mobile-drawer {
  position: fixed;
  top: -100%; left: 0; right: 0;
  width: 100%;
  height: 100vh;
  background: #fff;
  z-index: 1100;
  padding: 80px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: top 0.5s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.jk-mobile-drawer.open { top: 0; }

.drawer-close-btn {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--section-alt);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
  transition: var(--transition);
  z-index: 100;
}

.drawer-close-btn:hover { background: var(--primary); color: #fff; }

.drawer-logo {
  margin-bottom: 24px;
  text-align: center;
  z-index: 10;
}

.drawer-logo img {
  height: 48px;
  width: auto;
  display: inline-block;
  object-fit: contain;
}

.drawer-nav-link {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.04em;
  transition: var(--transition);
}

.drawer-nav-link:hover,
.drawer-nav-link.active { color: var(--primary); padding-left: 8px; }

/* Mobile Drawer Quote Button */
.drawer-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, #39b54a 0%, #2d8c3a 100%);
  padding: 14px 24px;
  border-radius: 10px;
  margin: 20px 0;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(57, 181, 74, 0.35);
  border: none;
  text-decoration: none;
}

.drawer-quote-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 181, 74, 0.5);
  background: linear-gradient(135deg, #2d8c3a 0%, #39b54a 100%);
}

.drawer-quote-btn iconify-icon {
  font-size: 1.3rem;
}

.drawer-actions {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Drawer Footer ── */
.drawer-footer {
  margin-top: auto;
  /* padding-top: 24px; */
  border-top: 1px solid var(--border);
}

.drawer-dev-credit {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  padding: 12px 0;
  line-height: 1.5;
}

.drawer-dev-credit a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.drawer-dev-credit a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.jk-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.jk-overlay.open { opacity: 1; pointer-events: all; }

/* ═══════════════════════════════════════════
   HERO SLIDER — replaces old .jk-hero
═══════════════════════════════════════════ */
.jk-hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--dark);
}

/* ── Track & Slides ── */
.hs-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100%) scale(1.04);
  z-index: 0;
  pointer-events: none;
}

.hs-slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 1;
  pointer-events: all;
}

/* ── Background image ── */
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 8s ease;
}

.hs-slide.active .hs-bg {
  transform: scale(1);
}

.hs-bg-fallback {
  background: linear-gradient(135deg, #0c1a0e 0%, #0f2d14 40%, #1a3d1e 100%);
}

/* ── Overlays ── */
.hs-overlay-dark {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,20,12,0.88) 0%,
    rgba(10, 20, 12, 0.267) 55%,
    rgba(10, 20, 12, 0) 100%
  );
  z-index: 1;
}

.hs-overlay-green {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(57,181,74,0.12) 0%,
    transparent 60%
  );
  z-index: 2;
}

.hs-grid-lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(57,181,74,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,181,74,0.07) 1px, transparent 1px);
  background-size: 64px 64px;
}

/* ── Orbs ── */
.hs-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 2;
}

.hs-orb-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(57,181,74,0.22) 0%, transparent 70%);
  top: -120px; right: -80px;
  animation: hsOrbFloat 9s ease-in-out infinite;
}

.hs-orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(45,140,58,0.15) 0%, transparent 70%);
  bottom: 80px; left: 8%;
  animation: hsOrbFloat 12s ease-in-out infinite reverse;
}

@keyframes hsOrbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.06); }
}

/* ── Content ── */
.hs-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  padding: 0 6vw;
}

.hs-content-inner {
  max-width: 600px;
}

/* Badge */
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(57,181,74,0.13);
  border: 1px solid rgba(57,181,74,0.32);
  color: #7ee88a;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--badge-radius);
  margin-bottom: 16px;
  backdrop-filter: blur(8px);
}

.hs-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: hsDotPulse 2s ease-in-out infinite;
}

@keyframes hsDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(1.6); }
}

/* Title */
.hs-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.2vw, 4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

/* Desc */
.hs-desc {
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 0.98rem);
  color: rgba(255,255,255,0.68);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 480px;
}

/* Buttons */
.hs-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hs-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 26px;
  border-radius: var(--badge-radius);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.hs-btn-primary {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  box-shadow: 0 4px 20px rgba(57,181,74,0.32);
}

.hs-btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(57,181,74,0.48);
}

.hs-btn-primary svg { transition: transform 0.3s ease; }
.hs-btn-primary:hover svg { transform: translateX(4px); }

.hs-btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.hs-btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

/* ── Bottom Stats Strip (old — removed) ── */

/* ── Floating Stats Bridge ── */
.hs-stats-bridge {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  margin-top: -52px;        /* overlap hero bottom */
  margin-bottom: 0;
  padding: 0 24px;
  pointer-events: none;
}

.hs-stats-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0px 10px rgba(0,0,0,0.5);
  overflow: hidden;
  width: 100%;
  max-width: 780px;
  pointer-events: all;
  border: 1px solid rgba(57,181,74,0.12);
}

.hs-stats-card-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 22px;
  transition: background 0.3s ease;
  cursor: default;
}

.hs-stats-card-item:hover {
  background: var(--primary-light);
}

.hs-stats-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.hs-stats-card-item:hover .hs-stats-card-icon {
  background: var(--primary);
  color: #fff;
}

.hs-stats-card-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hs-stats-card-num {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.hs-stats-card-num sup {
  font-size: 0.75em;
  color: var(--primary);
  font-weight: 700;
  vertical-align: super;
}

.hs-stats-card-lbl {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.hs-stats-card-sep {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin: 14px 0;
  flex-shrink: 0;
}

/* ── Arrows ── */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(57,181,74,0.3);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.hs-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 24px rgba(57,181,74,0.45);
}

.hs-prev { left: 28px; }
.hs-next { right: 28px; }

/* ── Dots ── */
.hs-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.hs-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.hs-dot.active {
  background: var(--primary);
  border-color: var(--primary);
  width: 28px;
  border-radius: 4px;
  box-shadow: 0 0 10px rgba(57,181,74,0.6);
}

.hs-dot:hover:not(.active) {
  background: rgba(57,181,74,0.5);
  border-color: rgba(57,181,74,0.5);
}

/* ── Progress bar ── */
.hs-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.1);
  z-index: 10;
}

.hs-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), #6ee07a);
  border-radius: 0 2px 2px 0;
}

/* ── Scroll hint ── */
.hs-scroll-hint {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hs-scroll-mouse {
  width: 22px; height: 36px;
  border: 2px solid rgba(57,181,74,0.4);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.hs-scroll-wheel {
  width: 3px; height: 7px;
  background: var(--primary);
  border-radius: 2px;
  animation: hsScrollWheel 2s ease-in-out infinite;
}

@keyframes hsScrollWheel {
  0%   { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

/* ═══════════════════════════════════════════
   OLD HERO — keep for other pages
═══════════════════════════════════════════ */
.jk-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.35;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17,24,39,0.95) 0%,
    rgba(17,24,39,0.7) 50%,
    rgba(57,181,74,0.15) 100%
  );
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,181,74,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,181,74,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(57,181,74,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(57,181,74,0.12) 0%, transparent 70%);
  bottom: 100px; left: 10%;
  animation: orbFloat 10s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-left { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(57,181,74,0.15);
  border: 1px solid rgba(57,181,74,0.3);
  color: #6ee07a;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: var(--badge-radius);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title .hl {
  color: var(--primary);
  position: relative;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* Hero Right - Floating Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px 28px;
  width: 100%;
  max-width: 320px;
  transition: var(--transition);
  animation: cardFloat 6s ease-in-out infinite;
}

.hero-card:nth-child(2) { animation-delay: -2s; max-width: 280px; }
.hero-card:nth-child(3) { animation-delay: -4s; max-width: 300px; }

@keyframes cardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(57,181,74,0.4);
  transform: translateY(-4px) !important;
}

.hero-card-icon {
  width: 44px; height: 44px;
  background: rgba(57,181,74,0.2);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  color: var(--primary);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.hero-card-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════ */
.jk-about {
  padding: var(--section-py) 0;
  background: var(--light);
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ── Image side ── */
.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: block;
}

.about-img-accent {
  position: absolute;
  top: -14px; left: -14px;
  width: 90px; height: 90px;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  opacity: 0.25;
  z-index: -1;
}

.about-img-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--primary);
  color: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 6px 24px rgba(57,181,74,0.38);
  min-width: 100px;
}

.about-img-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-img-badge-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  opacity: 0.9;
  line-height: 1.4;
  margin-top: 3px;
  display: block;
}

/* ── Content side ── */
.about-content {
  padding-right: 8px;
}

.about-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-top: 10px;
  margin-bottom: 0;
  max-width: 480px;
}

/* ── Feature list ── */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: var(--body-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.about-feature:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(57,181,74,0.1);
}

.about-feature-icon {
  width: 30px;
  height: 30px;
  background: var(--primary-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.about-feature:hover .about-feature-icon {
  background: var(--primary);
  color: #fff;
}

.about-feature-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
}

/* ═══════════════════════════════════════════
   PRODUCTS SECTION
═══════════════════════════════════════════ */
.jk-products {
  padding: var(--section-py) 0;
  background: var(--light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card is an <a> tag — reset link styles */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(57,181,74,0.25);
}

/* Image wrap */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 210px;
  background: var(--section-alt);
  flex-shrink: 0;
}

.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

/* No-image placeholder */
.product-no-img {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e8f8eb 100%);
  color: var(--gray);
}

.product-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,24,39,0.45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.product-card:hover .product-img-overlay { opacity: 1; }

.product-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--badge-radius);
  z-index: 1;
}

/* Body */
.product-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}

.product-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 4px;
  transition: gap 0.3s ease;
}

.product-card:hover .product-link { gap: 10px; }

.product-link svg { transition: transform 0.3s ease; }
.product-card:hover .product-link svg { transform: translateX(3px); }

/* CTA */
.products-cta {
  text-align: center;
  margin-top: 44px;
}

/* ═══════════════════════════════════════════
   WHY CHOOSE US — Split layout
═══════════════════════════════════════════ */
.jk-why {
  padding: var(--section-py) 0;
  background: var(--light);
  position: relative;
  overflow: hidden;
}

/* Background image with fixed attachment */
.jk-why::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/bg.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  opacity: 0.15;
  pointer-events: none;
  z-index: 1;
}

/* Light overlay for better readability */
.jk-why::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #ffffff 0%, #f9fff9 100%);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.jk-why .container { 
  position: relative; 
  z-index: 2;
}

/* ── Two-column layout ── */
.why-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 0;
}

/* ── LEFT visual panel ── */
.why-visual {
  position: sticky;
  top: 100px;
}

.why-visual-inner {
  background: linear-gradient(145deg, var(--primary-light) 0%, #fff 60%);
  border: 1px solid rgba(57,181,74,0.18);
  border-radius: 24px;
  padding: 40px 32px 36px;
  position: relative;
  overflow: hidden;
}

.why-visual-inner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(57,181,74,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-panel-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 12px;
}

.why-panel-title span { color: var(--primary); }

.why-panel-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* Panel stats list */
.why-panel-stats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.why-panel-stat {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.why-panel-stat:hover {
  border-color: var(--primary);
  background: var(--primary-light);
  transform: translateX(4px);
}

.why-panel-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  border: 1px solid rgba(57,181,74,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-panel-stat:hover .why-panel-stat-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.why-panel-stat-num {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
  line-height: 1.1;
}

.why-panel-stat-lbl {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
  margin-top: 1px;
}

/* ── RIGHT feature rows ── */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0 20px;
  padding: 20px 0;
  position: relative;
  /* background: #ffffff65; */
  border-radius: 14px;
  transition: all 0.3s ease;
}

.why-row:hover {
  /* background: #f8faf9; */
  box-shadow: 0 4px 16px rgba(57,181,74,0.1);
}

/* Scroll-reveal animation */
.why-row-anim {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.why-row-anim.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Vertical connector line */
.why-row-line {
  position: absolute;
  left: 25px;
  top: 72px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(57,181,74,0.2) 0%, transparent 100%);
}

.why-row:last-child .why-row-line { display: none; }

/* Icon box */
.why-row-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--primary-light);
  border: 1.5px solid rgba(57,181,74,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  margin-top: 2px;
}

.why-row-icon iconify-icon {
  color: var(--primary);
  transition: color 0.3s ease;
  display: flex;
}

.why-row:hover .why-row-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(57,181,74,0.3);
}

.why-row:hover .why-row-icon iconify-icon {
  color: #fff;
}

/* Body */
.why-row-body { 
  padding-top: 0;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.why-row-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.why-row-num {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  flex-shrink: 0;
  border: 1px solid rgba(57,181,74,0.2);
}

/* Title with reveal underline on hover */
.why-row-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.why-row-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.4s ease;
}

.why-row:hover .why-row-title::after { width: 100%; }

.why-row-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 480px;
}

/* ── Tractor sticker — decorative bg element ── */
.why-tractor-sticker {
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 300px;
  height: 300px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  color: var(--primary);
  transform: scaleX(-1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-tractor-sticker iconify-icon {
  width: 300px;
  height: 300px;
  color: var(--primary);
  display: block;
}

/* ── Small image sticker in top right ── */
.why-image-sticker {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: auto;
  pointer-events: none;
  z-index: 2;
  opacity: 0.9;
  transform: rotate(-5deg);
  filter: drop-shadow(4px 4px 8px rgba(0,0,0,0.15));
}

.why-image-sticker img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* Larger image on desktop */
@media (min-width: 1200px) {
  .why-image-sticker {
    width: 160px;
    top: 40px;
    right: 40px;
  }
}

/* Make sure feature rows sit above the sticker */
.why-features {
  position: relative;
}

.why-row {
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */

.jk-testimonials {
  padding: var(--section-py) 0;
  background: var(--light);
}

/* Wrapper: arrows + viewport */
.testi-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  /* Extra vertical padding so hovered cards aren't clipped */
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -10px;
  margin-bottom: -10px;
}

/* Viewport clips the track horizontally only */
.testi-viewport {
  flex: 1;
  overflow: hidden;
  /* Allow vertical overflow so hover lift is visible */
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: -10px;
  margin-bottom: -10px;
}

/* Track: flex row of cards */
.testi-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  /* Vertical padding so box-shadow isn't clipped */
  padding-top: 10px;
  padding-bottom: 10px;
}

/* ── Card ── */
.testi-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 0;
  border-radius: var(--radius);
  padding: 24px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  /* Base look: white */
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-card);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Green fill layer — sits behind content, fades in/out */
.testi-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #39b54a;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.7s ease;
  z-index: 0;
  pointer-events: none;
}

/* All direct children sit above the fill layer */
.testi-card > * {
  position: relative;
  z-index: 1;
}

.testi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(57,181,74,0.3);
}

/* Green state — JS adds this class */
.testi-card--green {
  border-color: #39b54a;
}

.testi-card--green::after {
  opacity: 1;
}

.testi-card--green:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(57,181,74,0.45);
  border-color: #2d8c3a;
}

/* Quote icon */
.testi-quote {
  color: #39b54a;
  line-height: 1;
  opacity: 0.7;
  transition: color 0.7s ease, opacity 0.7s ease;
}

.testi-card--green .testi-quote {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  transition: color 0.7s ease;
}

.testi-card--green .testi-stars {
  color: #ffe066;
}

/* Text */
.testi-text {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.75;
  font-style: italic;
  flex: 1;
  transition: color 0.7s ease;
}

.testi-card--green .testi-text {
  color: rgba(255,255,255,0.88);
}

/* Author */
.testi-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  margin-top: auto;
  transition: border-color 0.7s ease;
}

.testi-card--green .testi-author {
  border-top-color: rgba(255,255,255,0.25);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #39b54a, #2d8c3a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.7s ease;
}

.testi-card--green .testi-avatar {
  background: rgba(255,255,255,0.25);
}

.testi-author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testi-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.7s ease;
}

.testi-card--green .testi-name {
  color: #fff;
}

.testi-role {
  font-size: 0.72rem;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.7s ease;
}

.testi-card--green .testi-role {
  color: rgba(255,255,255,0.72);
}

/* ── Arrow buttons ── */
.testi-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
  cursor: pointer;
  z-index: 2;
}

.testi-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(57,181,74,0.35);
}

/* ── Dots ── */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testi-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(57,181,74,0.5);
}

.testi-dot:hover:not(.active) {
  background: rgba(57,181,74,0.4);
}

/* Keep old slider-dot class working too */
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  padding: 0;
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.slider-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.jk-cta {
  padding: var(--section-py) 0;
  background: var(--body-bg);
}

/* Compact card — not full width */
.cta-card {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(130deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 24px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  box-shadow: 0 20px 60px rgba(57,181,74,0.3);
}

/* Grid lines overlay */
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  border-radius: inherit;
  pointer-events: none;
}

/* Decorative orbs */
.cta-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

.cta-orb-1 {
  width: 260px; height: 260px;
  background: rgba(255,255,255,0.08);
  top: -80px; right: -60px;
}

.cta-orb-2 {
  width: 160px; height: 160px;
  background: rgba(255,255,255,0.06);
  bottom: -50px; left: 10%;
}

/* Left: text */
.cta-body {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  backdrop-filter: blur(8px);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-title span {
  color: rgba(255,255,255,0.75);
}

.cta-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 420px;
}

/* Right: actions */
.cta-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

/* Call button — styled differently from the quote btn */
.cta-call-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 10px 20px 10px 10px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}

.cta-call-btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.cta-call-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-call-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  line-height: 1;
  margin-bottom: 3px;
}

.cta-call-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.jk-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.jk-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(57,181,74,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57,181,74,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.footer-brand-logo {
  height: 52px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-xs);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(57,181,74,0.3);
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links-list a::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.footer-links-list a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-links-list a:hover::before { transform: scale(1.5); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact-icon {
  width: 32px; height: 32px;
  background: rgba(57,181,74,0.15);
  border-radius: var(--radius-xs);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.footer-contact-text strong {
  display: block;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 2px;
}

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-copyright a {
  color: var(--primary);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--primary); }

/* ═══════════════════════════════════════════
   FLOATING ELEMENTS
═══════════════════════════════════════════ */
/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(57,181,74,0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 900;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px);
}

/* Floating WhatsApp */
.float-whatsapp {
  position: fixed;
  bottom: 40px;
  right: 28px;
  width: 52px; height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 900;
  transition: var(--transition);
  animation: waBounce 3s ease-in-out infinite;
}

.float-whatsapp:hover {
  background: #1da851;
  transform: scale(1.1);
  animation: none;
}

@keyframes waBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Cursor — base reset only, styles handled in header.php */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99999;
}

/* ═══════════════════════════════════════════
   LOADER
═══════════════════════════════════════════ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.loader-logo {
  height: 60px;
  width: auto;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

.loader-bar {
  width: 200px; height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  border-radius: 2px;
  animation: loaderFill 1.5s ease-in-out infinite;
}

@keyframes loaderFill {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

.loader-text {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: var(--font-body);
}
