/* =====================================================
   Future Energy Solutions — Premium Solar Green Theme
   Rich Emerald, Mint Accents, Warm Energy Gold & Distinct Visual Sections
   ===================================================== */

:root {
  /* VIBRANT SOLAR GREEN BRAND PALETTE */
  --bg-main:         #f8fafc; /* Crisp, clean slate background */
  --bg-surface:      #ffffff;
  --bg-card:         #ffffff;
  --bg-card-hover:   #f0fdf4;
  --bg-input:        #f1f5f9;
  
  --border-color:    #e2e8f0;
  --border-hover:    #059669;

  --text-main:       #0f172a; /* Slate text for highest legibility */
  --text-muted:      #475569;
  --text-inverse:    #ffffff;

  /* BRAND ACCENTS */
  --primary:         #059669; /* Emerald Green */
  --primary-hover:   #047857;
  --primary-light:   #ecfdf5;
  --primary-glow:    rgba(5, 150, 105, 0.15);

  --accent-gold:     #d97706; /* Energy Amber/Gold */
  --accent-gold-glow:rgba(217, 119, 6, 0.15);
  --accent-blue:     #0284c7;

  --shadow-sm:       0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md:       0 4px 16px rgba(15, 23, 42, 0.08);
  --shadow-lg:       0 12px 36px rgba(15, 23, 42, 0.12);

  --nav-bg:          rgba(255, 255, 255, 0.95);
  /* NEUTRAL OVERLAY (No green tint on photos, crystal clear imagery) */
  --hero-overlay:    linear-gradient(180deg, rgba(15,23,42,0.3) 0%, rgba(15,23,42,0.75) 100%);
}

/* ── BASE RESET & TYPOGRAPHY ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.02em;
  color: #064e3b;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all 0.25s ease;
}

a:hover {
  color: var(--primary-hover);
}

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

/* ── LAYOUT CONTAINERS & SECTION COLORING ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

/* SECTION BACKGROUND VARIATIONS */
.bg-mint-surface {
  background: linear-gradient(180deg, #ecfdf5 0%, #f0fdf4 100%);
}

.bg-white-surface {
  background-color: #ffffff;
}

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

.accent-gradient {
  background: linear-gradient(135deg, #059669 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 999px;
  padding: 6px 18px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.sec-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.sec-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--primary-glow);
  color: #ffffff;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1db954;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.08rem;
  border-radius: 14px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.88rem;
  border-radius: 10px;
}

/* ── TOP ANNOUNCEMENT TICKER MARQUEE ── */
.top-announcement-bar {
  background: linear-gradient(90deg, #047857 0%, #059669 50%, #d97706 100%);
  color: #ffffff;
  padding: 9px 0;
  font-size: 0.85rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
}

.ticker-move {
  display: inline-flex;
  gap: 60px;
  animation: tickerSlide 25s linear infinite;
}

.ticker-move:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-announcement-link {
  color: #fef08a;
  text-decoration: underline;
  font-weight: 700;
  margin-left: 6px;
  transition: color 0.2s ease;
}

.top-announcement-link:hover {
  color: #ffffff;
}

@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--nav-bg);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-gold) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 14px var(--primary-glow);
}

