
:root{
  --ng-dark:#0d1522;
  --ng-dark-2:#151f2d;
  --ng-green:#198754;
}

body{
  font-family:"Segoe UI", Arial, sans-serif;
  color:#1f2937;
}

.topbar,
.navbar,
.footer-dark{
  background:var(--ng-dark);
}

.navbar{
  box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.navbar .nav-link{
  color:rgba(255,255,255,.82);
}

.navbar .nav-link:hover,
.navbar .nav-link.active{
  color:#fff;
}

.hero-section{
  position:relative;
  background:url('../img/astroturf.jpg') center center / cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(13,21,34,.9) 0%, rgba(13,21,34,.72) 45%, rgba(13,21,34,.55) 100%);
}

.quote-card,
.stat-card,
.contact-block,
.contact-form{
  background:#fff;
}

.section-dark{
  background:var(--ng-dark-2);
}

.py-lg-6{
  padding-top:5rem;
  padding-bottom:5rem;
}

.eyebrow{
  display:inline-block;
  color:var(--ng-green);
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.08em;
  font-size:.85rem;
  margin-bottom:.75rem;
}

.icon-box{
  display:flex;
  align-items:flex-start;
  gap:1rem;
}

.icon-box i,
.stat-icon{
  width:3rem;
  height:3rem;
  min-width:3rem;
  border-radius:1rem;
  background:rgba(25,135,84,.12);
  color:var(--ng-green);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:1.25rem;
}

.service-img{
  height:240px;
  object-fit:cover;
}

.service-card{
  transition:transform .2s ease, box-shadow .2s ease;
}

.service-card:hover{
  transform:translateY(-5px);
  box-shadow:0 1rem 2rem rgba(0,0,0,.08)!important;
}

.timeline-step{
  display:flex;
  gap:1rem;
  margin-bottom:1.5rem;
  padding:1.25rem;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:1rem;
}

.timeline-step span{
  width:3rem;
  height:3rem;
  min-width:3rem;
  border-radius:50%;
  background:var(--ng-green);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

.gallery-photo{
  height:240px;
  object-fit:cover;
}

.cta-section{
  background:linear-gradient(135deg, #198754 0%, #0d1522 100%);
}

.form-control,
.form-select{
  border-radius:.9rem;
  padding-top:.85rem;
  padding-bottom:.85rem;
}

.form-control:focus,
.form-select:focus{
  border-color:var(--ng-green);
  box-shadow:0 0 0 .2rem rgba(25,135,84,.15);
}

html{
  scroll-behavior:smooth;
}

@media (max-width: 991.98px){
  .hero-section .min-vh-100{
    min-height:auto!important;
  }
}
