/* ============================================================
   FONTS  (reuse theme fonts already loaded via @font-face)
============================================================ */
@import url('assets/css/style.css');   /* load just for font-face */

/* ============================================================
   GREEN DESIGN SYSTEM - full palette, no purple whatsoever
============================================================ */
:root {
  --g-900:  #011710;   /* near-black green   */
  --g-800:  #012d1c;   /* deep forest        */
  --g-700:  #014d30;   /* header / footer    */
  --g-600:  #0a6b3d;   /* medium dark        */
  --g-500:  #16a34a;   /* primary mid green  */
  --g-400:  #22c55e;   /* bright accent      */
  --g-300:  #4ade80;   /* hover / highlight  */
  --g-200:  #bbf7d0;   /* light accent       */
  --g-100:  #dcfce7;   /* tinted background  */
  --g-50:   #f0fdf4;   /* near-white section */

  --text-head: #011710;
  --text-body: #3a5a46;
  --text-muted: #6a8a72;
  --border:  #c6e8d3;
  --white:   #ffffff;

  --font-h: "Sora", "Segoe UI", sans-serif;
  --font-b: "DM Sans", "Segoe UI", sans-serif;
  --r:  14px;
  --rl: 20px;
  --rp: 100px;
  --shadow-sm: 0 2px 12px rgba(1,45,28,.07);
  --shadow-md: 0 6px 30px rgba(1,45,28,.12);
  --shadow-lg: 0 16px 50px rgba(1,45,28,.18);
}

/* ============================================================
   RESET / BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  background: var(--white);
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-h);
  color: var(--text-head);
  line-height: 1.2;
  margin: 0 0 .75rem;
  font-weight: 700;
}
p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; transition: color .25s; }
ul { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================================
   PRELOADER (keep structure, override color)
============================================================ */
.cs_preloader {
  position: fixed; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 99999; background: var(--white);
}
.cs_preloader_in {
  width: 56px; height: 56px;
  border: 3px solid var(--g-200);
  border-top-color: var(--g-500);
  border-radius: 50%;
  animation: g-spin .8s linear infinite;
}
@keyframes g-spin { to { transform: rotate(360deg); } }

/* ============================================================
   SCROLL-UP BUTTON
============================================================ */
.cs_scrollup {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--g-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: all .35s ease;
  z-index: 900;
  box-shadow: var(--shadow-md);
}
.cs_scrollup.cs_scrollup_show {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.cs_scrollup:hover { background: var(--g-500); }

/* ============================================================
   NAVBAR
============================================================ */
.g-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--g-100);
  transition: box-shadow .3s ease;
}
.g-header.scrolled {
  box-shadow: 0 2px 24px rgba(1,45,28,.10);
}
.g-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
/* Logo */
.g-logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
  color: var(--g-700);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 5px;
  flex-shrink: 0;
}
.g-logo-dot {
  width: 8px; height: 8px;
  background: var(--g-400);
  border-radius: 50%;
}
/* Nav links */
.g-nav { display: flex; align-items: center; gap: 6px; }
.g-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-body);
  border-radius: var(--r);
  transition: background .2s, color .2s;
}
.g-nav a:hover { background: var(--g-50); color: var(--g-700); }
/* CTA button in nav */
.g-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--rp);
  font-family: var(--font-h);
  font-size: 14px; font-weight: 700;
  letter-spacing: .3px;
  transition: all .25s ease;
  cursor: pointer;
}
.g-btn-primary {
  background: var(--g-700);
  color: var(--white);
  border: 2px solid var(--g-700);
}
.g-btn-primary:hover {
  background: var(--g-500);
  border-color: var(--g-500);
  color: var(--white);
}
.g-btn-outline {
  background: transparent;
  border: 2px solid var(--g-200);
  color: var(--white);
}
.g-btn-outline:hover {
  background: var(--g-200);
  border-color: var(--g-200);
  color: var(--g-800);
}
.g-btn-light {
  background: var(--g-200);
  border: 2px solid var(--g-200);
  color: var(--g-800);
}
.g-btn-light:hover {
  background: var(--g-300);
  border-color: var(--g-300);
  color: var(--g-900);
}
/* ============================================================
   SECTION LAYOUT HELPERS
============================================================ */
.g-section { padding: 96px 0; }
.g-section-sm { padding: 72px 0; }
.g-container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.g-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--g-500);
  margin-bottom: 16px;
}
.g-label::before, .g-label::after {
  content: ''; width: 20px; height: 2px;
  background: var(--g-300); border-radius: 2px;
}
.g-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--text-head);
  line-height: 1.15;
  margin-bottom: 16px;
}
.g-heading-white { color: var(--white); }
.g-subtext {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}
.g-subtext-white { color: rgba(220,252,231,.8); }
.g-divider {
  width: 48px; height: 3px;
  background: var(--g-400);
  border-radius: 2px;
  margin: 18px 0 28px;
}
.g-divider-center { margin-left: auto; margin-right: auto; }