.logo-image {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.logo-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* MOBILE MENU TOGGLE */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SLIDER CAROUSEL SECTION ── */
.hero-slider-section {
  position: relative;
  height: clamp(560px, 85vh, 760px);
  overflow: hidden;
  background-color: #000;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.hero-slide.active .slide-bg {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.hero-container {
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-content {
  max-width: 680px;
  color: #ffffff;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badge {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;

}

.trust-item {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* CAROUSEL ARROWS & DOTS */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.arrow-left { left: 24px; }
.arrow-right { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  width: 32px;
  background: var(--primary);
}

/* HERO METRICS STRIP */
.hero-metrics-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(11, 20, 15, 0.75);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(7, auto);
  align-items: center;
  justify-content: space-between;
}

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

.m-val {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
}

.m-lbl {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.metric-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
}

/* ── EYE-CATCHING SLOGAN BANNER ── */
.slogan-banner-section {
  background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #047857 100%);
  color: #ffffff;
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(5, 150, 105, 0.2);
}

.slogan-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fef08a;
  border-radius: 999px;
  padding: 6px 20px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.slogan-heading {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slogan-sub {
  font-size: 1.12rem;
  color: #ecfdf5;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 600;
  line-height: 1.6;
}

/* ── INTERACTIVE HOMEPAGE CALCULATOR WIDGET ── */
.calc-quote-note {
  background: #fefce8;
  border: 1px solid #fef08a;
  color: #854d0e;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 28px;
  text-align: left;
}
.home-calc-section {
  padding-top: 40px;
}

.calc-widget-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
}

.slider-control-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 36px;
}

.slider-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 700;
}

.bill-val-display {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 18px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.custom-range-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: var(--border-color);
  outline: none;
  appearance: none;
  cursor: pointer;
}

.custom-range-slider::-webkit-slider-thumb {
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.custom-range-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 600;
}

.calc-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.res-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}

.res-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.res-highlight {
  border-color: var(--primary);
  background: var(--primary-light);
}

.res-lbl {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.res-val {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
}

.res-val.green-text { color: var(--primary); }
.res-val.gold-text { color: var(--accent-gold); }

.res-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.calc-cta-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── SOLAR SOLUTIONS GRID ── */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.35s ease;
}

.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.sol-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.sol-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-card:hover .sol-img-wrap img {
  transform: scale(1.08);
}

.sol-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--primary);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}

.badge-blue { background: var(--accent-blue); }
.badge-amber { background: var(--accent-gold); }

.sol-body {
  padding: 28px;
}

.sol-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.sol-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.sol-body p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.sol-specs {
  list-style: none;
  margin-bottom: 24px;
  background: var(--bg-surface);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.sol-specs li {
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-main);
}

.sol-specs li:last-child { margin-bottom: 0; }

.sol-link {
  font-weight: 700;
  font-size: 0.92rem;
}

/* ── 4-STEP WORKFLOW ── */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.step-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.step-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.step-card h4 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.testi-stars {
  color: var(--accent-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.testi-info {
  display: flex;
  flex-direction: column;
}

.t-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.t-loc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #047857 100%);
  color: #14532d;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #14532d;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-inner p {
  font-size: 1.15rem;
  color: #000000;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── FLOATING ACTION WIDGET ── */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #14532d;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.float-wa { background: #25d366; }
.float-call { background: var(--primary); }

.float-btn:hover {
  transform: scale(1.12);
}

/* ── STATS BAR ── */
.stats-outer {
  padding: 0 0 60px;
  position: relative;
  z-index: 30;
}

.stats-bar {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  padding: 36px 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid var(--border-color);
  margin-top: -30px;
  align-items: center;
  justify-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12px;
  width: 100%;
  grid-column: span 1;
}

.stat-sep {
  display: none;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12px;
  width: 100%;
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  text-align: center;
  width: 100%;
  display: block;
}

.stat-lbl {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-top: 6px;
  text-align: center;
  width: 100%;
  display: block;
  line-height: 1.4;
}



/* ── FOOTER REPAIRED ── */
.footer {
  background-color: #0b1320; /* Deep slate navy for elegant, sharp footer contrast */
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 72px 0 28px;
  color: #94a3b8;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.f-icon { font-size: 1.5rem; }

.footer-logo-image {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 8px;
}

.f-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-desc {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-badges {
  display: flex;
  gap: 10px;
}

.f-badge {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #f1f5f9;
  font-weight: 600;
}

.footer h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #34d399; /* Mint emerald hover link */
}

.footer-contact-item {
  font-size: 0.9rem;
  color: #f1f5f9;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-wa-btn {
  margin-top: 14px;
  display: inline-flex;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
  color: #64748b;
}

/* ── RESPONSIVE MEDIA QUERIES ── */
@media (max-width: 1024px) {
  .solutions-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .calc-results-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 24px;
    display: none;
  }

  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }

  .hero-slider-section { height: 680px; }
  .workflow-grid { grid-template-columns: 1fr; }
  .calc-results-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .metrics-grid { display: none; }
  .slider-arrow { display: none; }
}


/* CARDS GRIDS */
.cards-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.cards-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}

