/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark:  #0d4f2e;
  --green-mid:   #166534;
  --green-light: #7dc232;
  --green-lime:  #a3e635;
  --white:       #ffffff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --gray-900:    #111827;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.15);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: 100px; }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-light);
  background: rgba(125,194,50,.12);
  padding: .35rem 1rem;
  border-radius: 50px;
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-subtitle {
  max-width: 580px;
  margin-inline: auto;
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--green-light);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,79,46,.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--gray-700);
  transform: translateY(-2px);
}

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

.btn-outline-dark {
  border: 2px solid var(--green-dark);
  color: var(--green-dark);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13,79,46,.97);
  backdrop-filter: blur(12px);
  padding: .6rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.3));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
}

.nav-link {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.88);
  padding: .45rem .75rem;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,.12);
}

.nav-btn {
  background: var(--green-light);
  color: var(--white);
  padding: .5rem 1.2rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 600;
  transition: var(--transition);
  margin-left: .5rem;
}
.nav-btn:hover {
  background: var(--green-lime);
  color: var(--green-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  max-height: 700px;
  overflow: hidden;
}

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

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }
.slide.active .slide-content > * { animation: slideUp .8s ease both; }
.slide.active .slide-content > *:nth-child(1) { animation-delay: .2s; }
.slide.active .slide-content > *:nth-child(2) { animation-delay: .4s; }
.slide.active .slide-content > *:nth-child(3) { animation-delay: .6s; }
.slide.active .slide-content > *:nth-child(4) { animation-delay: .8s; }

@keyframes slideUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: translateY(0); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,79,46,.75) 0%,
    rgba(13,79,46,.45) 60%,
    rgba(0,0,0,.2) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 7vw 2rem;
}

.slide-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-lime);
  background: rgba(163,230,53,.15);
  border: 1px solid rgba(163,230,53,.3);
  padding: .25rem .85rem;
  border-radius: 50px;
  width: fit-content;
  margin-bottom: .85rem;
}

.slide-content h1 {
  font-size: clamp(1.7rem, 3.5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: .65rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.25);
  max-width: 600px;
}

.slide-content h1 span { color: var(--green-lime); }

.slide-content p {
  font-size: .95rem;
  color: rgba(255,255,255,.82);
  max-width: 480px;
  margin-bottom: 1.5rem;
}

.hero-btns { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-btns .btn { padding: .65rem 1.4rem; font-size: .88rem; }

.hero-controls {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}

.hero-prev, .hero-next {
  width: 44px; height: 44px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 1rem;
  display: grid;
  place-items: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.hero-prev:hover, .hero-next:hover {
  background: var(--green-light);
  border-color: var(--green-light);
}

.hero-dots { display: flex; gap: .5rem; }
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  transition: var(--transition);
}
.dot.active {
  background: var(--green-lime);
  width: 28px;
  border-radius: 5px;
}

.hero-scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}
.bounce { animation: bounce 1.5s ease-in-out infinite; }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--green-dark);
  padding: 2.5rem 1.5rem;
}

.stats-container {
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 3rem;
  color: var(--white);
}

.stat-item > i {
  font-size: 2rem;
  color: var(--green-lime);
  flex-shrink: 0;
}

.stat-item div { display: flex; flex-direction: column; }

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-item span { font-size: 2rem; font-weight: 800; color: var(--green-lime); }

.stat-item p {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  margin-top: .1rem;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,.15);
}

/* ===== CTA BAND ===== */
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  background: var(--green-mid);
}

.cta-left, .cta-right {
  padding: 4rem max(2rem, calc((100vw - 1200px) / 2 / 2 + 2rem));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta-left { background: var(--gray-900); }
.cta-right { background: var(--green-mid); align-items: flex-start; }

.cta-sub { font-size: .8rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--green-lime); }

.cta-left h2, .cta-right h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.cta-right p { color: rgba(255,255,255,.7); font-size: .95rem; }

.cta-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--green-lime);
  background: rgba(163,230,53,.15);
  padding: .25rem .8rem;
  border-radius: 50px;
}

