/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f7f9fa;
  color: #222;
  line-height: 1.6;
}
header {
  background: #1a3d2f;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links li a:hover {
  color: #a8e063;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}
.hero {
  background: linear-gradient(rgba(26,61,47,0.7), rgba(26,61,47,0.7)), url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  color: #fff;
  padding: 6rem 2rem 4rem 2rem;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.cta-btn {
  background: #a8e063;
  color: #1a3d2f;
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #56ab2f;
  color: #fff;
}
.services {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.services h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.service-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.card {
  background: #f7f9fa;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26,61,47,0.08);
  padding: 2rem 1.5rem;
  flex: 1 1 250px;
  max-width: 320px;
  margin: 1rem 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 6px 24px rgba(26,61,47,0.15);
}
.card h3 {
  color: #1a3d2f;
  margin-bottom: 1rem;
}
.about {
  background: #eaf6ef;
  padding: 4rem 2rem;
  text-align: center;
}
.about h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.gallery {
  background: #fff;
  padding: 4rem 2rem;
  text-align: center;
}
.gallery h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,61,47,0.08);
  object-fit: cover;
  height: 180px;
}
.contact {
  background: #eaf6ef;
  padding: 4rem 2rem;
  text-align: center;
}
.contact h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.contact-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #b2d8b2;
  border-radius: 6px;
  font-size: 1rem;
  resize: none;
}
.contact-form button {
  background: #1a3d2f;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #a8e063;
  color: #1a3d2f;
}
footer {
  background: #1a3d2f;
  color: #fff;
  padding: 2rem 0 1rem 0;
  text-align: center;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-links a {
  color: #a8e063;
  text-decoration: none;
  margin: 0 0.5rem;
  font-size: 0.95rem;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-contact {
  margin: 0.5rem 0 0.5rem 0;
  font-size: 1rem;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  margin: 0 0.5rem;
  font-weight: 500;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #a8e063;
}
@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    gap: 1rem;
    background: #1a3d2f;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem 0;
  }
  .nav-links.active {
    display: flex;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
  }
}
@media (max-width: 500px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .services h2, .about h2, .gallery h2, .contact h2 {
    font-size: 1.3rem;
  }
  .card {
    padding: 1rem 0.5rem;
  }
  .gallery-grid img {
    height: 120px;
  }
} 