@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/Montserrat-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
}


@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}
.animate-fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}
.animate-delay-1 { animation-delay: 0.2s; }
.animate-delay-2 { animation-delay: 0.4s; }
.animate-delay-3 { animation-delay: 0.6s; }
.grass-pattern {
  background-image: 
    radial-gradient(ellipse at 50% 100%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, transparent 0%, rgba(34, 197, 94, 0.05) 100%);
}
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover {
  transform: translateY(-8px);
}

/* navigation */
nav {
  background-color: rgba(254, 254, 254, 0.95);
}
.nav-link {
  color: #475569;
  font-weight: 500;
  transition: opacity 0.3s;
}
.nav-link:hover {
  opacity: 0.8;
}
.nav-logo {
  width: 172px;
  height: 70px,
}

.nav-btn {
  background-color: #277a25;
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s;
}
.nav-btn:hover {
  opacity: 0.9;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* hero section */
.hero-wrapper {
  background-color: #fefefe;
}
.hero-badge {
  background-color: rgba(17, 135, 61, 0.1);
  color: #277a25;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.hero-title {
  color: #333537;
}
.hero-subtitle {
  color: #64748b;
}

.scroll-indicator:hover {
  cursor: pointer;
}

/* services section */
.services-wrapper {
  background-color: #f8fafc;
}
.services-badge {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.services-title {
  color: #1e293b;
}
.services-subtitle {
  color: #64748b;
}
.service-card-bg {
  background-color: #ffffff;
}
.service-icon-bg {
  background-color: rgba(22, 163, 74, 0.1);
}
.service-icon-green {
  fill: #16a34a;
}
.service-icon-blue {
  fill: #3b82f6;
}
.service-icon-amber {
  fill: #f59e0b;
}
.service-title {
  color: #1e293b;
}
.service-text {
  color: #64748b;
}
.service-list-item {
  color: #475569;
}
.checkmark-icon {
  fill: #16a34a;
}

/* Why Us Section */
.why-us-wrapper {
  background-color: #ffffff;
}
.why-us-badge {
  background-color: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}
.why-us-title {
  color: #1e293b;
}
.why-us-subtitle {
  color: #64748b;
}
.why-card {
  border-radius: 0.5rem;
  padding: 2rem;
  transition: transform 0.3s;
}
.why-card:hover {
  transform: scale(1.05);
}
.why-card-green {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}
.why-card-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}
.why-card-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}
.why-card-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}
.why-card-text {
  color: white;
}
.why-card-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

/* contact section */
.contact-wrapper {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #22c55e 100%);
}
.contact-title {
  color: white;
}
.contact-subtitle {
  color: white;
  opacity: 0.9;
}
.contact-card {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  padding: 3rem;
}
.contact-item-center {
  text-align: center;
}
.contact-icon-bg {
  background-color: rgba(22, 163, 74, 0.1);
}
.contact-icon {
  fill: #16a34a;
}
.contact-label {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-value {
  color: #1e293b;
}
.contact-value-heading {
  color: #1e293b;
}
.contact-divider {
  border-color: #e2e8f0;
}
.contact-hours {
  color: #64748b;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.contact-hours-text {
  color: #475569;
  font-weight: 500;
}

/* footer */
footer {
  background-color: #1e293b;
}
.footer-icon-bg {
  background-color: #16a34a;
}
.footer-icon {
  fill: white;
}
.footer-name {
  color: #e9ecf1;
}
.footer-text {
  color: white;
}
.footer-copyright {
  color: #94a3b8;
  font-size: 0.875rem;
}

@view-transition {
  navigation: auto;
}