/* Color Palette */
:root {
  --primary-green: #2d5016;
  --secondary-green: #5a8c3a;
  --accent-green: #7cb342;
  --earth-brown: #8b6f47;
  --light-cream: #f5f3f0;
  --dark-gray: #2c3e50;
  --text-color: #333;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-color);
  background-color: var(--light-cream);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.nav-logo {
  width: 50px;
  height: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--accent-green);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-green);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><pattern id="pattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,40 50,50 T100,50" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="1200" height="600" fill="url(%23pattern)"/></svg>');
  opacity: 0.1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

.hero-logo {
  width: 200px;
  margin-bottom: 2rem;
  animation: bounceIn 1s ease;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Benefits Section */
.benefits {
  background: var(--light-cream);
  padding: 5rem 2rem;
}

.benefits h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-green);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid var(--secondary-green);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--secondary-green);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* Services Section */
.services {
  background: var(--white);
  padding: 5rem 2rem;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--primary-green);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(135deg, var(--light-cream) 0%, var(--white) 100%);
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  border: 2px solid var(--accent-green);
  transition: all 0.3s ease;
}

.service-card:hover {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  border-color: var(--accent-green);
  transform: translateY(-5px);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-card:hover h3 {
  color: var(--white);
}

.service-card p {
  color: #666;
  line-height: 1.6;
}

.service-card:hover p {
  color: var(--white);
}

/* Countdown Section */
.countdown-section {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--primary-green) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.countdown-section h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.countdown-section p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

/* Countdown Timer */
.countdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.countdown-item h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.countdown-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Newsletter Section */
.newsletter {
  background: var(--light-cream);
  padding: 4rem 2rem;
  text-align: center;
}

.newsletter h2 {
  color: var(--primary-green);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.newsletter p {
  color: #666;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 250px;
  padding: 1rem;
  border: 2px solid var(--secondary-green);
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--accent-green);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
  color: var(--white);
  padding: 4rem 2rem;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.contact p {
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-green) 0%, var(--accent-green) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(90, 140, 58, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(90, 140, 58, 0.6);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-green);
  border: 2px solid var(--accent-green);
  font-weight: 600;
}

.btn-secondary:hover {
  background: var(--accent-green);
  color: var(--white);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: var(--dark-gray);
  color: var(--white);
  text-align: center;
  padding: 2rem;
  border-top: 4px solid var(--primary-green);
}

.footer-content p {
  margin: 0.5rem 0;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounceIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .description {
    font-size: 1rem;
  }

  .benefits h2,
  .services h2,
  .contact h2 {
    font-size: 1.8rem;
  }

  .nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .hero-logo {
    width: 150px;
  }

  .hero {
    padding: 4rem 2rem;
  }

  .benefits,
  .services {
    padding: 3rem 2rem;
  }

  .contact-info {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }
}
