/* ================= RESET ================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* ================= BASE ================= */
body {
  background-color: #0f3d2e;
  color: #ffffff;
  line-height: 1.6;
}

/* ================= LINKS ================= */
a {
  color: #ffffff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ================= HEADER ================= */
header {
  background: #0b2e22;
  border-bottom: 3px solid #d4a017;
}

/* ================= NAVBAR ================= */
.navbar {
  max-width: 1100px;
  margin: 0 auto;
  height: 100px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo img {
  height: 80px;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.navbar a {
  font-weight: 600;
  font-size: 14px;
}

/* ================= HERO ================= */
.hero {
  text-align: center; /* default */
  padding: 100px 20px 60px;
  background: linear-gradient(
    rgba(15, 61, 46, 0.96),
    rgba(15, 61, 46, 0.96)
  );
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 18px;
}

.hero p {
  max-width: 800px;
  margin: 0 auto;
  color: #e3e3e3;
}

/* ================= HOME HERO (LEFT TEXT) ================= */
.home-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.home-hero .hero-content h1 {
  text-align: center;
}

.home-hero .hero-content p {
  margin-top: 15px;
}

/* ================= ABOUT HERO (LEFT TEXT) ================= */
.about-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.about-hero .hero-content h1 {
  text-align: center;
}

.about-hero .hero-content p {
  margin-top: 15px;
}

/* ================= SECTION ================= */
.section {
  padding: 60px 20px;
}

/* ================= SERVICES PROCESS ================= */
.service-process h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* CENTER BLOCK, LEFT CONTENT */
.process-list {
  max-width: 700px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: left; /* ✅ key fix */
}

.process-item {
  border-left: 2px solid #1e5c45;
  padding-left: 20px;
}

.process-item h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.process-item p {
  font-size: 0.95rem;
  color: #d6d6d6;
}

/* ================= FORM ================= */
form {
  max-width: 600px;
  margin: 0 auto;
}

input,
textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 14px 36px;
  background: #d4a017;
  color: #0f3d2e;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  border: none;
}

/* ================= FOOTER ================= */
footer {
  background: #0b2e22;
  padding: 40px 20px;
  text-align: center;
  border-top: 3px solid #d4a017;
}

footer p {
  color: #cccccc;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    height: auto;
    padding: 15px;
    text-align: center;
  }

  .navbar ul {
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
  }

  .site-logo img {
    height: 60px;
  }

  .hero {
    padding: 60px 15px 30px;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .section {
    padding: 30px 15px;
  }

  input,
  textarea {
    font-size: 16px;
  }

  .btn {
    width: 100%;
  }

  body {
    padding-bottom: 50px;
  }
}
