:root {
  --deep-green: #0F3D2E;
  --deep-green-2: #14523E;
  --solar-yellow: #F9B233;
  --warm-orange: #F97316;
  --light-cream: #FFF8E7;
  --white: #FFFFFF;
  --dark-text: #1F2933;
  --muted-text: #5D6978;
  --border: rgba(15, 61, 46, 0.12);
  --shadow-soft: 0 18px 48px rgba(15, 61, 46, 0.13);
  --shadow-card: 0 14px 34px rgba(31, 41, 51, 0.1);
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark-text);
  background: var(--white);
  line-height: 1.7;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.12;
}

.site-navbar {
  padding: 16px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, padding 0.25s ease;
}

.site-navbar.is-scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(31, 41, 51, 0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep-green);
}

.brand-logo {
  width: 178px;
  height: 54px;
  object-fit: cover;
  object-position: center;
}

.brand-mobile-name {
  display: none;
  color: var(--deep-green);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.navbar-brand strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  letter-spacing: 0;
}

.navbar-brand small {
  display: block;
  color: var(--muted-text);
  font-size: 0.78rem;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--deep-green);
  background: linear-gradient(135deg, var(--solar-yellow), #FFE08B);
  box-shadow: 0 10px 22px rgba(249, 178, 51, 0.28);
}

.navbar-nav {
  gap: 4px;
}

.nav-link {
  color: var(--dark-text);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 10px 12px !important;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--warm-orange);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 22px;
  border-width: 2px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solar {
  color: var(--deep-green);
  background: var(--solar-yellow);
  border-color: var(--solar-yellow);
  box-shadow: 0 14px 28px rgba(249, 178, 51, 0.25);
}

.btn-solar:hover,
.btn-solar:focus {
  color: var(--deep-green);
  background: #ffc85b;
  border-color: #ffc85b;
}

.btn-green {
  color: var(--white);
  background: var(--deep-green);
  border-color: var(--deep-green);
  box-shadow: 0 14px 28px rgba(15, 61, 46, 0.22);
}

.btn-green:hover,
.btn-green:focus {
  color: var(--white);
  background: var(--deep-green-2);
  border-color: var(--deep-green-2);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 150px 0 95px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(15, 61, 46, 0.08), rgba(15, 61, 46, 0.08)),
    url("https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 61, 46, 0.94) 0%, rgba(15, 61, 46, 0.78) 47%, rgba(15, 61, 46, 0.4) 100%),
    radial-gradient(circle at 78% 18%, rgba(249, 178, 51, 0.24), transparent 34%);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--warm-orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--solar-yellow);
}

.hero-title {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 6vw, 5.7rem);
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 900px;
}

.feature-strip div {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.11);
  backdrop-filter: blur(14px);
}

.feature-strip i {
  display: block;
  margin-bottom: 10px;
  color: var(--solar-yellow);
  font-size: 1.5rem;
}

.feature-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 700;
  line-height: 1.35;
}

.hero-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.hero-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.hero-card-content {
  padding: 24px;
}

.hero-card-content span {
  display: block;
  margin-bottom: 8px;
  color: var(--solar-yellow);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero-card-content strong {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 1.24rem;
  line-height: 1.35;
}

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

.page-offset {
  padding-top: 150px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 520px;
  padding: 150px 0 86px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 61, 46, 0.94) 0%, rgba(15, 61, 46, 0.78) 54%, rgba(15, 61, 46, 0.45) 100%),
    var(--page-bg) center/cover no-repeat;
}

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

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-title {
  margin-bottom: 18px;
  color: var(--deep-green);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-text {
  color: var(--muted-text);
  font-size: 1.05rem;
}

.image-stack {
  position: relative;
}

.main-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.floating-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 270px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  color: var(--deep-green);
  background: var(--white);
  box-shadow: var(--shadow-card);
  font-weight: 900;
}

.floating-badge i {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--deep-green);
  background: var(--solar-yellow);
}

.testimonial-card {
  margin: 26px 0;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.testimonial-card i {
  color: var(--warm-orange);
  font-size: 2rem;
}

.testimonial-card p {
  margin: 12px 0 8px;
  color: var(--dark-text);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.45;
}

.testimonial-card span {
  color: var(--muted-text);
  font-weight: 800;
}

.service-card {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(31, 41, 51, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(249, 178, 51, 0.55);
  box-shadow: var(--shadow-soft);
}

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

.service-body {
  position: relative;
  padding: 34px 26px 28px;
}

.service-icon {
  position: absolute;
  top: -28px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 5px solid var(--white);
  border-radius: 18px;
  color: var(--deep-green);
  background: var(--solar-yellow);
  font-size: 1.45rem;
  box-shadow: 0 12px 24px rgba(249, 178, 51, 0.26);
}

.service-body h3 {
  margin-bottom: 12px;
  color: var(--deep-green);
  font-size: 1.18rem;
  line-height: 1.25;
}

.service-body p {
  color: var(--muted-text);
}

.service-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--warm-orange);
  font-weight: 900;
}

