:root {
  --dark: #1f3111;
  --primary: #205b19;
  --accent: #588e18;
  --lime: #9bd46a;
  --muted: #5b6e4e;
  --light: #9eae94;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #fff;
  background: var(--primary);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1.25rem;
}

/* ------------------------------
   HERO SECTION
--------------------------------*/
.hero {
  background: radial-gradient(circle at 20% 20%, var(--lime), var(--primary));
  padding: 3rem 0 2rem;
  border-bottom: 6px solid var(--lime);
}

.hero-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.hero-text { flex: 1; }

.hero h1 {
  font-weight: 800;
  letter-spacing: 0.5px;
  line-height: 1.08;
  font-size: clamp(2.2rem, 6vw, 4rem);
  text-transform: uppercase;
}

.tagline {
  color: white;
  font-size: 1.1rem;
  margin: 0.75rem 0 1.25rem;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-ring {
  background: radial-gradient(circle at 20% 20%, var(--lime), var(--primary));
  padding: 20px;
  border-radius: 50%;
  border: 6px solid var(--lime);
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}

.image-ring img {
  width: 260px;
  height: auto;
  border-radius: 50%;
}

/* ------------------------------
   SERVICES + GALLERY
--------------------------------*/
.grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 1rem;
  align-items: start;
  margin-top: 1rem;
}

.services {
  list-style: none;
  padding: 1rem;
  margin: 0;
  background: rgba(15, 30, 15, 0.6);
  border: 1px solid var(--muted);
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.services li {
  padding: 0.55rem 0;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.services li:last-child { border-bottom: none; }

.tick { color: var(--lime); font-weight: 800; }

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid rgba(255,255,255,0.06);
}

/* ------------------------------
   CONTACT SECTION
--------------------------------*/
.contact {
  background: #2c6e24;
  width: 100%;
  border-top: 6px solid var(--lime);
  padding: 3rem 1rem 4rem;
  text-align: center;
}

.contact h2 { color: var(--light); }

/* ------------------------------
   CONTACT FORM
--------------------------------*/
.contact-form {
  max-width: 450px;
  margin: 2rem auto;
  text-align: left;
}

.contact-form .form-group { margin-bottom: 1rem; }

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
  background: rgba(255,255,255,0.95);
  color: #000;
  font-family: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #666; }

.contact-form label {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Submit button */
.btn-submit {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.1rem;
  border: none;
  background: var(--lime);
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover { background: var(--accent); }

/* ------------------------------
   SOCIAL ICONS
--------------------------------*/
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.3);
  transition: 0.25s;
}

.social-link:hover img { transform: scale(1.05); }

/* ------------------------------
   FOOTER
--------------------------------*/
footer {
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1rem 0;
}

.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

/* ------------------------------
   RESPONSIVE
--------------------------------*/
@media (max-width: 840px) {
  .hero-flex { flex-direction: column; text-align: center; }
  .image-ring img { width: 180px; }
  .grid { grid-template-columns: 1fr; }
  .gallery img { height: 140px; }
}
