:root {
  /* Color Palette - Eco-friendly pastels */
  --primary-color: #92ad9c;      /* Soft #145d09 */
  --secondary-color: #e5e5e5;    /* Light mint */
  --accent-color: #e8ac4f;       /* Warm sand */
  --highlight-color: #ffffff;    /* Soft lavender */
  --neutral-color: #f9ffb0;      /* Off-white */
  
  /* Shades */
  --primary-dark: #49c17e;
  --primary-light: #aac4a9;
  --secondary-dark: #7c7c7c;
  --secondary-light: #fafff9;
  --accent-dark: #a26a40;
  --accent-light: #bcaa89;
  --highlight-dark: #c87fc9;
  --highlight-light: #ebe4e7;
  --neutral-dark: #a8a8a8;
  --neutral-light: #fafaf0;
  
  /* Text colors */
  --text-dark: #050505;
  --text-medium: #8e9c92;
  --text-light: #aaaaaa;
  
  /* Font families */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Poppins', sans-serif;
  --font-accent: 'Playfair Display', serif;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--text-dark);
  background-color: var(--neutral-light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2.2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

h4 {
  font-size: 1.5rem;
  font-weight: 600;
}

h5 {
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: white;
}

.btn-secondary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--text-dark);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Section Styles */
section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  position: relative;
  font-weight: 700;
  color: var(--primary-dark);
}

.section-subtitle {
  text-align: center;
  margin-bottom: 2.5rem;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--text-medium);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

/* Header */
header {
  padding: 1.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header.scrolled {
  padding: 0.75rem 0;
  background-color: white;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-dark);
  font-weight: 600;
  margin: 0 0.5rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 6rem;
  position: relative;
  background-color: var(--secondary-light);
  overflow: hidden;
}

.hero-content {
  z-index: 10;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
  font-family: var(--font-accent);
}

.hero-desc {
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.hero-swiper {
  width: 100%;
  height: 100vh;
}

.swiper-slide {
  position: relative;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.slide-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* About Section */
#about {
  position: relative;
  background-color: var(--neutral-color);
}

.eco-leaf {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.1;
  z-index: 0;
}

.eco-leaf-1 {
  top: -150px;
  right: -150px;
  transform: rotate(45deg);
}

.eco-leaf-2 {
  bottom: -150px;
  left: -150px;
  transform: rotate(210deg);
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: var(--primary-color);
}

.about-feature h4 {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.feature-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  top: -50px;
  right: -50px;
  border-radius: 50%;
  background-color: var(--secondary-light);
  opacity: 0.5;
  z-index: -1;
}

/* Services Section */
#services {
  background-color: var(--neutral-light);
  position: relative;
}

.service-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  opacity: 0.1;
  z-index: 0;
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.service-desc {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.service-features {
  margin-bottom: 1.5rem;
}

.service-features ul {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

/* Features Section */
#ffe6a9tures {
  background-color: var(--primary-light);
  position: relative;
  overflow: hidden;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  color: var(--accent-color);
}

.feature-title {
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

.feature-desc {
  color: var(--text-medium);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--neutral-light);
  position: relative;
}

.price-card {
  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;
  z-index: 1;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.price-header {
  background-color: var(--primary-color);
  color: white;
  padding: 2rem;
  text-align: center;
}

.price-title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-period {
  font-size: 0.875rem;
}

.price-content {
  padding: 2rem;
}

.price-desc {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.price-features {
  margin-bottom: 2rem;
}

.price-features ul {
  list-style: none;
  padding-left: 0;
}

.price-features li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.price-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
}

/* Team Section */
#team {
  background-color: var(--secondary-light);
  position: relative;
}

.team-card {
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.1);
}

.team-content {
  padding: 1.5rem;
  text-align: center;
}

.team-name {
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.team-role {
  color: var(--text-medium);
}

/* Reviews Section */
#reviews {
  background-color: var(--neutral-light);
  position: relative;
}

.review-swiper {
  overflow: hidden;
  padding-bottom: 50px;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.review-text {
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.review-text:before,
.review-text:after {
  content: '"';
  font-size: 3rem;
  color: var(--primary-light);
  font-family: serif;
  position: absolute;
  line-height: 1;
}

.review-text:before {
  top: -1rem;
  left: -1rem;
}

.review-text:after {
  bottom: -2rem;
  right: -1rem;
}

.review-author {
  display: flex;
  align-items: center;
}

.author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-medium);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--primary-light);
  position: relative;
}

.info-card {
  background-color: white;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.info-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.info-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-desc {
  color: var(--text-medium);
}

/* Contact Section */
#contact {
  background-color: var(--neutral-light);
  position: relative;
}

.contact-form {
  background-color: white;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  border-radius: 5px;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-dark);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(94, 158, 95, 0.25);
}

.form-check-label {
  margin-left: 0.5rem;
  font-size: 0.875rem;
}

.contact-info {
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px;
  padding: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-heading {
  margin-bottom: 2rem;
  font-weight: 700;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 1rem;
}

.contact-text {
  font-size: 1rem;
}

/* Blog Section */
#blog {
  background-color: var(--secondary-light);
  position: relative;
}

.blog-card {
  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-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
}

.blog-date {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

.blog-title {
  margin-bottom: 1rem;
  font-weight: 700;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
  color: var(--text-medium);
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-desc {
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.7);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
  padding-left: 5px;
}

.contact-info-footer {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
}

.contact-icon {
  margin-right: 1rem;
  color: var(--primary-color);
}

.copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}

/* Custom Shape Dividers */
.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 .shape-fill {
  fill: var(--neutral-light);
}

.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-divider-top .shape-fill {
  fill: var(--primary-light);
}

/* Space Page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
} 