.cta-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
}

/* ===== ABOUT ===== */
.about { background: var(--gray-50); }

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

.about-images {
  position: relative;
  height: 520px;
}

.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%;
  height: 420px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }

.about-img-float {
  position: absolute;
  bottom: 0; right: 0;
  width: 56%;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 5px solid var(--white);
}
.about-img-float img { width: 100%; height: 100%; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: 40px; left: -20px;
  background: var(--green-light);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.badge-num { font-size: 2rem; font-weight: 900; line-height: 1; }
.badge-text { font-size: .78rem; font-weight: 600; text-align: center; opacity: .9; }

.about-desc {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.5rem 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
}

.feature-item i { color: var(--green-light); font-size: 1rem; flex-shrink: 0; }

/* ===== SERVICES ===== */
.services { background: var(--white); }

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

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--green-light);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: var(--green-dark);
  border-color: transparent;
}
.service-card.featured .service-icon { background: rgba(125,194,50,.2); color: var(--green-lime); }
.service-card.featured h3 { color: var(--white); }
.service-card.featured p { color: rgba(255,255,255,.7); }
.service-card.featured .service-link { color: var(--green-lime); }
.service-card.featured::before { background: var(--green-lime); }

.service-icon {
  width: 70px; height: 70px;
  background: rgba(125,194,50,.1);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-light);
  color: var(--white);
  transform: scale(1.05);
}
.service-card.featured:hover .service-icon {
  background: var(--green-light);
  color: var(--white);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .75rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
}
.service-link:hover { gap: .7rem; }
.service-link i { font-size: .8rem; }

/* ===== LOCATIONS ===== */
.locations { background: var(--gray-50); }

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

.location-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

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

.loc-icon {
  font-size: 1.8rem;
  color: var(--green-dark);
  margin-bottom: .75rem;
}

.location-card:hover .loc-icon { color: var(--green-light); }

.location-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .35rem;
}

.location-card p { font-size: .85rem; color: var(--gray-600); }

/* ===== PROJECTS ===== */
.projects { background: var(--white); }

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

.project-card { border-radius: var(--radius-lg); overflow: hidden; }

.project-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.project-card:hover .project-img img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,79,46,.9) 0%, rgba(13,79,46,.2) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay { opacity: 1; }

.project-cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--green-lime);
  display: block;
  margin-bottom: .4rem;
}

.project-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .3rem;
}

.project-info p { font-size: .85rem; color: rgba(255,255,255,.7); }

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

/* ===== FAQS ===== */
.faqs { background: var(--green-dark); }
.faqs .section-tag { color: var(--green-lime); background: rgba(163,230,53,.15); }
.faqs .section-title { color: var(--white); }
.faqs p { color: rgba(255,255,255,.7); }

.faqs-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.faqs-intro { display: flex; flex-direction: column; gap: 1rem; padding-top: 1rem; }
.faqs-intro .section-title { color: var(--white); }

.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  transition: var(--transition);
}
.faq-q i {
  flex-shrink: 0;
  font-size: .85rem;
  color: var(--green-lime);
  transition: transform .3s ease;
}
.faq-q[aria-expanded="true"] i { transform: rotate(180deg); }
.faq-q:hover { color: var(--green-lime); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-a.open { max-height: 300px; padding-bottom: 1.25rem; }
.faq-a p { color: rgba(255,255,255,.65); font-size: .95rem; }

/* ===== MAP ===== */
.map-section { position: relative; }

.map-label {
  position: absolute;
  top: 1rem; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: var(--green-dark);
  color: var(--white);
  padding: .6rem 1.5rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-md);
}
.map-label i { color: var(--green-lime); }

