:root {
  --primary-green: #1e440e;
  --accent-orange: #e6522a;
  --earth-brown: #a44e10;
  --sky-blue: #7ccff6;
  --sunset-yellow: #f5da17;
  --light-green: #a0ff9e;
  --dark-green: #025e0b;
  --light-brown: #e9b714;
  --dark-brown: #52341f;
  --light-blue: #a9d0d6;
  --dark-blue: #587fbe;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #4c4c4c;
  font-size: 21.00px;
}

.nav-link {
  font-size: 10px;
}

.navbar-brand {
  font-size: 12px !important;
  font-weight: 700;
  color: var(--primary-green) !important;
}

h1 {
  font-size: 2.62rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.22rem;
}

h2 {
  font-size: 2.11rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.92rem;
}

h3 {
  font-size: 1.58rem;
  font-weight: 600;
  color: var(--earth-brown);
  margin-bottom: 0.58rem;
}

p {
  font-size: 1.04rem;
  margin-bottom: 1.22rem;
  color: #4b4b4b;
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: translateX(-50%) translateY(-50%); }
  100% { transform: translateX(-60%) translateY(-60%); }
}

.btn-nature {
  background: linear-gradient(45deg, var(--accent-orange), var(--sunset-yellow));
  border: none;
  color: white;
  padding: 16px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-nature:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 18px rgba(253, 131, 44, 0.40);
  color: white;
}

.card-nature {
  border: none;
  border-radius: 11px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: white;
  overflow: hidden;
}

.card-nature:hover {
  transform: translateY(-5px);
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.15);
}

.services-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #c5d0dd 100%);
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3.07rem;
}

.section-subtitle {
  color: var(--accent-orange);
  font-size: 1.11rem;
  margin-bottom: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin: 1rem;
}

.team-member {
  text-align: center;
  padding: 1.5rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent-orange);
}

.contact-section {
  color: white;
  padding: 80px 0;
}

.form-control {
  border: none;
  border-radius: 10px;
  padding: 12px 15px;
  margin-bottom: 1.22rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 0.2rem rgba(255, 106, 44, 0.25);
}

.footer {
  background: var(--earth-brown);
  color: white;
  padding: 40px 0 20px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.65rem;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1.22rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  background: var(--light-green);
  padding: 1rem;
  cursor: pointer;
  border-radius: 10px;
  font-weight: 600;
  color: var(--dark-green);
}

.faq-answer {
  padding: 1rem;
  display: none;
  border-top: 1px solid #eee;
}

.breadcrumb {
  background: none;
  padding: 0.5rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 20.00px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-card {
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.price-card {
  border: 2px solid var(--light-green);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--accent-orange);
  transform: translateY(-5px);
}

.price-featured {
  border-color: var(--accent-orange);
  transform: scale(1.05);
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--accent-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.58rem;
  font-weight: 700;
  margin: 0 auto 1rem;
} 