/* INFO CARD */
.info-card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:32px 24px;text-align:center;transition:var(--transition)}
.info-card:hover{box-shadow:var(--shadow);transform:translateY(-5px);border-color:var(--green-200)}
.ic-icon{font-size:2.5rem;margin-bottom:14px}
.info-card h3{font-size:1.08rem;font-weight:700;color:var(--gray-900);margin-bottom:10px}
.info-card p{font-size:.9rem;color:var(--gray-500);line-height:1.65}

/* WHY CARDS */
.why-card{display:flex;align-items:flex-start;gap:16px;background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius);padding:22px;transition:var(--transition)}
.why-card:hover{border-color:var(--green-200);box-shadow:var(--shadow)}
.wc-icon{width:48px;height:48px;background:var(--green-100);border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.4rem;flex-shrink:0}
.why-card h4{font-size:1rem;font-weight:700;color:var(--gray-900);margin-bottom:6px}
.why-card p{font-size:.87rem;color:var(--gray-500)}

/* TEAM */
.team-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:10px}
.team-card{background:#fff;border-radius:var(--radius-lg);padding:28px 20px;text-align:center;border:1px solid var(--gray-100);box-shadow:var(--shadow-sm);transition:var(--transition)}
.team-card:hover{transform:translateY(-6px);box-shadow:var(--shadow)}
.team-avatar{width:68px;height:68px;border-radius:50%;background:linear-gradient(135deg,var(--green-400),var(--green-700));display:flex;align-items:center;justify-content:center;color:#fff;font-size:1.6rem;font-weight:800;margin:0 auto 16px}
.team-card h4{font-size:.97rem;font-weight:700;color:var(--gray-900);margin-bottom:4px}
.team-role{font-size:.82rem;color:var(--primary);font-weight:600;margin-bottom:6px}
.team-exp{font-size:.8rem;color:var(--gray-500)}

/* CERT GRID */
.cert-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:40px}
.cert-card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:28px 20px;text-align:center;transition:var(--transition)}
.cert-card:hover{box-shadow:var(--shadow);border-color:var(--green-200)}
.cert-card h4{font-size:1rem;font-weight:700;color:var(--gray-900);margin:12px 0 8px}
.cert-card p{font-size:.85rem;color:var(--gray-500)}

/* CLEAN PROFESSIONAL SERVICES LIST */
.services-clean-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* STORY SECTION STYLING */
.story-intro {
  font-size: 1.1rem;
  color: var(--text-main);
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 600;
}

.story-content {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

.story-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding: 24px;
  background: var(--primary-light);
  border-radius: 16px;
  border-left: 4px solid var(--primary);
}

.story-list li {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.story-list li:before {
  content: '✓';
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
}

.service-detail-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.service-detail-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.sdc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 20px;
}

.sdc-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-top: 4px;
}

.sdc-capacity-badge {
  background: var(--primary-light);
  border: 1px solid rgba(5, 150, 105, 0.25);
  border-radius: 12px;
  padding: 8px 18px;
  text-align: right;
}

.scb-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.scb-val {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.sdc-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 900px;
}

.sdc-body-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 36px;
  align-items: start;
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
}