/* ===== CONTACT ===== */
.contact { background: var(--gray-50); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-cards { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.contact-icon {
  width: 48px; height: 48px;
  background: rgba(125,194,50,.12);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .5rem;
}

.contact-card ul li { font-size: .88rem; color: var(--gray-600); padding: .2rem 0; }
.contact-card a {
  display: block;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  margin-bottom: .3rem;
}
.contact-card a:hover { color: var(--green-light); }
.contact-note { font-size: .82rem; color: var(--gray-600); margin-top: .25rem; }

/* FORM */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1.1rem;
}

.form-group label { font-size: .85rem; font-weight: 600; color: var(--gray-700); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(125,194,50,.15);
}

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

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(125,194,50,.1);
  border: 1px solid var(--green-light);
  border-radius: 8px;
  color: var(--green-dark);
  font-weight: 500;
  font-size: .95rem;
  align-items: center;
  gap: .5rem;
}
.form-success.show { display: flex; }
.form-success i { color: var(--green-light); font-size: 1.1rem; }

/* ===== REPEATABLE FORM GROUPS (Schools / Employment / Certifications) ===== */
.repeat-group { margin-bottom: 1.4rem; }
.label-optional { font-weight: 400; color: var(--gray-600); font-size: .78rem; }

.repeat-list { display: flex; flex-direction: column; gap: .6rem; }

.repeat-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: .6rem;
  align-items: center;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: .6rem;
}

.repeat-row input {
  width: 100%;
  padding: .65rem .8rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: .88rem;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.repeat-row input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(125,194,50,.15);
}

.repeat-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 6px;
  background: rgba(220,38,38,.1);
  color: #dc2626;
  font-size: .85rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.repeat-remove:hover { background: #dc2626; color: var(--white); }

.repeat-add {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  padding: .55rem 1rem;
  border: 1.5px dashed var(--green-light);
  border-radius: 8px;
  background: transparent;
  color: var(--green-dark);
  font-weight: 600;
  font-size: .85rem;
  transition: var(--transition);
}
.repeat-add:hover { background: rgba(125,194,50,.1); }

@media (max-width: 640px) {
  .repeat-row { grid-template-columns: 1fr; }
  .repeat-remove { width: 100%; height: 32px; }
}

/* ===== FOOTER ===== */
.footer { background: var(--gray-900); color: rgba(255,255,255,.7); }

.footer-top { padding: 5rem 0 3rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(1.2);
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.social-links { display: flex; gap: .75rem; }

.social-links a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: .03em;
}

.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--green-lime); padding-left: .3rem; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  margin-bottom: .75rem;
}
.footer-contact li i { color: var(--green-light); font-size: .9rem; margin-top: .2rem; flex-shrink: 0; }
.footer-contact li a,
.footer-contact li span { font-size: .88rem; color: rgba(255,255,255,.6); }
.footer-contact li a:hover { color: var(--green-lime); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .85rem;
  color: rgba(255,255,255,.4);
}

.footer-bottom strong { color: var(--green-lime); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  border: none;
  font-size: 1rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--green-light); transform: translateY(-3px); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-up    { transform: translateY(40px); }
.fade-in-left  { transform: translateX(-50px); }
.fade-in-right { transform: translateX(50px); }

.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: .15s; }
.delay-2 { transition-delay: .3s; }
.delay-3 { transition-delay: .45s; }

/* ===== RESPONSIVE ===== */

/* --- Tablet landscape (≤1024px) --- */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .projects-grid      { grid-template-columns: repeat(2, 1fr); }
  .locations-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* CTA band stacks */
  .cta-band           { grid-template-columns: 1fr; }
  .cta-divider        { display: none; }
  .cta-left, .cta-right { padding: 3rem 5vw; }

  /* About: image area shortens, stacks below text */
  .about-grid         { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images       { height: 360px; }
  .about-img-main     { width: 75%; height: 320px; }
  .about-img-float    { width: 52%; height: 210px; }
  .about-badge        { left: 0; bottom: 10px; }
}

