:root {
  /* Eco-friendly Color Palette */
  --primary-green: #4a7c59;
  --secondary-sage: #8fbc8f;
  --accent-mint: #98fb98;
  --earth-brown: #8b7355;
  --sky-blue: #87ceeb;
  
  /* Light/Dark Shades */
  --light-green: #e8f5e8;
  --dark-green: #2d4a35;
  --light-sage: #f0f8f0;
  --dark-sage: #5a7a5a;
  --light-mint: #f5fff5;
  --dark-mint: #6bb26b;
  
  /* 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: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-green), var(--secondary-sage));
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sitename {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--accent-mint);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green), var(--light-sage));
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('PRE_assets/PRE_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 50%;
}

.hero-shape {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--accent-mint);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

#hero-title-1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--primary-green);
  margin-bottom: 1rem;
  line-height: 1.2;
}

#hero-subtitle-1 {
  font-size: 1.5rem;
  color: var(--secondary-sage);
  margin-bottom: 1.5rem;
}

#hero-desc-1 {
  font-size: 1.1rem;
  color: var(--dark-green);
  margin-bottom: 2rem;
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  color: var(--secondary-sage);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--dark-green);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: var(--light-mint);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--light-green);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-green);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Features Section */
.features {
  background: var(--light-sage);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Price Plan Section */
.priceplan {
  background: white;
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: var(--light-green);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 2px solid var(--secondary-sage);
}

.priceplan-card.featured {
  border-color: var(--primary-green);
  transform: scale(1.05);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-green);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  margin: 1.5rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-sage);
}

/* Team Section */
.team {
  background: var(--light-mint);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--primary-green);
}

/* Reviews Section */
.reviews {
  background: white;
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: var(--light-green);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin: 0 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-author {
  font-weight: bold;
  color: var(--primary-green);
}

/* Core Info Section */
.coreinfo {
  background: var(--light-sage);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Form */
.contact {
  background: white;
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--light-green);
  padding: 2rem;
  border-radius: 15px;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--secondary-sage);
  border-radius: 8px;
  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(--primary-green);
}

#site_submit_btn {
  background: var(--primary-green);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
}

#site_submit_btn:hover {
  background: var(--dark-green);
}

/* Blog Section */
.blog {
  background: var(--light-mint);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-item a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background: white;
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  margin-bottom: 1rem;
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: var(--light-green);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--dark-green);
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--secondary-sage);
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  background: white;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--light-sage);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  color: 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 h3 {
  margin-bottom: 1rem;
  color: var(--accent-mint);
}

.footer-section a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: var(--accent-mint);
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--secondary-sage);
  opacity: 0.8;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--light-green);
  margin-top: 80px;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.7;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-3 { margin-top: 3rem; }

/* Swiper Styles */
.swiper-pagination-bullet {
  background: var(--primary-green);
}

.swiper-pagination-bullet-active {
  background: var(--accent-mint);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-green);
} 