* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;

}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #306380;
  padding: 1rem 2rem;
}
.logo {
  height: 50px;
}
.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-menu a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}
.nav-menu a:hover,
.nav-menu .active {
  color: #8BB83F;
}
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url('images/head_sprinkler_short.jpg') no-repeat center/cover;
  color: white;
  text-align: center;
  padding-bottom: 5rem;
}
.hero-text h1 {
  font-size: 3rem;
  /*margin-bottom: 0.5rem;*/
  padding-top: 3rem;
}
.hero-text p {
  font-size: 1.25rem;
}
.cta-button {
  background-color: #8BB83F;
  border: 2px solid #8BB83F;
  color: white;
  margin-top: 1rem;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-transform: uppercase;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: transparent;
  border: 2px solid #8BB83F;
  color: #8BB83F;
}

.services-highlight {
  text-align: center;
  margin-top: 3rem;
  margin-left: 5rem;
  margin-right: 5rem;
  /*display: inline-block;*/
  /*padding: 3rem 8rem 0 ;*/
  background: #fff;
}
.services-highlight h2 {
  font-size: 2rem;
  color: #306380;
  margin-bottom: 1rem;
}
.services-highlight p {
  margin : 0 0rem;
  margin-bottom: 2rem;
}
.services-highlight a {
  color:inherit;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.service-card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  margin-bottom: 1rem;
  background: #e0e0e0;
}

footer {
  padding: 1rem;
  background: #306380;
  color: white;
  margin-top: auto;
}
footer a {
  color: #8BB83F;
  text-decoration: none;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footerleft, .footerright {
  flex: 1;
}
.footerright {
  text-align: right;
}

.contact-form {
  max-width: 500px;
  margin: 2rem auto;
  background: #f8f8f8;
  padding: 2rem 2rem 1.5rem 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(48, 99, 128, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.contact-form label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #306380;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #cfd8dc;
  border-radius: 5px;
  font-size: 1rem;
  background: #fff;
  transition: border 0.2s;
  margin-bottom: 0.2rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #8BB83F;
  outline: none;
  background: #f4faef;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .cta-button {
  align-self: flex-end;
  margin-top: 0.5rem;
  font-size: 1rem;
  padding: 0.7rem 2rem;
  border-radius: 5px;
}

.g-recaptcha {
  margin: 1rem 0 0.5rem 0;
  align-self: center;
}

/* Responsive for mobile */
@media (max-width: 600px) {
  .contact-form {
    padding: 1rem;
  }
}