/* ================================================================
   JKFM WEBSITE — STYLESHEET
   Color Palette:
   - Dark Green:  #1B4332
   - Mid Green:   #2D6A4F
   - Gold:        #C9A84C
   - Gold Light:  #E8C97A
   - Blue:        #1E6091
   - Blue Light:  #2E86C1
   - Dark BG:     #0D1F16
   - White:       #FFFFFF
   - Light Grey:  #F4F6F4
   - Body Text:   #2C2C2C
================================================================ */

:root {
  --green-dark:   #1B4332;
  --green-mid:    #2D6A4F;
  --green-light:  #52B788;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --blue:         #1E6091;
  --blue-light:   #2E86C1;
  --dark-bg:      #0D1F16;
  --white:        #FFFFFF;
  --off-white:    #F4F6F4;
  --light-grey:   #E8EDE8;
  --text:         #2C2C2C;
  --text-light:   #6B7B6B;
  --border:       #D4E0D4;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--text); background: var(--white); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Montserrat', sans-serif; line-height: 1.1; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
p  { line-height: 1.8; color: var(--text-light); }
.gold  { color: var(--gold); }
.blue  { color: var(--blue-light); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-nav {
  display: inline-block;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-nav:hover { background: var(--gold-light); }
.btn-full { width: 100%; text-align: center; padding: 1rem; }

/* ── SECTION COMMON ── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45,106,79,0.1);
  padding: 0.35rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  border: 1px solid rgba(45,106,79,0.2);
}
.tag-gold {
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.3);
}
.section-title {
  margin-bottom: 1rem;
  color: var(--text);
}
.section-subtitle {
  max-width: 600px;
  margin: 0 auto 4rem;
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-light);
  line-height: 1.85;
}
.section-subtitle.left { text-align: left; margin: 0 0 2rem; }

/* ================================================================
   NAVIGATION
================================================================ */
.nav-wrapper {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13, 31, 22, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-shrink: 0;
}
.logo-jk {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold);
}
.logo-fm {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  margin-left: auto;
}

/* ================================================================
   HERO
================================================================ */
.hero {
  min-height: 100vh;
  background: #050e08;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 2rem 5rem;
  position: relative;
  overflow: hidden;
}

/* Gradient blob — the "healthytogether" glow effect in JKFM colors */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: conic-gradient(
    from 180deg at 50% 40%,
    #1B4332 0deg,
    #C9A84C 80deg,
    #2D6A4F 160deg,
    #1E6091 220deg,
    #C9A84C 280deg,
    #1B4332 360deg
  );
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: blobPulse 8s ease-in-out infinite;
}
@keyframes blobPulse {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.35; }
  50%       { transform: translateX(-50%) scale(1.08); opacity: 0.42; }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 99px;
  padding: 0.4rem 1.1rem;
  margin-bottom: 2rem;
}
.hero-headline {
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.05;
}
.hero-sub {
  color: rgba(255,255,255,0.55);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.85;
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0;
  margin-top: 5rem;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 16px;
  padding: 0;
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.stat-item {
  flex: 1;
  min-width: 140px;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(201,168,76,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-top: 0.5rem;
}

/* ================================================================
   MARQUEE TICKER
================================================================ */
.marquee-section {
  background: var(--dark-bg);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1.2rem 0;
  overflow: hidden;
}
.marquee-label {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 0.8rem;
}
.marquee-track-wrapper {
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
  padding: 0 2.5rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.marquee-item:hover { color: var(--gold); }
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   SERVICES SECTION
================================================================ */
.services-section {
  padding: 6rem 0;
  background: var(--off-white);
  text-align: center;
}
.services-section .section-title { margin-bottom: 0.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  opacity: 0;
  transform: translateY(24px);
}
.service-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(27,67,50,0.12);
  border-color: var(--green-mid);
}
.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.service-card h3 { color: var(--green-dark); }
.service-card p  { font-size: 0.92rem; }

/* ================================================================
   CLEANING SECTION
================================================================ */
.cleaning-section {
  padding: 6rem 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.cleaning-bg-panel {
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 42%;
  background: linear-gradient(135deg, var(--dark-bg), #1a3a2a);
  border-radius: 0 0 0 120px;
}
.cleaning-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cleaning-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.cleaning-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--gold);
  color: var(--dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 900;
  margin-top: 0.2rem;
}
.cleaning-list strong { display: block; color: var(--green-dark); margin-bottom: 0.25rem; }
.cleaning-list p { font-size: 0.9rem; margin: 0; }

/* Cleaning visual */
.cleaning-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cleaning-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem;
}
.ccard {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  transition: transform 0.25s, background 0.25s;
}
.ccard:hover { transform: scale(1.04); background: rgba(201,168,76,0.12); }
.ccard-icon { font-size: 2.5rem; }
.ccard-1 { animation: floatCard 3s ease-in-out infinite; }
.ccard-2 { animation: floatCard 3s ease-in-out 0.5s infinite; }
.ccard-3 { animation: floatCard 3s ease-in-out 1s infinite; }
.ccard-4 { animation: floatCard 3s ease-in-out 1.5s infinite; }
@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}

/* ================================================================
   WHY SECTION — VERTICAL SCROLL TICKER
================================================================ */
.why-section {
  padding: 6rem 0;
  background: var(--off-white);
}
.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.why-left p { margin-bottom: 1rem; }
.why-left .btn-primary { margin-top: 1rem; }
.why-left .section-title { margin-bottom: 1.5rem; }

/* Vertical scroll ticker */
.scroll-ticker {
  height: 360px;
  overflow: hidden;
  position: relative;
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
}
.scroll-ticker::before,
.scroll-ticker::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.scroll-ticker::before {
  top: 0;
  background: linear-gradient(to bottom, var(--off-white), transparent);
}
.scroll-ticker::after {
  bottom: 0;
  background: linear-gradient(to top, var(--off-white), transparent);
}
.scroll-ticker-inner {
  animation: tickerUp 12s linear infinite;
}
.ticker-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.ticker-item:last-child { border-bottom: none; }
.ticker-item:hover { opacity: 1; color: var(--gold); }
@keyframes tickerUp {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

/* ================================================================
   PARTNERS SECTION
================================================================ */
.partners-section {
  padding: 5rem 0;
  background: var(--white);
  text-align: center;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
}
.partner-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.partner-card:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
}
.partners-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: center;
}