/* ============================================================
   HERO
============================================================ */
.g-hero {
  background: linear-gradient(160deg, var(--g-800) 0%, var(--g-700) 60%, var(--g-600) 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.g-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 50%, rgba(34,197,94,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(22,163,74,.10) 0%, transparent 60%);
  pointer-events: none;
}
.g-hero-inner {
  position: relative; z-index: 1;
  max-width: 780px; margin: 0 auto;
  text-align: center;
}
.g-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(187,247,208,.12);
  border: 1px solid rgba(187,247,208,.25);
  border-radius: var(--rp);
  padding: 7px 18px;
  font-size: 13px; font-weight: 600;
  color: var(--g-200);
  margin-bottom: 28px;
}
.g-hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--g-400);
  border-radius: 50%;
}
.g-hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}
.g-hero h1 span {
  color: var(--g-300);
}
.g-hero-sub {
  font-size: 18px;
  color: rgba(220,252,231,.75);
  max-width: 540px;
  margin: 0 auto 40px;
}
.g-hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap;
}
.g-hero-pills {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-top: 52px;
  padding-top: 40px;
  border-top: 1px solid rgba(187,247,208,.15);
}
.g-hero-pill {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600;
  color: var(--g-200);
}
.g-hero-pill i { color: var(--g-400); font-size: 15px; }
.g-hero-pill-sep { color: rgba(187,247,208,.3); font-size: 18px; }

/* ============================================================
   STATS BAR
============================================================ */
.g-stats {
  background: var(--g-700);
  padding: 48px 0;
}
.g-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.g-stat-item {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}
.g-stat-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 25%; bottom: 25%;
  width: 1px;
  background: rgba(187,247,208,.2);
}
.g-stat-number {
  font-family: var(--font-h);
  font-size: 42px; font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.g-stat-number .odometer {
  font-family: inherit;
  display: inline-block !important;
  line-height: 1;
}
.g-stat-label {
  font-size: 14px;
  color: var(--g-200);
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .g-stats-grid { grid-template-columns: repeat(2,1fr); }
  .g-stat-item:nth-child(2)::after { display: none; }
}

/* ============================================================
   SERVICE CARDS
============================================================ */
.g-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 991px) { .g-services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .g-services-grid { grid-template-columns: 1fr; } }

.g-service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 32px 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.g-service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--g-300);
  transform: translateY(-4px);
}
.g-svc-icon {
  width: 54px; height: 54px;
  border-radius: 12px;
  background: var(--g-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--g-600);
  margin-bottom: 20px;
}
.g-service-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text-head);
  margin-bottom: 10px;
}
.g-service-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   PRODUCTS
============================================================ */
.g-product-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 40px 36px;
  height: 100%;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.g-product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.g-product-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--g-100);
  color: var(--g-600);
  border-radius: var(--rp);
  padding: 6px 16px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 18px;
  width: fit-content;
}
.g-product-name {
  font-size: 30px; font-weight: 800;
  color: var(--g-800);
  margin-bottom: 14px;
}
.g-product-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 24px;
}
.g-product-features {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 30px;
}
.g-product-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600;
  color: var(--text-head);
}
.g-product-features li i {
  color: var(--g-500); font-size: 14px; flex-shrink: 0;
}

/* ============================================================
   HOW WE WORK - 3 steps
============================================================ */
.g-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.g-steps-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: 16.5%; right: 16.5%;
  height: 2px;
  background: linear-gradient(to right, var(--g-200), var(--g-300), var(--g-200));
  z-index: 0;
}
@media (max-width: 767px) {
  .g-steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .g-steps-grid::before { display: none; }
}
.g-step {
  text-align: center;
  padding: 0 28px;
  position: relative; z-index: 1;
}
.g-step-number {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--g-700);
  color: var(--white);
  font-family: var(--font-h);
  font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid var(--white);
  box-shadow: 0 0 0 3px var(--g-300);
}
.g-step h3 {
  font-size: 18px; font-weight: 700;
  color: var(--text-head);
  margin-bottom: 10px;
}
.g-step p { font-size: 14px; color: var(--text-muted); margin: 0; }