/* --- Tablet portrait / large phone (≤768px) --- */
@media (max-width: 768px) {
  .section            { padding-block: 64px; }
  .section-header     { margin-bottom: 40px; }

  /* backdrop-filter on a fixed ancestor makes it the containing block for position:fixed children.
     This traps the full-screen mobile menu inside the navbar instead of covering the viewport. */
  .navbar, .navbar.scrolled { backdrop-filter: none; }

  /* ---- Mobile full-screen menu ---- */
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--green-dark);   /* solid brand green — fully opaque */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    z-index: 999;
    padding: 90px 0 3rem;
    overflow-y: auto;
  }

  /* Brand accent line at top of menu items */
  .nav-links::before {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--green-lime);
    border-radius: 3px;
    margin-bottom: 2rem;
    flex-shrink: 0;
  }

  /* Fade + lift-in when menu opens */
  @keyframes mobileMenuOpen {
    from { opacity: 0; transform: translateY(-12px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes mobileNavItem {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .nav-links.open { display: flex; animation: mobileMenuOpen .3s ease both; }

  /* Staggered item slide-up */
  .nav-links.open li { animation: mobileNavItem .4s ease both; }
  .nav-links.open li:nth-child(1) { animation-delay: .06s; }
  .nav-links.open li:nth-child(2) { animation-delay: .12s; }
  .nav-links.open li:nth-child(3) { animation-delay: .18s; }
  .nav-links.open li:nth-child(4) { animation-delay: .24s; }
  .nav-links.open li:nth-child(5) { animation-delay: .30s; }
  .nav-links.open li:nth-child(6) { animation-delay: .36s; }
  .nav-links.open li:nth-child(7) { animation-delay: .42s; }
  .nav-links.open li:nth-child(8) { animation-delay: .48s; }

  /* Nav link items */
  .nav-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: .02em;
    padding: 1.05rem 2.5rem;
    color: rgba(255,255,255,.85);
    width: 100%;
    text-align: center;
    border-radius: 0;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,.09);
    transition: color .2s ease, background .2s ease, padding-left .2s ease;
  }

  /* First item gets a top border too */
  .nav-links li:first-child .nav-link { border-top: 1px solid rgba(255,255,255,.09); }

  .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,.06);
    padding-left: 3rem;          /* subtle indent on hover */
  }
  .nav-link.active {
    color: var(--green-lime);
    background: rgba(163,230,53,.1);
    font-weight: 700;
  }

  /* Employee Log In button */
  .nav-btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .95rem;
    font-weight: 700;
    padding: .9rem 2.5rem;
    margin-left: 0;
    margin-top: 2rem;
    border-radius: 50px;
    background: var(--green-light);
    color: var(--white);
    border: 2px solid var(--green-light);
    box-shadow: 0 4px 20px rgba(0,0,0,.25);
    transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
    flex-shrink: 0;
  }
  .nav-btn:hover {
    background: var(--green-lime);
    border-color: var(--green-lime);
    color: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,.3);
  }

  /* Hamburger toggle stays above menu */
  .nav-toggle { display: flex; position: relative; z-index: 1000; }

  /* Hero */
  .hero               { height: 60vh; min-height: 400px; }
  .slide-content      { padding: 70px 5vw 1.5rem; }
  .slide-content h1   { font-size: clamp(1.5rem, 5vw, 2.2rem); }
  .slide-content p    { font-size: .88rem; }
  .hero-controls      { bottom: .75rem; gap: .5rem; }
  .hero-prev,
  .hero-next          { width: 36px; height: 36px; font-size: .85rem; }
  .hero-scroll-hint   { display: none; }

  /* Stats */
  .stats-bar          { padding: 1.5rem 1rem; }
  .stats-container    { flex-direction: column; align-items: stretch; gap: 0; }
  .stat-item          { padding: .9rem 1.5rem; justify-content: center; }
  .stat-divider       { width: 100%; height: 1px; background: rgba(255,255,255,.1); }

  /* CTA */
  .cta-left, .cta-right { padding: 2.5rem 1.5rem; text-align: center; align-items: center; }

  /* About */
  .about-images       { height: 280px; }
  .about-img-main     { width: 78%; height: 250px; }
  .about-img-float    { width: 55%; height: 180px; }
  .about-badge        { left: 50%; transform: translateX(-50%); bottom: -20px; white-space: nowrap; }
  .about              { padding-bottom: 80px; }
  .about-features     { grid-template-columns: 1fr; }

  /* Services */
  .services-grid      { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Locations */
  .locations-grid     { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  /* Projects */
  .projects-grid      { grid-template-columns: 1fr; gap: 1.25rem; }
  .project-img        { height: 220px; }

  /* FAQs */
  .faqs-grid          { grid-template-columns: 1fr; gap: 2.5rem; }

  /* Contact */
  .contact-grid       { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form-wrap  { padding: 1.75rem 1.25rem; }
  .form-row           { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-top         { padding: 3rem 0 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: .4rem; }
  .footer-brand p     { max-width: 100%; }

  /* Map label */
  .map-label          { font-size: .78rem; padding: .5rem 1rem; white-space: nowrap; }
}

/* --- Mobile (≤480px) --- */
@media (max-width: 480px) {
  .section            { padding-block: 50px; }
  .section-header     { margin-bottom: 32px; }

  .hero               { height: 55vh; min-height: 360px; }
  .slide-content      { padding: 65px 4vw 1rem; }
  .slide-content h1   { font-size: clamp(1.3rem, 6vw, 1.9rem); }
  .slide-tag          { font-size: .7rem; }
  .hero-btns .btn     { padding: .55rem 1.1rem; font-size: .82rem; }

  .stat-num           { font-size: 1.6rem; }
  .stat-item > i      { font-size: 1.5rem; }

  .locations-grid     { grid-template-columns: 1fr; }

  .about-images       { height: 240px; }
  .about-img-main     { height: 210px; width: 80%; }
  .about-img-float    { height: 155px; width: 58%; }

  .contact-form-wrap  { padding: 1.25rem 1rem; }
  .project-img        { height: 200px; }

  .back-to-top        { bottom: 1rem; right: 1rem; width: 40px; height: 40px; }
}

/* ============================================================
   CNG PAGE — PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 68vh;
  min-height: 520px;
  max-height: 780px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,79,46,.88) 0%,
    rgba(13,79,46,.55) 55%,
    rgba(0,0,0,.25) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 110px 7vw 3rem;
}

.page-hero-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--green-lime);
  background: rgba(163,230,53,.15);
  border: 1px solid rgba(163,230,53,.3);
  padding: .3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.1rem;
}

.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
  max-width: 720px;
}

.page-hero-content h1 span { color: var(--green-lime); }

.page-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.87);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.78;
}

.page-hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================================
   CNG STATS BAR
   ============================================================ */
.cng-stats-bar {
  background: var(--green-light);
  padding: 1.8rem 1.5rem;
}

.cng-stats-container {
  max-width: 1000px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.cng-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .2rem;
  padding: .6rem 3.5rem;
  color: var(--white);
}

.cng-stat-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.cng-stat-label {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .88;
  white-space: nowrap;
}

.cng-stat-divider {
  width: 1px;
  height: 46px;
  background: rgba(255,255,255,.3);
}

/* ============================================================
   CNG INTRO SECTION
   ============================================================ */
.cng-intro { background: var(--white); }

.cng-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cng-intro-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cng-intro-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cng-intro-desc {
  color: var(--gray-600);
  font-size: .98rem;
  margin-bottom: 1.1rem;
  line-height: 1.8;
}

.cng-highlights {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin: 1.5rem 0 .5rem;
}

.cng-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .93rem;
  font-weight: 500;
  color: var(--gray-700);
}

.cng-highlight-item i {
  color: var(--green-light);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

/* ============================================================
   WHY CNG
   ============================================================ */
.why-cng { background: var(--gray-50); }

.why-cng-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: var(--green-light);
}

.why-card-icon {
  width: 68px; height: 68px;
  background: rgba(125,194,50,.1);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: var(--green-dark);
  margin: 0 auto 1.25rem;
  transition: var(--transition);
}

.why-card:hover .why-card-icon {
  background: var(--green-light);
  color: var(--white);
}

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: .55rem;
}

.why-card p {
  font-size: .87rem;
  color: var(--gray-600);
  line-height: 1.65;
}

.why-badge {
  display: inline-block;
  margin-top: .85rem;
  font-size: .76rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(125,194,50,.12);
  padding: .22rem .8rem;
  border-radius: 50px;
}

/* ============================================================
   CNG OUTLETS
   ============================================================ */
.cng-outlets { background: var(--white); }

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

.outlet-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.outlet-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}

