:root {
  --primary: #455234;
  --bg: #f8f9fa;
  --text: #2d3436;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

.section-padding { padding: 80px 0; }

.navbar {
  background: rgba(255,255,255,0.95) !important;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 15px 0;
}
.navbar .nav-link { color: var(--primary) !important; font-weight: 500; }

.text-primary {
  color: var(--primary) !important;
}

.border-primary {
  border-color: var(--primary) !important;
}

.bg-primary,
.btn-primary,
.common-bg-color {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
  color: var(--white) !important;
}

.btn-primary:hover,
.common-bg-color:hover {
  background-color: #354026 !important;
  border-color: #354026 !important;
  color: var(--white) !important;
}

.intro-section {
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(69,82,52,0.8), rgba(69,82,52,0.8)), var(--hero-image, url('./images/img2.jpg')) center/cover;
  animation: zoomBg 10s infinite alternate ease-in-out;
  z-index: -1;
}

@keyframes zoomBg {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.card {
  border: none;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
  overflow: hidden;
}

.card h3 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.eyebrow {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-list {
  border-top: 1px solid rgba(69,82,52,0.18);
  padding-top: 3rem;
}

.additional-focus-intro {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.additional-focus-image {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  box-shadow: var(--shadow);
  flex: 1;
  margin-top: 1.5rem;
  min-height: 220px;
  object-fit: cover;
  width: 100%;
}

.service-list-grid {
  height: 100%;
}

.service-list-grid > [class*="col-"] {
  display: flex;
}

.service-list-item {
  background: var(--white);
  border: 1px solid rgba(69,82,52,0.12);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1rem;
  min-height: 100%;
  padding: 1.25rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
  width: 100%;
}

.service-list-item:hover {
  border-color: rgba(69,82,52,0.28);
  transform: translateY(-3px);
}

.service-list-item span {
  align-items: center;
  background: rgba(69,82,52,0.09);
  border-radius: 8px;
  color: var(--primary);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 0.9rem;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.service-list-item h4 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.4rem;
}

.service-list-item p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}

.project-feature {
  background: #f8faf4;
  border: 1px solid rgba(69,82,52,0.12);
  border-radius: 8px;
  margin-bottom: 3rem;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.project-callout {
  background: var(--white);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.project-callout span {
  color: #6c757d;
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  text-transform: uppercase;
}

.project-callout strong {
  color: var(--primary);
  display: block;
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 0.45rem;
}

.project-callout p {
  color: #6c757d;
  margin-bottom: 0;
}

.project-video {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 0.5rem;
}

.project-video video {
  border-radius: 6px;
}

.project-partner {
  align-items: center;
  border-top: 1px solid rgba(69,82,52,0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
}

.project-partner p {
  color: #6c757d;
  font-weight: 700;
  margin-bottom: 0;
  text-transform: uppercase;
}

.partner-logo {
  background: var(--primary);
  border: 1px solid rgba(69,82,52,0.16);
  border-radius: 8px;
  display: inline-flex;
  margin-bottom: 0 !important;
  max-width: 360px;
  padding: 1rem 1.25rem;
}

.partner-logo img {
  display: block;
  max-height: 96px;
  object-fit: contain;
}

.project-impact {
  margin-top: 0;
}

.impact-card {
  background: var(--white);
  border: 1px solid rgba(69,82,52,0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
  transition: transform 0.3s ease;
}

.impact-card:hover {
  transform: translateY(-5px);
}

.impact-heading {
  align-items: center;
  display: flex;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.impact-heading i {
  align-items: center;
  background: rgba(69,82,52,0.09);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 44px;
  font-size: 1.35rem;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.contact-shell {
  background: #f8faf4;
  border: 1px solid rgba(69,82,52,0.12);
  border-radius: 8px;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.contact-details {
  display: grid;
  gap: 1rem;
}

.contact-detail {
  align-items: flex-start;
  background: var(--white);
  border: 1px solid rgba(69,82,52,0.1);
  border-radius: 8px;
  display: flex;
  gap: 1rem;
  padding: 1rem;
}

.contact-detail i {
  align-items: center;
  background: rgba(69,82,52,0.09);
  border-radius: 8px;
  display: inline-flex;
  flex: 0 0 40px;
  font-size: 1.15rem;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.contact-detail span {
  color: var(--primary);
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
}

.contact-detail p {
  color: #6c757d;
  margin-bottom: 0;
}

.contact-detail a {
  color: #6c757d;
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--primary);
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.contact-socials a {
  align-items: center;
  background: var(--primary);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  width: 42px;
}

.contact-socials a:hover {
  background: #354026;
  color: var(--white);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem);
}

.contact-form .form-label {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form .form-control {
  border: 1px solid rgba(69,82,52,0.18);
  border-radius: 8px;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(69,82,52,0.12);
}

.contact-form button {
  border-radius: 8px;
}

.contact-form button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
}

.contact-status {
  color: #6c757d;
  font-weight: 700;
}

.contact-status.is-success {
  color: var(--primary);
}

.contact-status.is-error {
  color: #b42318;
}

@media (max-width: 767.98px) {
  .project-feature {
    padding: 1.25rem;
  }

  .project-partner {
    align-items: flex-start;
  }

  .partner-logo {
    width: 100%;
  }

  .service-list {
    padding-top: 2rem;
  }

  .additional-focus-image {
    flex: initial;
    min-height: 190px;
  }

  .service-list-grid {
    margin-top: 0.25rem;
  }

  .service-list-item {
    padding: 1rem;
  }

  .contact-shell {
    padding: 1.25rem;
  }
}
.btn-outline-light {
  color: white;
  border-color: white;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary);
  border-color: white;
}
