/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #44403c;
  background: linear-gradient(to bottom, #f0fdf4, #fefbf3, #fef3c7);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Forest Background Pattern */
.forest-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.forest-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-image: radial-gradient(circle at 25% 25%, rgba(34, 197, 94, 0.03) 2px, transparent 2px),
    radial-gradient(circle at 75% 75%, rgba(34, 197, 94, 0.03) 1.5px, transparent 1.5px),
    radial-gradient(circle at 50% 10%, rgba(168, 162, 158, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 10% 50%, rgba(168, 162, 158, 0.02) 1px, transparent 1px),
    radial-gradient(circle at 90% 30%, rgba(168, 162, 158, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 113, 108, 0.01) 1px, transparent 1px),
    linear-gradient(0deg, rgba(120, 113, 108, 0.01) 1px, transparent 1px);
  background-size: 80px 80px, 60px 60px, 40px 40px, 35px 35px, 45px 45px, 100px 100px, 100px 100px;
  background-position: 0 0, 20px 20px, 10px 10px, 30px 5px, 5px 35px, 0 0, 0 0;
}

/* Floating Leaf Animation */
@keyframes float-leaf {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(2deg);
  }
  50% {
    transform: translateY(-5px) rotate(-1deg);
  }
  75% {
    transform: translateY(-15px) rotate(1deg);
  }
}

.floating-leaf {
  position: absolute;
  font-size: 20px;
  opacity: 0.1;
  animation: float-leaf 8s ease-in-out infinite;
}

.leaf-1 {
  top: 80px;
  left: 40px;
  animation-delay: 0s;
}

.leaf-2 {
  top: 160px;
  right: 80px;
  animation-delay: -2s;
}

.leaf-3 {
  bottom: 160px;
  left: 25%;
  animation-delay: -4s;
}

.leaf-4 {
  bottom: 80px;
  right: 33%;
  animation-delay: -6s;
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7e5e4;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 1rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #292524;
}

.navigation {
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #57534e;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #15803d;
}

/* Hero Section */
.hero {
  padding: 3rem 0 6rem;
  position: relative;
  z-index: 10;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #292524;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-description {
  font-size: 1.125rem;
  color: #57534e;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #15803d;
  color: white;
}

.btn-primary:hover {
  background-color: #166534;
}

.btn-secondary {
  background-color: transparent;
  color: #57534e;
  border: 1px solid #a8a29e;
}

.btn-secondary:hover {
  background-color: #f5f5f4;
}

.development-notice {
  background-color: #f5f5f4;
  border: 1px solid #d6d3d1;
  border-radius: 0.5rem;
  padding: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.development-notice p {
  font-size: 0.875rem;
  color: #57534e;
  font-weight: 500;
}

/* About Section */
.about {
  padding: 6rem 0;
  background-color: white;
  position: relative;
  z-index: 10;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #292524;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description {
  font-size: 1.125rem;
  color: #57534e;
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-icon {
  font-size: 1.25rem;
}

.feature-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #57534e;
}

.about-image {
  display: flex;
  justify-content: center;
}

.image-placeholder {
  width: 100%;
  max-width: 400px;
  height: 256px;
  background: linear-gradient(135deg, #dcfce7, #fef3c7);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-icon {
  font-size: 6rem;
  opacity: 0.5;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: linear-gradient(135deg, #dcfce7, #f5f5f4);
  position: relative;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid #e7e5e4;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-2px);
}

.service-icon {
  width: 48px;
  height: 48px;
  background-color: #dcfce7;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #292524;
  margin-bottom: 1rem;
}

.service-description {
  color: #57534e;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  background-color: white;
  position: relative;
  z-index: 10;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-card {
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.first-step {
  background-color: #fffbeb;
  border: 1px solid #fed7aa;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #292524;
  margin-bottom: 1.5rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-icon {
  font-size: 1.25rem;
}

.contact-label {
  font-weight: 500;
  color: #292524;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #57534e;
  font-size: 0.875rem;
}

.card-description {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.expectations-title {
  font-weight: 500;
  color: #15803d;
  margin-bottom: 0.5rem;
}

.expectations-list {
  list-style: none;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background-color: #292524;
  color: white;
  padding: 1.5rem 0;
  border-top: 1px solid #44403c;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.footer-text {
  font-size: 0.875rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
}

.footer-link {
  font-size: 0.875rem;
  color: white;
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .about-grid {
    grid-template-columns: 1fr 400px;
    gap: 4rem;
  }

  .section-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 5rem;
  }

  .about-grid {
    grid-template-columns: 1fr 600px;
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    height: auto;
    padding: 1rem;
    gap: 1rem;
  }

  .hero {
    padding: 2rem 0 4rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

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

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

  .contact-card {
    min-width: auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