/* ============================================================
   WHY GREEN (dark section)
============================================================ */
.g-dark-section {
  background: linear-gradient(135deg, var(--g-800) 0%, var(--g-700) 100%);
}
.g-check-list { display: flex; flex-direction: column; gap: 16px; }
.g-check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 16px; font-weight: 500;
  color: var(--g-200);
}
.g-check-icon {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(187,247,208,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.g-check-icon i { color: var(--g-400); font-size: 13px; }

/* ============================================================
   TESTIMONIAL SLIDER
============================================================ */
.g-testimonial-wrap {
  background: var(--white);
  border-radius: var(--rl);
  padding: 40px 40px 32px;
  border: 1px solid var(--border);
}
.g-quote-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--g-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.g-quote-icon img { width: 18px; }
.g-stars { display: flex; gap: 3px; margin-bottom: 18px; }
.g-stars i { color: var(--g-400); font-size: 15px; }
.g-testimonial-text {
  font-size: 16px;
  color: var(--text-head);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 28px;
}
.g-avatar { display: flex; align-items: center; gap: 14px; }
.g-avatar img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--g-200);
}
.g-avatar-name { font-size: 15px; font-weight: 700; color: var(--text-head); }
.g-avatar-role { font-size: 13px; color: var(--text-muted); }

/* Slick overrides for testimonials */
.g-slider-wrap .slick-prev,
.g-slider-wrap .slick-next { display: none !important; }
.g-slider-arrows {
  display: flex; gap: 10px;
  justify-content: flex-end;
  margin-top: 24px;
}
.g-arrow-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--g-100);
  color: var(--g-700);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background .2s, color .2s;
  cursor: pointer;
  border: 1px solid var(--border);
}
.g-arrow-btn:hover { background: var(--g-700); color: var(--white); border-color: var(--g-700); }

/* ============================================================
   CONTACT
============================================================ */
.g-contact-info-card {
  background: var(--g-700);
  border-radius: var(--rl);
  padding: 40px 36px;
  height: 100%;
}
.g-contact-info-card h3 {
  color: var(--white);
  font-size: 24px; margin-bottom: 8px;
}
.g-contact-info-card > p {
  color: rgba(220,252,231,.7);
  margin-bottom: 32px;
}
.g-contact-item {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 22px;
}
.g-ci-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px;
  background: rgba(187,247,208,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: var(--g-300);
}
.g-ci-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: rgba(187,247,208,.5); margin-bottom: 2px; }
.g-ci-value { font-size: 16px; font-weight: 700; color: var(--white); }
.g-ci-value a { color: var(--white); }
.g-ci-value a:hover { color: var(--g-300); }

.g-form-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 40px 38px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.g-form-card h3 { font-size: 24px; margin-bottom: 28px; }
.g-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 575px) { .g-form-row { grid-template-columns: 1fr; } }
.g-field { margin-bottom: 16px; }
.g-field input,
.g-field select,
.g-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text-head);
  background: var(--white);
  outline: none;
  transition: border-color .25s;
}
.g-field input:focus,
.g-field select:focus,
.g-field textarea:focus { border-color: var(--g-500); }
.g-field textarea { min-height: 120px; resize: vertical; }
.g-field select { cursor: pointer; color: var(--text-muted); appearance: auto; }
.g-form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: var(--g-100);
  border-radius: 10px;
  color: var(--g-700);
  font-weight: 700;
  margin-top: 14px;
  font-size: 15px;
}

/* ============================================================
   FOOTER
============================================================ */
.g-footer {
  background: linear-gradient(160deg, var(--g-900) 0%, var(--g-800) 100%);
  padding: 72px 0 0;
}
.g-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(187,247,208,.1);
}
@media (max-width: 991px) { .g-footer-top { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 575px) { .g-footer-top { grid-template-columns: 1fr; } }
.g-footer-logo {
  font-family: var(--font-h);
  font-size: 22px; font-weight: 800; letter-spacing: 4px;
  color: var(--white);
  display: flex; align-items: center; gap: 5px;
  margin-bottom: 16px;
}
.g-footer-desc {
  font-size: 14px;
  color: rgba(187,247,208,.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.g-socials { display: flex; gap: 10px; }
.g-social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(187,247,208,.2);
  color: rgba(187,247,208,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: all .25s;
}
.g-social-btn:hover {
  background: rgba(187,247,208,.15);
  border-color: var(--g-300);
  color: var(--g-300);
}
.g-footer-col h4 {
  font-family: var(--font-h);
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--g-200);
  margin-bottom: 20px;
}
.g-footer-col ul li { margin-bottom: 12px; }
.g-footer-col ul a {
  font-size: 14px;
  color: rgba(187,247,208,.5);
  transition: color .2s;
}
.g-footer-col ul a:hover { color: var(--g-300); }
.g-footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(187,247,208,.35);
}

/* ============================================================
   RESPONSIVE OVERRIDES
============================================================ */
@media (max-width: 767px) {
  .g-section { padding: 64px 0; }
  .g-hero { padding: 120px 0 72px; }
  .g-hero h1 { font-size: 34px; }
}
@media (max-width: 991px) {
  .g-nav { display: none; }   /* mobile nav not expanded in this build */
}