/* ================================================================
   CONTACT SECTION
================================================================ */
.contact-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark-bg), #1a3a2a);
  text-align: center;
}
.contact-section .section-tag  { color: var(--gold); background: rgba(201,168,76,0.1); }
.contact-section .section-title { color: var(--white); }
.contact-section .section-subtitle { color: rgba(255,255,255,0.55); }

.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  text-align: left;
  margin-top: 2rem;
}
.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group select option { background: var(--dark-bg); }
.form-group textarea { resize: vertical; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
}
.contact-info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.ci-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-item strong { display: block; color: var(--white); margin-bottom: 0.2rem; font-size: 0.9rem; }
.contact-info-item p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin: 0; }

/* ================================================================
   FOOTER
================================================================ */
.footer {
  background: #060f09;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-top: 0.75rem;
  line-height: 1.7;
}
.footer-links h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-links ul li {
  margin-bottom: 0.6rem;
}
.footer-links ul li a,
.footer-links ul li {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
}

/* ================================================================
   PROBLEM SECTION
================================================================ */
.problem-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.problem-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.problem-card.visible { opacity: 1; transform: translateY(0); }
.problem-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.problem-card h3 { color: var(--green-dark); margin-bottom: 0.5rem; }
.problem-callout {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  margin-top: 2.5rem;
  background: #fff8ec;
  border: 1px solid #e8c97a;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 1.5rem 2rem;
  text-align: left;
}
.callout-icon { font-size: 1.8rem; flex-shrink: 0; }
.problem-callout strong { display: block; color: var(--green-dark); font-size: 1.05rem; margin-bottom: 0.4rem; font-family: 'Montserrat', sans-serif; }
.problem-callout p { margin: 0; }

