:root {
  /* Eco-Life Color Palette */
  --primary-sage: #9CAF88;
  --primary-forest: #6B8E5A;
  --primary-mint: #A8D5BA;
  --primary-earth: #D4B896;
  --primary-ocean: #7FB3D3;
  
  /* Light Shades */
  --sage-light: #C5D4B7;
  --forest-light: #8FA67E;
  --mint-light: #C7E4D1;
  --earth-light: #E2CDB0;
  --ocean-light: #A5C9E0;
  
  /* Dark Shades */
  --sage-dark: #7A9169;
  --forest-dark: #556B47;
  --mint-dark: #8BC4A1;
  --earth-dark: #C19F7A;
  --ocean-dark: #6A9BC2;
  
  /* Neutral Colors */
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --gray: #6C757D;
  --dark-gray: #343A40;
  --black: #000000;
  
  /* 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-gray);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--forest-dark);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header */
header {
  background: linear-gradient(135deg, var(--sage-light), var(--mint-light));
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--forest-dark);
  text-decoration: none;
}

.navbar-nav {
  flex-direction: row;
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--forest-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-ocean);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--mint-light) 50%, var(--ocean-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--earth-light);
  border-radius: 50%;
  opacity: 0.3;
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--forest-dark);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--primary-forest);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
}

/* Sections */
section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* About Section */
.about {
  background: linear-gradient(45deg, var(--light-gray), var(--sage-light));
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: linear-gradient(135deg, var(--mint-light), var(--sage-light));
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: var(--earth-light);
  border-radius: 50%;
  opacity: 0.2;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--forest-dark);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--gray);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background: linear-gradient(45deg, var(--ocean-light), var(--mint-light));
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--primary-ocean);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--light-gray);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.priceplan-card:nth-child(2) {
  transform: scale(1.05);
  background: linear-gradient(135deg, var(--sage-light), var(--mint-light));
}

.priceplan-card:hover {
  transform: translateY(-10px);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--forest-dark);
  margin: 1rem 0;
}

.priceplan-features {
  list-style: none;
  margin: 2rem 0;
}

.priceplan-features li {
  padding: 0.75rem 0;
  color: var(--gray);
  border-bottom: 1px solid var(--sage-light);
}

/* Team Section */
.team {
  background: linear-gradient(135deg, var(--earth-light), var(--sage-light));
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--sage-light);
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: linear-gradient(135deg, var(--mint-light), var(--ocean-light));
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  margin: 0 1rem;
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4rem;
  color: var(--sage-dark);
  position: absolute;
  top: 1rem;
  left: 2rem;
  opacity: 0.3;
}

.review-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--dark-gray);
}

.review-author {
  font-weight: bold;
  color: var(--forest-dark);
}

/* Core Info Section */
.coreinfo {
  background: linear-gradient(45deg, var(--sage-light), var(--earth-light));
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
}

.coreinfo-item i {
  font-size: 3rem;
  color: var(--primary-earth);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact {
  background: var(--light-gray);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--sage-light);
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-sage);
}

.form-control::placeholder {
  color: var(--gray);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-forest));
  color: var(--white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.service-select {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary-sage);
}

/* Blog Section */
.blog {
  background: linear-gradient(135deg, var(--ocean-light), var(--mint-light));
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  color: var(--forest-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: var(--forest-dark);
}

/* FAQ Section */
.faq {
  background: var(--white);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--light-gray);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  background: linear-gradient(135deg, var(--sage-light), var(--mint-light));
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--forest-dark);
  transition: background 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: linear-gradient(135deg, var(--sage-dark), var(--mint-dark));
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray);
}

.faq-answer.active {
  padding: 1.5rem;
  max-height: 200px;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(45deg, var(--earth-light), var(--ocean-light));
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px 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(--forest-dark), var(--sage-dark));
  color: var(--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 {
  color: var(--sage-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--sage-light);
}

.footer-bottom {
  border-top: 1px solid var(--sage-dark);
  padding-top: 1rem;
  text-align: center;
}

#site-copyright {
  color: var(--light-gray);
  font-size: 0.9rem;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--light-gray);
  margin-top: 80px;
}

.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(--primary-sage);
  top: 10%;
  left: 5%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-mint);
  bottom: 20%;
  right: 10%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: var(--primary-earth);
  top: 60%;
  left: 80%;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--primary-sage);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--forest-dark);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Space page specific */
#space {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--sage-light), var(--mint-light));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#space::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.3"/><circle cx="80" cy="40" r="1.5" fill="%23ffffff" opacity="0.2"/><circle cx="40" cy="80" r="1" fill="%23ffffff" opacity="0.4"/></svg>');
  background-size: 100px 100px;
} 