.impact-section {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(15, 61, 46, 0.95), rgba(15, 61, 46, 0.83)),
    url("https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}

.impact-copy {
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.06rem;
}

.stat-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--solar-yellow);
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.93);
  font-weight: 800;
  font-size: 1.04rem;
}

.partner-card {
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.partner-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--deep-green);
  background: rgba(249, 178, 51, 0.25);
  font-size: 1.55rem;
}

.partner-card h3 {
  margin: 24px 0 0;
  color: var(--deep-green);
  font-size: 1.22rem;
}

.content-card,
.process-card,
.faq-item,
.cta-band {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.06);
}

.content-card {
  height: 100%;
  padding: 28px;
}

.content-card i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 16px;
  color: var(--deep-green);
  background: rgba(249, 178, 51, 0.24);
  font-size: 1.45rem;
}

.content-card h3,
.process-card h3,
.faq-item h3 {
  color: var(--deep-green);
  font-size: 1.18rem;
}

.content-card p,
.process-card p,
.faq-item p {
  margin-bottom: 0;
  color: var(--muted-text);
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted-text);
  font-weight: 700;
}

.check-list i {
  color: var(--warm-orange);
  font-size: 1.15rem;
  line-height: 1.6;
}

.process-card {
  position: relative;
  height: 100%;
  padding: 30px;
}

.process-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--deep-green);
  background: var(--solar-yellow);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.cta-band {
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(15, 61, 46, 0.98), rgba(20, 82, 62, 0.95)),
    url("https://images.unsplash.com/photo-1509391366360-2e959784a276?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.cta-band h2,
.cta-band p {
  color: var(--white);
}

.cta-band p {
  opacity: 0.86;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 24px;
}

.service-detail-card {
  height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--deep-green);
}

.service-detail-card h3 {
  color: var(--white);
  font-size: 1.22rem;
}

.service-detail-card p {
  color: rgba(255, 255, 255, 0.82);
}

.service-detail-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
}

.service-detail-card li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.split-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.split-panel img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.split-panel-content {
  padding: 38px;
}

.management-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.management-photo-wrap {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.management-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: 28px;
  background: var(--solar-yellow);
}

.management-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 8px solid var(--white);
  border-radius: 28px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.18);
}

.management-name {
  margin: -6px 0 12px;
  color: var(--dark-text);
  font-size: 1.45rem;
}

.credential-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.credential-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--deep-green);
  background: rgba(249, 178, 51, 0.22);
  font-weight: 900;
  font-size: 0.92rem;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 231, 0.68), rgba(255, 255, 255, 1));
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  color: var(--deep-green);
  font-weight: 900;
}

.contact-detail i {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--solar-yellow);
}

.contact-form {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.form-label {
  color: var(--deep-green);
  font-weight: 900;
}

.form-control {
  min-height: 52px;
  border: 1px solid rgba(31, 41, 51, 0.16);
  border-radius: var(--radius-sm);
  color: var(--dark-text);
  background: #FBFCFA;
  font-weight: 600;
}

.form-control:focus {
  border-color: var(--solar-yellow);
  box-shadow: 0 0 0 0.22rem rgba(249, 178, 51, 0.22);
}

textarea.form-control {
  resize: vertical;
}

.site-footer {
  padding: 36px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep-green);
}

.footer-brand {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.site-footer p {
  margin: 0;
}

.footer-links,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.footer-links a:hover,
.social-links a:hover {
  color: var(--solar-yellow);
}

.social-links {
  justify-content: flex-start;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991.98px) {
  .site-navbar .container {
    gap: 10px;
  }

  .navbar-brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand-mobile-name {
    display: inline-block;
  }

  .site-navbar .navbar-collapse {
    padding: 18px 0 8px;
  }

  .hero-section {
    min-height: auto;
    padding: 132px 0 72px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
  }

  .feature-strip div {
    min-height: auto;
  }

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

  .page-offset {
    padding-top: 120px;
  }

  .page-hero {
    min-height: 430px;
    padding: 128px 0 62px;
  }

  .social-links {
    justify-content: flex-start;
  }

  .split-panel-content,
  .cta-band,
  .management-card {
    padding: 26px;
  }

  .management-photo-wrap::before {
    inset: 14px -12px -12px 14px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 138px;
    height: 42px;
  }

  .navbar-brand strong {
    max-width: 180px;
    font-size: 0.92rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-section {
    padding: 118px 0 58px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .floating-badge {
    position: static;
    margin: -28px 16px 0;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-links {
    gap: 12px;
  }
}
