:root {
  /* Eco-friendly Color Palette */
  --primary-green: #2d5a27;
  --secondary-green: #4a7c59;
  --accent-sage: #9caf88;
  --warm-earth: #8b7355;
  --soft-cream: #f4f1e8;
  
  /* Light/Dark Shades */
  --light-green: #e8f5e8;
  --dark-green: #1a3d1a;
  --light-sage: #d4e4c8;
  --dark-earth: #5d4a3a;
  --off-white: #fefefe;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--dark-green);
  background-color: var(--off-white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(45, 90, 39, 0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sitename {
  color: var(--off-white);
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: var(--off-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--light-sage);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green), var(--soft-cream));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--accent-sage);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: var(--secondary-green);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--dark-earth);
  margin-bottom: 2rem;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(45, 90, 39, 0.2);
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-header h3 {
  font-size: 1.3rem;
  color: var(--secondary-green);
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--dark-earth);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--light-green);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: var(--off-white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--accent-sage);
  margin-bottom: 1rem;
}

.about-feature h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.about-feature p {
  color: var(--dark-earth);
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  background: linear-gradient(45deg, var(--accent-sage), var(--secondary-green));
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h4 {
  font-size: 1.4rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.service-content p {
  color: var(--dark-earth);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--secondary-green);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-sage);
  font-weight: bold;
}

.service-price {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-green);
  text-align: center;
}

/* Features Section */
.features {
  background: var(--soft-cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--accent-sage);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-item p {
  color: var(--dark-earth);
}

/* Price Plan Section */
.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(45, 90, 39, 0.1);
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--off-white);
  transform: scale(1.05);
}

.price-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-green);
}

.price-card.featured h4 {
  color: var(--off-white);
}

.price-card .price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-sage);
  margin-bottom: 1rem;
}

.price-card.featured .price {
  color: var(--light-sage);
}

.price-card p {
  margin-bottom: 2rem;
  color: var(--dark-earth);
}

.price-card.featured p {
  color: var(--light-green);
}

.price-features {
  list-style: none;
  margin-bottom: 2rem;
}

.price-features li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-sage);
  font-weight: bold;
}

.price-card.featured .price-features li::before {
  color: var(--light-sage);
}

/* Team Section */
.team {
  background: var(--light-green);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--accent-sage);
}

.team-member h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--secondary-green);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: var(--soft-cream);
}

.swiper {
  padding: 2rem 0;
}

.review-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(45, 90, 39, 0.1);
  margin: 1rem;
}

.review-card p {
  font-size: 1.1rem;
  color: var(--dark-earth);
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.8;
}

.review-author {
  font-weight: bold;
  color: var(--primary-green);
  font-size: 1.1rem;
}

/* Core Info Section */
.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: var(--off-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

.coreinfo-item h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: var(--dark-earth);
}

/* Contact Form */
.contact {
  background: var(--light-green);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--off-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(45, 90, 39, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-sage);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

#site_submit_btn {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
  color: var(--off-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

#site_submit_btn:hover {
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  background: var(--soft-cream);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-card {
  background: var(--off-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(45, 90, 39, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: linear-gradient(45deg, var(--accent-sage), var(--secondary-green));
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-content h4 {
  font-size: 1.3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.blog-content p {
  color: var(--dark-earth);
  margin-bottom: 1.5rem;
}

.blog-content a {
  color: var(--secondary-green);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.blog-content a:hover {
  color: var(--primary-green);
}

/* FAQ Section */
.faq {
  background: var(--light-green);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--off-white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(45, 90, 39, 0.1);
}

.faq-question {
  background: var(--soft-cream);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary-green);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--light-sage);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--dark-earth);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--soft-cream);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--off-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--light-sage);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-green);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--off-white);
}

.footer-bottom {
  border-top: 1px solid var(--secondary-green);
  padding-top: 1rem;
  text-align: center;
}

#site-copyright {
  color: var(--light-green);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  background: var(--light-green);
  padding: 1rem 0;
  margin-top: 70px;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.7;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--accent-sage);
  top: 10%;
  left: -5%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--secondary-green);
  bottom: 20%;
  right: -3%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: var(--warm-earth);
  top: 60%;
  left: 5%;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

.hidden {
  display: none;
}

/* Swiper Overrides */
.swiper-pagination-bullet {
  background: var(--accent-sage);
}

.swiper-pagination-bullet-active {
  background: var(--primary-green);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green);
} 