:root {
  /* Color Palette - Using pastel colors for eco-friendly theme */
  --primary-color: #7ac142;      /* Green - Primary brand color */
  --secondary-color: #a5d6a7;    /* Light Green - Secondary brand color */
  --accent-color: #f9c74f;       /* Muted Yellow - For accents and highlights */
  --neutral-color: #e9efe7;      /* Pale Green - For backgrounds */
  --dark-color: #2d4739;         /* Dark Green - For text and contrast */
  
  /* Shades */
  --primary-light: #9ed775;
  --primary-dark: #5c9035;
  --secondary-light: #c8e6c9;
  --secondary-dark: #75a478;
  --accent-light: #fbd57d;
  --accent-dark: #e6b030;
  --neutral-light: #f4f8f1;
  --neutral-dark: #cfdccb;
  --dark-light: #4a6354;
  --dark-dark: #1a2b22;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-color);
  background-color: var(--neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  color: white;
}

.btn-accent {
  background-color: var(--accent-color);
  color: var(--dark-color);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  color: var(--dark-color);
}

/* Section Styles */
section {
  padding: 5rem 0;
}

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

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
}

.section-title h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Card Styles */
.eco-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.eco-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.eco-card-img {
  height: 200px;
  overflow: hidden;
}

.eco-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.eco-card:hover .eco-card-img img {
  transform: scale(1.1);
}

.eco-card-body {
  padding: 1.5rem;
}

.eco-card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.eco-card-text {
  color: var(--dark-light);
  font-size: 0.95rem;
}

.eco-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.eco-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-color);
  display: flex;
  align-items: center;
}

.eco-features li:before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Hero Section */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 600px;
}

.hero-slide {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(45, 71, 57, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
}

.hero-content p {
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-item {
  margin-bottom: 2rem;
}

/* Features Section */
.features-section {
  background-color: var(--neutral-color);
}

.feature-item {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Price Plan Section */
.priceplan-section {
  background-color: white;
}

/* Team Section */
.team-section {
  background-color: var(--neutral-color);
}

.team-member {
  text-align: center;
}

.team-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
  position: relative;
  overflow: hidden;
}

.reviews-section:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: cover;
  opacity: 0.05;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-light);
  font-size: 1.2rem;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--neutral-color);
}

.coreinfo-item {
  margin-bottom: 2rem;
}

.coreinfo-icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.coreinfo-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Contact Section */
.contact-section {
  background-color: white;
}

.contact-form {
  background-color: var(--neutral-light);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border: 1px solid var(--neutral-dark);
  border-radius: 5px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(122, 193, 66, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-service-options {
  margin-bottom: 1.5rem;
}

.service-option {
  margin-bottom: 0.5rem;
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-color);
}

.blog-item {
  margin-bottom: 2rem;
}

.blog-img {
  height: 200px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color);
  font-weight: 600;
}

/* Header & Footer */
header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  color: var(--dark-color);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color);
}

footer {
  background-color: var(--dark-color);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-top {
  margin-bottom: 2rem;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer-contact p i {
  margin-right: 0.75rem;
  color: var(--primary-color);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--neutral-light);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Additional Page Sections */
.add-page-section {
  padding: 5rem 0;
}

.add-page-section:nth-child(odd) {
  background-color: white;
}

.add-page-section:nth-child(even) {
  background-color: var(--neutral-color);
}

/* SVG Decorative Elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-fill {
  fill: white;
}

.shape-fill-neutral {
  fill: var(--neutral-color);
} 