.outlet-card-img {
  height: 210px;
  overflow: hidden;
  position: relative;
}

.outlet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.outlet-card:hover .outlet-card-img img { transform: scale(1.07); }

.outlet-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: .28rem .85rem;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  z-index: 2;
}

.status-development { background: rgba(234,88,12,.92); color: var(--white); }
.status-planning    { background: rgba(37,99,235,.92);  color: var(--white); }

.outlet-number {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: .82rem;
  font-weight: 800;
  z-index: 2;
}

.outlet-card-body { padding: 1.75rem; }

.outlet-location-tag {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--green-light);
  margin-bottom: .55rem;
}

.outlet-card-body h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .4rem;
  line-height: 1.3;
}

.outlet-address {
  font-size: .88rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.outlet-services {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.25rem;
}

.service-tag {
  font-size: .74rem;
  font-weight: 600;
  padding: .22rem .7rem;
  border-radius: 50px;
  background: rgba(125,194,50,.1);
  color: var(--green-dark);
}

.outlet-meta {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--gray-200);
}

.outlet-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .84rem;
}

.outlet-meta-label { color: var(--gray-600); font-weight: 500; }
.outlet-meta-value { font-weight: 700; color: var(--gray-900); }
.outlet-meta-value.status-dev  { color: #ea580c; }
.outlet-meta-value.status-plan { color: #2563eb; }

/* ============================================================
   LAUNCH TIMELINE
   ============================================================ */
.cng-timeline-section {
  background: var(--green-dark);
  padding-block: 90px;
}

.cng-timeline-section .section-tag  { color: var(--green-lime); background: rgba(163,230,53,.12); }
.cng-timeline-section .section-title { color: var(--white); }
.cng-timeline-section .section-subtitle { color: rgba(255,255,255,.68); }

.timeline {
  display: flex;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 27px;
  left: 0; right: 0;
  height: 2px;
  background: rgba(255,255,255,.18);
  z-index: 0;
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-dot {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: rgba(255,255,255,.35);
  transition: var(--transition);
}

.timeline-dot.done {
  background: var(--green-lime);
  border-color: var(--green-lime);
  color: var(--green-dark);
  box-shadow: 0 0 0 6px rgba(163,230,53,.2);
}

.timeline-dot.active {
  background: var(--green-light);
  border-color: var(--green-light);
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(125,194,50,.22);
}

.timeline-quarter {
  font-size: .74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-lime);
}

.timeline-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
}

.timeline-sub {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  max-width: 130px;
}

/* ============================================================
   REGISTER INTEREST
   ============================================================ */
.cng-interest { background: var(--gray-50); }

.cng-interest-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.cng-interest-content .section-title { text-align: left; }
.cng-interest-content .section-tag   { text-align: left; }

.cng-interest-content > p {
  color: var(--gray-600);
  max-width: 440px;
  margin-bottom: 1.5rem;
  font-size: .98rem;
}

.cng-perks {
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.cng-perk {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray-700);
}

.cng-perk i { color: var(--green-light); font-size: .95rem; flex-shrink: 0; }

.interest-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.interest-form-wrap h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

/* ============================================================
   INDEX.HTML — FEATURED PROJECT CARD (CNG teaser)
   ============================================================ */
.project-featured { grid-column: 1 / -1; }

.project-featured .project-img { height: 400px; }

.project-featured .project-overlay {
  opacity: 1;
  background: linear-gradient(
    to right,
    rgba(13,79,46,.96) 0%,
    rgba(13,79,46,.65) 48%,
    transparent 100%
  );
  align-items: center;
  padding: 2.5rem 3rem;
}

.project-featured .project-info h3 {
  font-size: 1.7rem;
  margin-bottom: .6rem;
}

.project-featured .project-info p {
  font-size: .98rem;
  max-width: 400px;
  margin-bottom: 1.25rem;
}

.project-featured .project-cat {
  font-size: .8rem;
  margin-bottom: .6rem;
}

/* ============================================================
   CNG RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .why-cng-grid      { grid-template-columns: repeat(2, 1fr); }
  .outlets-grid      { grid-template-columns: repeat(2, 1fr); }
  .cng-intro-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .cng-interest-grid { grid-template-columns: 1fr; gap: 3rem; }
  .project-featured .project-img    { height: 320px; }
  .project-featured .project-overlay { padding: 2rem; }
}

@media (max-width: 768px) {
  .why-cng-grid    { grid-template-columns: 1fr; gap: 1rem; }
  .outlets-grid    { grid-template-columns: 1fr; }

  .cng-stats-container { flex-direction: column; gap: 0; }
  .cng-stat-item   { padding: .75rem 2rem; }
  .cng-stat-divider { width: 80px; height: 1px; }

  .page-hero-content { padding: 100px 1.5rem 2rem; }

  .timeline {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }
  .timeline::before {
    top: 0; bottom: 0;
    left: 27px; right: auto;
    width: 2px; height: auto;
  }
  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 1.25rem;
    width: 100%;
    align-items: flex-start;
  }
  .timeline-dot { flex-shrink: 0; }

  .project-featured .project-img     { height: 260px; }
  .project-featured .project-overlay { padding: 1.5rem; }
  .project-featured .project-info h3 { font-size: 1.2rem; }

  .interest-form-wrap { padding: 1.75rem 1.25rem; }
  .cng-intro-img img  { height: 300px; }
}

@media (max-width: 480px) {
  .page-hero { height: 65vh; min-height: 460px; }
  .page-hero-content h1 { font-size: clamp(1.7rem, 6.5vw, 2.4rem); }
  .why-cng-grid { gap: .85rem; }
  .outlets-grid { gap: 1.25rem; }
  .cng-stat-num { font-size: 1.7rem; }
}

/* ============================================================
   APPLY NOW MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
  backdrop-filter: blur(5px);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  width: 100%;
  max-width: 600px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(.97);
  opacity: 0;
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .35s ease;
  scrollbar-width: thin;
}

.modal-overlay.open .modal-box {
  transform: none;
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  border: none;
  display: grid;
  place-items: center;
  font-size: .95rem;
  color: var(--gray-600);
  transition: var(--transition);
  z-index: 2;
}

.modal-close:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: rotate(90deg);
}

.modal-header { margin-bottom: 1.75rem; }

.modal-header .modal-tag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-light);
  background: rgba(125,194,50,.12);
  padding: .28rem .9rem;
  border-radius: 50px;
  margin-bottom: .6rem;
}

.modal-header h2 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: .4rem;
  line-height: 1.25;
}

.modal-header p {
  color: var(--gray-600);
  font-size: .95rem;
}

/* Spinner for submit buttons */
@keyframes spin { to { transform: rotate(360deg); } }
.fa-spin { animation: spin .7s linear infinite; }

@media (max-width: 640px) {
  .modal-box { padding: 1.75rem 1.25rem; }
  .modal-header h2 { font-size: 1.35rem; }
}

/* ============================================================
   CNG OUTLET — COMING SOON CARD
   ============================================================ */
.status-coming-soon {
  background: rgba(124, 58, 237, .88);
  color: var(--white);
}

.outlet-coming-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 30, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  z-index: 1;
  backdrop-filter: blur(2px);
  transition: var(--transition);
}

.outlet-coming-overlay i {
  font-size: 2.4rem;
  color: rgba(255,255,255,.75);
}

.outlet-coming-overlay span {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .18em;
}

.outlet-card-coming-soon:hover .outlet-coming-overlay {
  background: rgba(13, 10, 30, .35);
}

.outlet-card-coming-soon .outlet-card-body {
  opacity: .75;
}