.sdc-subheading {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

.sdc-meta-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sdc-stat-box {
  background: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 16px 20px;
}

.ssb-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.ssb-val {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

@media (max-width: 768px) {
  .sdc-header { flex-direction: column; align-items: flex-start; }
  .sdc-body-grid { grid-template-columns: 1fr; }
  .service-detail-card { padding: 24px; }
}

/* SERVICES PREVIEW (HOME) */
.services-preview-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:10px}
.svc-card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:28px 20px;text-align:center;transition:var(--transition)}
.svc-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--green-200)}
.svc-icon{font-size:2.5rem;margin-bottom:14px}
.svc-card h3{font-size:1.05rem;font-weight:700;color:var(--gray-900);margin-bottom:8px}
.svc-card p{font-size:.87rem;color:var(--gray-500);margin-bottom:14px}
.svc-saving{background:var(--green-50);color:var(--green-700);border-radius:8px;padding:6px 12px;font-size:.82rem;font-weight:700}

/* TESTIMONIALS */
.testimonials-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;margin-top:10px}
.tcard{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:28px;transition:var(--transition)}
.tcard:hover{box-shadow:var(--shadow);transform:translateY(-4px)}
.tcard-stars{color:#f59e0b;font-size:1rem;margin-bottom:14px}
.tcard-text{font-size:.93rem;color:var(--gray-600);font-style:italic;line-height:1.7;margin-bottom:20px}
.tcard-author{display:flex;align-items:center;gap:12px}
.tcard-avatar{width:44px;height:44px;border-radius:50%;background:linear-gradient(135deg,var(--green-400),var(--green-600));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1.1rem;flex-shrink:0}
.tcard-name{font-weight:700;color:var(--gray-900);font-size:.93rem}
.tcard-meta{font-size:.78rem;color:var(--gray-500);margin-top:2px}

/* CTA BANNER */
.cta-banner{background:linear-gradient(135deg,var(--green-800),var(--green-900));color:#14532d;padding:80px 20px;text-align:center;position:relative;overflow:hidden}
.cta-banner::before{content:'☀️';position:absolute;font-size:14rem;opacity:.04;top:-40px;right:-40px;line-height:1;pointer-events:none}
.cta-banner h2{font-size:clamp(1.8rem,4vw,2.5rem);font-weight:800;margin-bottom:14px}
.cta-banner p{font-size:1.08rem;opacity:.85;margin-bottom:36px;max-width:540px;margin-left:auto;margin-right:auto}
.cta-btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap}

/* PAGE HEADER */
.page-header{background:linear-gradient(135deg,#071a0e,#14532d);color:#fff;padding:70px 0 55px;text-align:center}
.page-header h1{font-size:clamp(2rem,5vw,3rem);font-weight:800;margin-bottom:12px;color:#ffffff !important;text-shadow:0 2px 8px rgba(0,0,0,0.3)}
.page-header p{font-size:1.05rem;opacity:.8;max-width:560px;margin:0 auto}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:8px;font-size:.83rem;opacity:.65;margin-bottom:14px}
.breadcrumb a{color:rgba(255,255,255,.7)}
.breadcrumb a:hover{color:#ffffff}
.breadcrumb span{opacity:.6}

/* AOS ANIMATIONS */
[data-aos]{opacity:0;transition:opacity .6s ease,transform .6s ease}
[data-aos="up"]{transform:translateY(30px)}
[data-aos="left"]{transform:translateX(-30px)}
[data-aos="right"]{transform:translateX(30px)}
[data-aos].aos-animate{opacity:1;transform:translate(0)}

/* CALCULATOR */
.calc-wrap{display:grid;grid-template-columns:1fr 1fr;gap:36px;align-items:start}
.calc-card{background:#fff;border:1px solid var(--gray-100);border-radius:var(--radius-lg);padding:38px;box-shadow:var(--shadow)}
.calc-card h3{font-size:1.3rem;font-weight:800;color:var(--gray-900);margin-bottom:8px}
.result-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-bottom:24px}
.result-item{background:var(--gray-50);border-radius:var(--radius);}

