:root {
  --primary: #2f9e4b;
  --bs-primary: #2f9e4b;
  --muted: #6c757d;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background-color: #f4f5f7;
}

body {
  margin: 0;
  background-color: #f4f5f7;
  color: #1f2a37;
}

.hero {
  background: linear-gradient(135deg, rgba(47, 158, 75, 0.95), rgba(25, 168, 126, 0.85));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15), transparent 50%);
  pointer-events: none;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.letter-spacing {
  letter-spacing: 0.45em;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.quote-card {
  border: 1px solid rgba(47, 158, 75, 0.3);
}

.cta-section {
  background: linear-gradient(135deg, #2f9e4b, #1ca87f);
  background-size: 200% 200%;
}

.cta-section .btn {
  border-width: 2px;
}

.btn-primary {
  background-color: #2f9e4b;
  border-color: #2f9e4b;
  box-shadow: none;
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: #1b8c43;
  border-color: #1b8c43;
}

.form-control:focus {
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

@media (max-width: 768px) {
  .letter-spacing {
    letter-spacing: 0.2em;
  }
}

