:root {
  --yg-green: #7cb928;
  --yg-green-dark: #689f1e;
  --yg-dark: #1c1c1a;
  --yg-cream: #f6f5ef;
  --yg-gray: #6c6c68;
  --yg-font-head: "Plus Jakarta Sans", sans-serif;
  --yg-font-body: "Roboto", sans-serif;
}

body {
  font-family: var(--yg-font-body);
  color: var(--yg-dark);
}

h1, h2, h3, h4, h5, h6,
.yg-heading {
  font-family: var(--yg-font-head);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--yg-dark);
}

p {
  color: var(--yg-gray);
  line-height: 1.7;
}

a {
  text-decoration: none;
}

.bg-cream {
  background-color: var(--yg-cream);
}

.text-brand {
  color: var(--yg-green) !important;
}

.eyebrow {
  font-family: var(--yg-font-head);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yg-green);
}

.section-number {
  font-family: var(--yg-font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--yg-gray);
}

.section-number .txt-green {
  color: var(--yg-green);
}

/* Buttons */
.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background-color: var(--yg-green);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.55rem 0.55rem 0.55rem 1.6rem;
  font-family: var(--yg-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition: background-color 0.2s ease;
}

.btn-brand:hover {
  background-color: var(--yg-green-dark);
  color: #fff;
}

.btn-brand .btn-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background-color: #fff;
  color: var(--yg-green);
}

.btn-brand-sm {
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  font-size: 0.8rem;
}

.btn-brand-sm .btn-icon-circle {
  width: 30px;
  height: 30px;
  min-width: 30px;
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid var(--yg-green);
  color: var(--yg-green);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-family: var(--yg-font-head);
  font-weight: 700;
  font-size: 0.9rem;
}

.btn-outline-brand:hover {
  background-color: var(--yg-green);
  color: #fff;
}

/* Header */
#header {
  background-color: #fff;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: .8rem 0;
  background-color: var(--yg-green);
  color: #fff;
  font-size: 1.15rem;
}

.brand-text-main {
  font-family: var(--yg-font-head);
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  letter-spacing: 1px;
  color: var(--yg-dark);
}

.brand-text-sub {
  font-family: var(--yg-font-head);
  font-weight: 600;
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  color: var(--yg-green);
  display: block;
}

.navbar-nav .nav-link {
  font-family: var(--yg-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--yg-dark);
  margin: 0 0.75rem;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--yg-green);
}

/* Hero */
.hero-eyebrow-badge {
  display: inline-block;
  background-color: var(--yg-cream);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
}

.hero-heading {
  font-size: 3rem;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-img-main {
  width: 100%;
  height: auto;
  min-height: 100%;
  flex: 1 1 auto;
  object-fit: cover;
  border-radius: 8rem 0;
}

.hero-img-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 2rem 0;
}

.img-round-lg {
  border-radius: 0 8rem;
  object-fit: cover;
}

/* Checklist */
.check-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--yg-dark);
  font-weight: 500;
  font-size: 0.95rem;
}

.check-list i {
  color: var(--yg-green);
  font-size: 1.05rem;
}

/* Service cards */
.service-card {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background-color: var(--yg-cream);
  color: var(--yg-green);
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.service-card h3 {
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid #e3e2da;
  color: var(--yg-dark);
}

.service-card:hover .service-card-link {
  background-color: var(--yg-green);
  border-color: var(--yg-green);
  color: #fff;
}

/* Stats */
.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--yg-green);
  color: #fff;
  font-size: 1.1rem;
}

.stat-number {
  font-family: var(--yg-font-head);
  font-weight: 800;
  font-size: 2rem;
  margin-bottom: 0;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--yg-gray);
  margin-bottom: 0;
}

.stat-divider {
  width: 1px;
  background-color: #e3e2da;
}

/* Gallery + contact */
.gallery-main-wrap {
  position: relative;
  border-radius: 8rem 0;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}

.gallery-main-wrap img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0) 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.gallery-overlay h3 {
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 0;
  max-width: 70%;
}

.gallery-overlay .service-card-link {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
}

.gallery-thumb {
  width: 100%;
  height: 100px;
  object-fit: cover;
  border-radius: 2rem 0;
  margin-bottom: 1rem;
}

.gallery-thumb:last-child {
  margin-bottom: 0;
}

.contact-card {
  background-color: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-card .form-control {
  border-radius: 0.75rem;
  border: 1px solid #e3e2da;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
}

.contact-card .form-control:focus {
  border-color: var(--yg-green);
  box-shadow: 0 0 0 0.2rem rgba(124, 185, 40, 0.15);
}

.contact-card .form-check-input:checked {
  background-color: var(--yg-green);
  border-color: var(--yg-green);
}

/* Footer */
#footer {
  background-color: var(--yg-dark);
  color: #cfcfc9;
}

#footer h5 {
  color: #fff;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

#footer a {
  color: #cfcfc9;
}

#footer a:hover {
  color: var(--yg-green);
}

#footer .footer-links {
  list-style: none;
  padding-left: 0;
}

#footer .footer-links li {
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}

#footer p {
  color: #a9a9a3;
  font-size: 0.9rem;
}

#footer .footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #3c3c38;
  color: #fff;
  margin-right: 0.5rem;
}

#footer .footer-social:hover {
  background-color: var(--yg-green);
  border-color: var(--yg-green);
  color: #fff;
}

#footer .footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

#footer .footer-contact-item i {
  color: var(--yg-green);
  margin-top: 0.2rem;
}

.footer-bottom {
  border-top: 1px solid #3c3c38;
  font-size: 0.85rem;
  color: #a9a9a3;
}

@media (max-width: 991.98px) {
  .hero-heading {
    font-size: 2.25rem;
  }

  .hero-img-main {
    height: 320px;
    min-height: 320px;
    flex: none;
  }
  .gallery-thumb {
    height: auto;
    max-height: 80px;
  }
}
@media (max-width: 767px) {
  .gallery-thumb {
    display: none;
  }
}
