:root {
  /* Primary Colors */
  --eco-green: #4caf50;
  --eco-teal: #009688;
  --eco-brown: #8d6e63;
  --eco-beige: #f5f5dc;
  --eco-sage: #7cb342;
  
  /* Light/Dark Shades */
  --eco-green-light: #80e27e;
  --eco-green-dark: #087f23;
  --eco-teal-light: #52c7b8;
  --eco-teal-dark: #00675b;
  --eco-brown-light: #be9c91;
  --eco-brown-dark: #5f4339;
  --eco-beige-light: #ffffff;
  --eco-beige-dark: #c2c2ad;
  --eco-sage-light: #aee571;
  --eco-sage-dark: #4b830d;
}

/* Base Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background-color: var(--eco-beige-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

a {
  color: var(--eco-green);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--eco-green-dark);
}

.btn-eco {
  background-color: var(--eco-green);
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-eco:hover {
  background-color: var(--eco-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#sitename {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--eco-green);
}

.navbar-nav .nav-link {
  font-weight: 500;
  padding: 15px 20px;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 10px;
  left: 50%;
  background-color: var(--eco-green);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 30px;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url('../CHR_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(76, 175, 80, 0.1);
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(0, 150, 136, 0.1);
  z-index: 0;
}

#hero-title-1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--eco-green-dark);
}

#hero-subtitle-1 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: var(--eco-teal-dark);
}

#hero-desc-1 {
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* About Section */
.about-section {
  padding: 100px 0;
  position: relative;
  background-color: white;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background-color: var(--eco-beige-light);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

#about-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#about-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.about-feature {
  background-color: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--eco-green);
  margin-bottom: 20px;
}

.about-feature h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--eco-brown-dark);
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background-color: var(--eco-beige-light);
  position: relative;
}

#services-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#services-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--eco-green-dark);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-teal);
  margin-bottom: 15px;
}

.service-features {
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-features li {
  margin-bottom: 5px;
  color: var(--eco-brown);
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

#features-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#features-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.feature-item {
  text-align: center;
  margin-bottom: 40px;
}

.feature-item i {
  font-size: 3rem;
  color: var(--eco-green);
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--eco-brown-dark);
}

/* Price Plan Section */
.priceplan-section {
  padding: 100px 0;
  background-color: var(--eco-beige-light);
  position: relative;
}

#priceplan-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#priceplan-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.price-plan {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  padding: 40px 30px;
  text-align: center;
}

.price-plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-plan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: var(--eco-green);
}

.price-plan.featured::before {
  background-color: var(--eco-teal);
}

.price-plan h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--eco-green-dark);
}

.price-plan.featured h3 {
  color: var(--eco-teal-dark);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-teal);
  margin-bottom: 20px;
}

.price-plan.featured .price-amount {
  color: var(--eco-teal-dark);
}

.price-features {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

/* Team Section */
.team-section {
  padding: 100px 0;
  background-color: white;
}

#team-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#team-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.team-member {
  text-align: center;
  margin-bottom: 40px;
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid var(--eco-green-light);
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--eco-brown-dark);
}

.team-member p {
  color: var(--eco-teal);
  font-size: 1rem;
}

/* Reviews Section */
.reviews-section {
  padding: 100px 0;
  background-color: var(--eco-beige-light);
}

#reviews-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#reviews-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  position: relative;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #666;
}

.review-author {
  font-weight: 600;
  color: var(--eco-green-dark);
}

.review-item::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 2rem;
  color: #f0f0f0;
  z-index: 0;
}

/* Core Info Section */
.coreinfo-section {
  padding: 100px 0;
  background-color: white;
}

#coreinfo-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#coreinfo-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 40px;
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--eco-green);
  margin-bottom: 20px;
}

.coreinfo-item h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--eco-brown-dark);
}

/* Contact Section */
.contact-section {
  padding: 100px 0;
  background-color: var(--eco-beige-light);
}

#contact-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#contact-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid #ddd;
  padding: 12px 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--eco-green);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.form-check-input:checked {
  background-color: var(--eco-green);
  border-color: var(--eco-green);
}

/* Blog Section */
.blog-section {
  padding: 100px 0;
  background-color: white;
}

#blog-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#blog-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--eco-green-dark);
}

.blog-excerpt {
  color: #666;
  margin-bottom: 20px;
}

.blog-link {
  color: var(--eco-teal);
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: var(--eco-beige-light);
}

#faq-title {
  color: var(--eco-green-dark);
  margin-bottom: 1rem;
}

#faq-subtitle {
  color: var(--eco-teal);
  margin-bottom: 2rem;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 20px;
  font-weight: 600;
  color: var(--eco-green-dark);
  background-color: white;
}

.accordion-button:not(.collapsed) {
  color: var(--eco-teal-dark);
  background-color: rgba(76, 175, 80, 0.05);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(76, 175, 80, 0.1);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234caf50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Gallery Section */
.gallery-section {
  padding: 100px 0;
  background-color: white;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: var(--eco-green-dark);
  color: white;
  padding: 80px 0 20px;
}

footer h4 {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: white;
}

footer p, footer small {
  color: rgba(255, 255, 255, 0.8);
}

#sitename-footer {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

#sitedesc {
  margin-bottom: 30px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 10px;
}

.footer-link:hover {
  color: white;
}

#site-copyright {
  display: block;
  text-align: center;
  padding-top: 20px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info p {
  margin-bottom: 15px;
}

.contact-info i {
  margin-right: 10px;
}

/* Additional Pages */
.page-header {
  height: 300px;
  background-color: var(--eco-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
}

.section-additional {
  padding: 80px 0;
}

.section-additional:nth-child(even) {
  background-color: var(--eco-beige-light);
}

.section-additional:nth-child(odd) {
  background-color: white;
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Common Spacing */
.section-padding {
  padding: 100px 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-50 {
  margin-bottom: 50px;
}

/* Shapes */
.shape-blob {
  position: absolute;
  z-index: -1;
  opacity: 0.3;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  background-color: var(--eco-green-light);
  border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  animation: blob-animation 8s infinite ease-in-out;
}

.shape-2 {
  bottom: 10%;
  right: 5%;
  width: 200px;
  height: 200px;
  background-color: var(--eco-teal-light);
  border-radius: 60% 40% 40% 60% / 50% 50% 50% 50%;
  animation: blob-animation 10s infinite ease-in-out;
}

@keyframes blob-animation {
  0% {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  }
  25% {
    border-radius: 30% 70% 70% 30% / 40% 60% 40% 60%;
  }
  50% {
    border-radius: 50% 50% 30% 70% / 30% 30% 70% 70%;
  }
  75% {
    border-radius: 70% 30% 50% 50% / 40% 60% 30% 60%;
  }
  100% {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
  }
}

/* Breadcrumb */
.breadcrumb-wrapper {
  background-color: var(--eco-beige-light);
  padding: 15px 0;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item {
  color: var(--eco-brown);
}

.breadcrumb-item.active {
  color: var(--eco-green-dark);
}

/* Responsive Breakpoints */
@media (max-width: 1199.98px) {
  #hero-title-1 {
    font-size: 3rem;
  }
}

@media (max-width: 991.98px) {
  #hero-title-1 {
    font-size: 2.5rem;
  }
  .section-padding {
    padding: 80px 0;
  }
}

@media (max-width: 767.98px) {
  #hero-title-1 {
    font-size: 2rem;
  }
  #hero-subtitle-1 {
    font-size: 1.2rem;
  }
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand {
    max-width: 70%;
  }
  #hero-title-1 {
    font-size: 1.8rem;
  }
  .section-padding {
    padding: 50px 0;
  }
} 