:root {
  --green-900: #1a3a0a;
  --green-700: #2d6b15;
  --green-500: #48a626;
  --green-100: #e9f5e0;
  --green-50: #f4faf0;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-500: #6b7280;
  --gray-800: #1f2937;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background-color: var(--white);
}

/* --- Header --- */

header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-100);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.3rem;
  color: var(--green-700);
  text-decoration: none;
  border: 2px solid var(--green-700);
  padding: 0.4rem 1rem;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}

.logo:hover {
  box-shadow: 0 0 12px rgba(45, 107, 21, 0.3);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--gray-500);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--green-700);
}

/* --- Hero --- */

.hero {
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-700) 100%);
  color: var(--white);
  padding: 10rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.deco {
  position: absolute;
  opacity: 0.5;
}

.daisy-1 {
  width: 80px;
  top: 12%;
  left: 6%;
  transform: rotate(-20deg);
}

.daisy-2 {
  width: 60px;
  top: 18%;
  right: 8%;
  transform: rotate(15deg);
}

.daisy-3 {
  width: 50px;
  bottom: 15%;
  left: 12%;
  transform: rotate(30deg);
}

.daisy-4 {
  width: 70px;
  bottom: 20%;
  right: 6%;
  transform: rotate(-10deg);
}

.daisy-5 {
  width: 40px;
  top: 40%;
  left: 25%;
  transform: rotate(45deg);
}

.bee {
  position: absolute;
  width: 60px;
  top: -10px;
  left: -15px;
  opacity: 0.95;
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  position: relative;
}

.tagline {
  font-size: 1.25rem;
  opacity: 0.85;
  margin-bottom: 0.8rem;
}

.service-area {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2.5rem;
  letter-spacing: 0.03em;
}

.cta {
  display: inline-block;
  background: var(--white);
  color: var(--green-700);
  padding: 0.85rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* --- Sections --- */

main section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--green-900);
  text-align: center;
  margin-bottom: 3rem;
}

/* --- Services --- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.8rem;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--green-900);
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.qualification {
  text-align: center;
  margin-top: 3rem;
  padding: 1.2rem 2rem;
  background: var(--green-50);
  border-radius: var(--radius);
  color: var(--green-700);
  font-weight: 500;
}

/* --- Contact --- */

.contact {
  background: var(--gray-50);
  border-radius: var(--radius);
}

.contact-intro {
  text-align: center;
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-top: -1.5rem;
  margin-bottom: 0.5rem;
}

.contact-area {
  text-align: center;
  color: var(--green-700);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem 2.5rem;
  text-decoration: none;
  min-width: 240px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  font-size: 2rem;
  margin-bottom: 0.6rem;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.contact-detail {
  color: var(--green-700);
  font-weight: 700;
  font-size: 1.05rem;
}

/* --- Footer --- */

footer {
  text-align: center;
  padding: 2.5rem;
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* --- Responsive --- */

@media (max-width: 768px) {
  .hero {
    padding: 8rem 1.5rem 4rem;
  }

  .logo {
    border: none;
    padding: 0;
    font-size: 1rem;
  }

  .hero-decorations {
    display: none;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  main section {
    padding: 3rem 1.25rem;
  }

  h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-links {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 100%;
    max-width: 340px;
  }

  .nav-links {
    gap: 1.2rem;
  }
}
