* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #2a3329;
  color: #ffffff;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

.narrow {
  max-width: 800px;
}

.center-text {
  text-align: center;
}

.section {
  padding: 90px 0;
}

/* HEADER */

.header {
  background: rgba(33, 58, 35, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 0;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-text {
  color: #ffffff;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.2s ease;
}

.nav a:hover {
  color: #d9e6d5;
}

.call-btn {
  background: #2f7d32;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #2f7d32;
  transition: 0.25s ease;
}

.call-btn:hover {
  background: #3fa34d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 125, 50, 0.35);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-hero {
  background-image:
    linear-gradient(rgba(15, 20, 15, 0.25), rgba(15, 20, 15, 0.38)),
    url("images/index-page.png");
}

.services-hero {
  background-image:
    linear-gradient(rgba(15, 20, 15, 0.25), rgba(15, 20, 15, 0.38)),
    url("images/service-page.png");
}

.about-hero {
  background-image:
    linear-gradient(rgba(15, 20, 15, 0.25), rgba(15, 20, 15, 0.38)),
    url("images/about-page.png");
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 30, 20, 0.25), rgba(20, 30, 20, 0.35)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  background: rgba(20, 20, 25, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.20);
}

.eyebrow {
  display: inline-block;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 999px;
  background: rgba(47, 125, 50, 0.28);
}

.hero h1 {
  font-size: 52px;
  margin: 0 0 18px;
  line-height: 1.1;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-text {
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 600px;
  color: #f0f0f0;
  font-weight: 400;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  padding: 13px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-primary {
  background: #2f7d32;
  color: #ffffff;
  border: 1px solid #2f7d32;
}

.btn-primary:hover {
  background: #3fa34d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(47, 125, 50, 0.35);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* TRUST SECTION */

.trust-section {
  background: #334034;
  padding: 50px 0;
  text-align: center;
}

.trust-title {
  color: #ffffff;
  font-size: 16px;
  letter-spacing: 1px;
  margin-bottom: 25px;
  opacity: 0.8;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.trust-item {
  background: #445346;
  padding: 14px 18px;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.08);
}

/* SECTIONS */

.services-preview {
  background: #374438;
}

.content-section {
  background: #2f3a30;
}

.highlight-band {
  background: #2f7d32;
}

.testimonial-section {
  background: #2f3a30;
}

.quote-section {
  background: #2a3329;
}

.section-title {
  color: #ffffff;
  font-size: 34px;
  margin: 0 0 15px;
}

.section-text {
  color: #eef2ec;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.8;
}

/* CARDS */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.card {
  background: #445346;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  background: #4d5f4f;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.card h3 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
}

.card p {
  color: #eef2ec;
  line-height: 1.75;
  margin: 0;
}

/* TESTIMONIAL */

.testimonial-box {
  background: #445346;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px;
  margin-top: 30px;
}

.testimonial-stars {
  font-size: 24px;
  margin: 0 0 15px;
}

.testimonial-text {
  color: #eef2ec;
  line-height: 1.8;
  margin: 0 0 15px;
}

.testimonial-name {
  color: #d7e3d4;
  margin: 0;
  font-weight: bold;
}

/* FORM */

.quote-box {
  background: #445346;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 42px;
}

.quote-form {
  max-width: 800px;
  margin: 30px auto 0;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #374438;
  color: #ffffff;
  font-size: 16px;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #d9e2d7;
}

.form-row textarea {
  min-height: 140px;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #2f7d32;
  box-shadow: 0 0 0 3px rgba(47, 125, 50, 0.20);
}

/* FOOTER */

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #1f271f;
  text-align: center;
  padding: 28px 0;
  color: #ffffff;
}

.footer-inner p {
  margin: 0;
}

/* MOBILE */

@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-container {
    flex-direction: column;
    gap: 15px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero {
    padding: 110px 0;
  }

  .hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 700px) {
  .form-row {
    flex-direction: column;
  }

  .hero {
    padding: 90px 0;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 16px;
  }

  .quote-box {
    padding: 28px;
  }

  .call-btn {
    width: 100%;
    text-align: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

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