/* Global */
body {
  font-family: 'Inter', sans-serif;
  background: #fdfdfd;
}

/* Hero Section */
.hero {
  height: 85vh;
  background: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)),
              url("https://images.unsplash.com/photo-1504439468489-c8920d796a29?auto=format&fit=crop&w=1200&q=80")
              center/cover no-repeat;
  text-align: center;
  padding: 40px;
}

/* Buttons */
.btn-primary {
  background-color: #3ab4a6;
  border: none;
}
.btn-primary:hover {
  background-color: #329c90;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  transition: 0.2s;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Counters */
.counter {
  font-size: 2rem;
  font-weight: 700;
  color: #3ab4a6;
}

/* Contact form */
#contactForm input,
#contactForm textarea {
  border: 1px solid #e1e1e1;
}
#contactForm input:focus,
#contactForm textarea:focus {
  border-color: #3ab4a6;
  box-shadow: 0 0 0 .1rem rgba(58,180,166,.2);
}