/* ================================================================
   CENTRAL HUB SECTION
================================================================ */
.hub-section { padding: 6rem 0; background: var(--off-white); }
.hub-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hub-text p { margin-bottom: 1rem; }
.hub-quote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0 !important;
  font-style: italic;
}
.hub-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.hub-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.hub-diagram { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.hub-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Montserrat', sans-serif;
}
.hub-center {
  background: var(--dark-bg);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 120px;
  height: 120px;
  justify-content: center;
  font-size: 0.8rem;
}
.hub-center strong { color: var(--gold); font-size: 1rem; }
.hub-center span { color: rgba(255,255,255,0.6); font-size: 0.68rem; letter-spacing: 0.06em; }
.hub-node-icon { font-size: 1.6rem; }
.hub-spokes {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hub-outer {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 0.8rem;
  color: var(--green-dark);
  width: 100px;
  text-align: center;
}

/* ================================================================
   COMPARISON SECTION
================================================================ */
.comparison-section {
  padding: 6rem 0;
  background: var(--white);
  text-align: center;
}
.section-title.text-center { text-align: center; }
.section-tag.tag-center { display: block; text-align: center; }
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-top: 3rem;
  text-align: left;
  align-items: start;
}
.comparison-col { border-radius: 16px; padding: 2.5rem; }
.chaos-col {
  background: #fff5f5;
  border: 1px solid #fecaca;
}
.control-col {
  background: #f0faf4;
  border: 1px solid #86efac;
}
.comparison-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: var(--text);
}
.comparison-list { display: flex; flex-direction: column; gap: 1.5rem; }
.comparison-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.comp-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  background: rgba(239,68,68,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.comp-gold {
  background: rgba(201,168,76,0.1) !important;
}
.comparison-list strong { display: block; color: var(--text); margin-bottom: 0.25rem; font-size: 0.95rem; }
.comparison-list p { font-size: 0.88rem; margin: 0; }
.comparison-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
  min-width: 60px;
}
.divider-line { width: 2px; height: 60px; background: var(--border); }
.divider-arrow {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
}

/* ================================================================
   PROCESS SECTION
================================================================ */
.process-section {
  padding: 6rem 0;
  background: var(--dark-bg);
}
.process-section .section-tag { color: var(--gold); background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.2); }
.process-section .section-title { color: var(--white); }
.process-section .section-subtitle { color: rgba(255,255,255,0.5); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.5rem;
  margin-top: 3rem;
  align-items: start;
}
.process-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step:hover { background: rgba(255,255,255,0.08); border-color: var(--gold); }
.process-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.process-icon { font-size: 2rem; margin-bottom: 1rem; }
.process-step h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 0.5rem; }
.process-step p { color: rgba(255,255,255,0.55); font-size: 0.85rem; }
.process-connector {
  font-size: 1.5rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 4rem;
  opacity: 0.6;
}

/* ================================================================
   ONBOARDING SECTION
================================================================ */
.onboarding-section {
  padding: 6rem 0;
  background: var(--off-white);
  text-align: center;
}
.onboarding-track { position: relative; margin-top: 3rem; }
.onboarding-line {
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--green-mid), var(--gold));
  border-radius: 99px;
}
.onboarding-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.onboard-step {
  text-align: center;
  padding: 0 0.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.onboard-step.visible { opacity: 1; transform: translateY(0); }
.onboard-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark-bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  border: 4px solid var(--off-white);
  box-shadow: 0 0 0 3px var(--gold);
}
.onboard-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.onboard-step h3 { font-size: 0.95rem; color: var(--green-dark); margin-bottom: 0.5rem; }
.onboard-step p { font-size: 0.85rem; }
.onboarding-note {
  margin-top: 3rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ================================================================
   AUDIT / TRANSPARENCY SECTION
================================================================ */
.audit-section {
  padding: 5rem 0;
  background: var(--white);
}
.audit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.audit-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.audit-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--text); font-size: 0.95rem; }
.audit-diamond { color: var(--gold); flex-shrink: 0; }
.audit-receives {
  background: var(--dark-bg);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
}
.audit-receives h3 {
  font-family: 'Montserrat', sans-serif;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.audit-receives ul { list-style: none; display: flex; flex-direction: column; gap: 1rem; }
.audit-receives ul li { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* CONTACT NEXT STEPS */
.contact-next-steps {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1rem;
}
.contact-next-steps h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-next-steps ol { list-style: decimal; padding-left: 1.2rem; }
.contact-next-steps ol li { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin-bottom: 0.5rem; }

/* HERO PILLARS */
.hero-pillars {
  margin-top: 2rem;
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.pillar-divider { color: var(--gold); opacity: 0.5; }

/* FOOTER LOGO */
.footer-logo { display: flex; gap: 1rem; align-items: center; }
.footer-logo-img { height: 38px; width: auto; flex-shrink: 0; }
.footer-brand-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.footer-brand-sub {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

/* NAV LOGO UPDATE */
.nav-logo { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.nav-logo-icon { flex-shrink: 0; height: 48px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.2;
}
.logo-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

/* ================================================================
   TESTIMONIALS SECTION
================================================================ */
.testimonials-section {
  padding: 6rem 0;
  background: var(--dark-bg);
  text-align: center;
}
.testimonials-section .section-tag { color: var(--gold); background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.2); }
.testimonials-section .section-title { color: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); background: rgba(255,255,255,0.07); }
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 0.1em; }
.testimonial-text {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-author { display: flex; gap: 1rem; align-items: center; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-mid);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--white);
  flex-shrink: 0;
}
.testimonial-author strong { display: block; color: var(--white); font-size: 0.9rem; }
.testimonial-author span { color: rgba(255,255,255,0.4); font-size: 0.78rem; }

/* ================================================================
   BLOG SECTION
================================================================ */
.blog-section {
  padding: 6rem 0;
  background: var(--off-white);
  text-align: center;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  text-align: left;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}
.blog-card.visible { opacity: 1; transform: translateY(0); }
.blog-card:hover { box-shadow: 0 12px 32px rgba(27,67,50,0.1); transform: translateY(-4px); }
.blog-tag {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45,106,79,0.08);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  width: fit-content;
}
.blog-card h3 { color: var(--green-dark); font-size: 1rem; line-height: 1.4; flex: 1; }
.blog-card p { font-size: 0.88rem; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.blog-read { font-size: 0.78rem; color: var(--text-light); font-family: 'Montserrat', sans-serif; }
.blog-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--green-mid);
  transition: color 0.2s;
}
.blog-link:hover { color: var(--gold); }

