:root {
  --cg-primary: #176B0B;
  --cg-primary-light: #7ED957;
  --cg-accent: #EE6A00;
  --cg-deep: #123B73;
  --cg-text: #4A4A4A;
  --cg-muted: #6F6F6F;
  --cg-bg: #F7F6F1;
  --cg-sand: #ECE7DD;
  --cg-white: #FFFFFF;
  --cg-radius: 18px;
  --cg-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* Global */
body {
  font-family: 'Manrope', sans-serif;
  color: var(--cg-text);
  background: var(--cg-bg);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Titillium Web', sans-serif;
  color: var(--cg-primary);
  line-height: 1.15;
  letter-spacing: -0.5px;
}

p {
  color: var(--cg-text);
  font-size: 16px;
}

a {
  color: var(--cg-primary);
  transition: all .3s ease;
}

a:hover {
  color: var(--cg-accent);
}

/* Buttons */
.cg-btn,
.ba-button-wrapper a {
  background: var(--cg-primary);
  color: #fff !important;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  display: inline-block;
  box-shadow: 0 10px 25px rgba(23,107,11,.18);
  transition: all .3s ease;
}

.cg-btn:hover,
.ba-button-wrapper a:hover {
  background: var(--cg-accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(238,106,0,.18);
}

/* Sections */
.cg-section {
  padding: 90px 0;
}

.cg-section-light {
  background: var(--cg-white);
}

.cg-section-sand {
  background: var(--cg-sand);
}

/* Hero */
.cg-hero {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 36px 36px;
}

.cg-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,59,115,.68) 0%, rgba(23,107,11,.40) 45%, rgba(0,0,0,.18) 100%);
  z-index: 1;
}

.cg-hero .ba-section-content,
.cg-hero .container,
.cg-hero .cg-hero-content {
  position: relative;
  z-index: 2;
}

.cg-hero h1,
.cg-hero h2,
.cg-hero p {
  color: #fff;
}

.cg-hero h1 {
  font-size: clamp(38px, 5vw, 72px);
  margin-bottom: 18px;
}

.cg-hero p {
  font-size: 18px;
  max-width: 720px;
  opacity: .95;
}

/* Navbar suggestion */
header,
.sticky-header,
.ba-sticky-header {
  transition: all .3s ease;
}

.ba-sticky-header {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.ba-sticky-header .nav.menu > li > a,
.ba-sticky-header .ba-menu-wrapper .main-menu > .deeper-parent > a,
.ba-sticky-header .ba-menu-wrapper .main-menu > li > a {
  color: var(--cg-primary) !important;
}

/* Menu links */
.nav.menu > li > a,
.ba-menu-wrapper .main-menu > li > a {
  font-weight: 700;
  letter-spacing: .2px;
  transition: all .3s ease;
}

.nav.menu > li > a:hover,
.ba-menu-wrapper .main-menu > li > a:hover,
.nav.menu > li.active > a,
.ba-menu-wrapper .main-menu > li.active > a {
  color: var(--cg-accent) !important;
}

/* Cards */
.cg-card {
  background: var(--cg-white);
  border-radius: var(--cg-radius);
  box-shadow: var(--cg-shadow);
  overflow: hidden;
  transition: all .35s ease;
}

.cg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.cg-card .content {
  padding: 28px;
}

.cg-card h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.cg-card p {
  color: var(--cg-muted);
}

/* Service cards */
.cg-service-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  transition: all .3s ease;
}

.cg-service-card:hover {
  transform: translateY(-8px);
}

.cg-service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.cg-service-card .service-body {
  padding: 24px;
}

.cg-service-card .service-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.cg-service-card .service-link {
  color: var(--cg-accent);
  font-weight: 700;
}

/* Image style */
.cg-image-soft img {
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.10);
}

/* Small badge */
.cg-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(126,217,87,.15);
  color: var(--cg-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}

/* CTA block */
.cg-cta {
  background: linear-gradient(135deg, var(--cg-primary) 0%, #215f1a 100%);
  color: #fff;
  border-radius: 28px;
  padding: 60px;
  box-shadow: 0 20px 40px rgba(23,107,11,.18);
}

.cg-cta h2,
.cg-cta p {
  color: #fff;
}

/* Footer */
footer {
  background: #10260f;
  color: rgba(255,255,255,.85);
}

footer h3,
footer h4,
footer a {
  color: #fff;
}

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

/* Responsive */
@media (max-width: 991px) {
  .cg-section {
    padding: 70px 0;
  }

  .cg-cta {
    padding: 34px 24px;
  }

  .cg-service-card img {
    height: 220px;
  }
}