* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1d1d1d;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  position: sticky;
  top: 0;
  background: white;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo h1 {
  color: #0f6b2e;
  font-size: 42px;
  font-weight: 800;
}

.logo p {
  font-size: 14px;
  font-weight: 600;
}

.logo span {
  color: #2d9b48;
  font-style: italic;
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
}

.quote-btn,
.green-btn {
  background: #0f6b2e;
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.outline-btn {
  border: 2px solid #0f6b2e;
  color: #0f6b2e;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 7%;
  gap: 60px;
}

.hero-text h2 {
  font-size: 72px;
  line-height: 1;
  margin-bottom: 25px;
  color: #0f6b2e;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-image img {
  width: 100%;
  border-radius: 25px;
}

.features {
  display: flex;
  gap: 25px;
  color: #0f6b2e;
  font-weight: 600;
}

.services,
.why-us,
.gallery {
  padding: 90px 7%;
  text-align: center;
}

.services h3,
.about h3,
.why-us h3,
.gallery h3,
.quote-box h3 {
  font-size: 42px;
  margin-bottom: 15px;
  color: #0f6b2e;
}

.service-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.card,
.why-grid div {
  background: white;
  padding: 40px 25px;
  border-radius: 20px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.06);
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 90px 7%;
}

.about img {
  width: 100%;
  border-radius: 25px;
}

.about-text p {
  margin-top: 20px;
  line-height: 1.8;
}

.about-features {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  color: #0f6b2e;
  font-weight: 700;
}

.quote-section {
  padding: 90px 7%;
  background: linear-gradient(135deg,#0f6b2e,#1f8b42);
}

.quote-box {
  background: white;
  padding: 50px;
  border-radius: 25px;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

input,
select,
textarea {
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-family: inherit;
}

textarea {
  grid-column: span 2;
  min-height: 140px;
}

button {
  background: #0f6b2e;
  color: white;
  border: none;
  padding: 18px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  grid-column: span 2;
}

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

.gallery-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

footer {
  background: #0f6b2e;
  color: white;
  padding: 50px 7%;
  display: flex;
  justify-content: space-between;
}

@media(max-width: 900px) {

  nav {
    display: none;
  }

  .hero,
  .about {
    grid-template-columns: 1fr;
  }

  .hero-text h2 {
    font-size: 52px;
  }

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

  form {
    grid-template-columns: 1fr;
  }

  textarea,
  button {
    grid-column: span 1;
  }

  footer {
    flex-direction: column;
    gap: 30px;
  }
}