/* ================================================================
   FAQ SECTION
================================================================ */
.faq-section {
  padding: 6rem 0;
  background: var(--white);
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.faq-intro p { margin-top: 1rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.3rem 0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--green-mid); }
.faq-q.open { color: var(--gold); }
.faq-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s;
  flex-shrink: 0;
  color: var(--gold);
}
.faq-q.open .faq-arrow { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a.open {
  max-height: 400px;
  padding-bottom: 1.3rem;
}
.faq-a p { font-size: 0.92rem; line-height: 1.8; }

/* ================================================================
   RESPONSIVE
================================================================ */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .process-connector { display: none; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .btn-nav   { display: none; }
  .nav-toggle { display: block; }

  .problem-grid { grid-template-columns: 1fr; }
  .hub-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hub-diagram { flex-direction: row; flex-wrap: wrap; }
  .comparison-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .comparison-divider { flex-direction: row; padding: 0; }
  .divider-line { width: 60px; height: 2px; }

  .cleaning-inner { grid-template-columns: 1fr; }
  .cleaning-bg-panel { display: none; }

  .onboarding-steps { grid-template-columns: 1fr 1fr; }
  .onboarding-line { display: none; }

  .audit-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 2.5rem; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 100px 1.5rem 3rem; }
  .hero-stats { gap: 1.5rem; padding: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .onboarding-steps { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
}

/* ============================================================
   SUBPAGE STYLES
============================================================ */

/* Hero variant for subpages — slightly shorter than homepage hero */
.hero-subpage { min-height: 60vh; padding: 8rem 2rem 4rem; }

/* Nav active link */
.nav-active { color: var(--gold) !important; }

/* Services detail cards */
.service-card-detail { text-align: left; }
.service-detail-list {
  margin-top: 0.75rem;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-detail-list li {
  font-size: 0.85rem;
  color: var(--text-muted, #555);
  padding-left: 1rem;
  position: relative;
}
.service-detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Why JKFM section */
.why-section { padding: 5rem 2rem; background: #f8f8f6; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.why-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 0.75rem; }
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* CTA Strip */
.cta-strip {
  background: var(--dark-green, #1B4332);
  padding: 4rem 2rem;
  text-align: center;
}
.cta-strip-inner h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.cta-strip-inner p {
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.5rem;
}

/* 3-step process grid variant */
.process-grid-3 { grid-template-columns: 1fr auto 1fr auto 1fr; }

/* Section CTA center */
.section-cta-center { text-align: center; margin-top: 2.5rem; }
