:root {
  --primary-color-1: #8bc34a; /* Fresh green for the herbal theme */
  --primary-color-2: #d3e7bc; /* Light green for backgrounds */
  --primary-color-3: #5a7d35; /* Deep green for accents */
  --primary-color-4: #f0f7e6; /* Very light green for secondary backgrounds */
  --primary-color-5: #3e5a22; /* Dark green for text */
  
  --light-shade-1: #ffffff;
  --light-shade-2: #f9faf5;
  --dark-shade-1: #333333;
  --dark-shade-2: #666666;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-shade-1);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: var(--primary-color-5);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-3);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-5);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color-1);
}

/* Header Styles */
header {
  background-color: var(--light-shade-1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo h1 {
  font-size: 24px;
  margin-bottom: 0;
}

/* Mobile Menu Controls - Hide by default in desktop */
.menu-toggle {
  display: none;
}

.close-menu {
  display: none;
}

.main-menu ul {
  display: flex;
  list-style: none;
}

.main-menu ul li {
  margin-left: 30px;
}

.main-menu ul li a {
  font-weight: 500;
  position: relative;
}

.main-menu ul li a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  transition: width 0.3s ease;
}

.main-menu ul li a:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background-color: var(--primary-color-2);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-text {
  width: 50%;
  padding-right: 50px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-image {
  width: 50%;
  position: relative;
}

/* About Section */
.about-section {
  background-color: var(--light-shade-2);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  padding: 20px;
  background-color: var(--light-shade-1);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

/* Services Section */
.services-section {
  background-color: var(--light-shade-1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-item {
  padding: 30px;
  background-color: var(--light-shade-2);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-2);
  border-radius: 50%;
  color: var(--primary-color-5);
  font-size: 30px;
}

.service-item h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-price {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color-3);
  margin: 15px 0;
}

.service-features {
  list-style: none;
  text-align: left;
  margin: 20px 0;
}

.service-features li {
  margin-bottom: 5px;
  padding-left: 25px;
  position: relative;
}

.service-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Features Section */
.features-section {
  background-color: var(--primary-color-2);
  position: relative;
  overflow: hidden;
}

.features-content {
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.feature-block {
  background-color: var(--light-shade-1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-block h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-shade-1);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.priceplan-item {
  padding: 40px 30px;
  background-color: var(--light-shade-2);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.priceplan-item:hover {
  border-color: var(--primary-color-1);
  transform: scale(1.03);
}

.priceplan-name {
  font-size: 24px;
  margin-bottom: 15px;
}

.priceplan-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color-3);
  margin: 20px 0;
}

.priceplan-features {
  list-style: none;
  text-align: left;
  margin: 25px 0;
}

.priceplan-features li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.priceplan-features li:before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-1);
}

/* Team Section */
.team-section {
  background-color: var(--light-shade-2);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.team-member {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-photo {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.team-member:hover .team-photo img {
  transform: scale(1.1);
}

.team-info {
  padding: 20px;
  text-align: center;
}

.team-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-color-3);
  font-weight: 500;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-shade-1);
  position: relative;
  overflow: hidden;
}

.swiper-container {
  padding: 30px 10px;
}

.review-item {
  background-color: var(--light-shade-2);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-3);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--primary-color-2);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.coreinfo-item {
  background-color: var(--light-shade-1);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coreinfo-title {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.coreinfo-title i {
  margin-right: 10px;
  color: var(--primary-color-1);
  font-size: 24px;
}

/* Contact Section */
.contact-section {
  background-color: var(--light-shade-1);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form {
  background-color: var(--light-shade-2);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  outline: none;
  box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.form-check-input {
  margin-right: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color-1);
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-color-3);
  transform: translateY(-2px);
}

.contact-info {
  padding: 40px;
}

.contact-info h3 {
  margin-bottom: 25px;
}

.contact-info p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info p i {
  width: 30px;
  color: var(--primary-color-1);
  font-size: 20px;
}

/* Blog Section */
.blog-section {
  background-color: var(--light-shade-2);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-item {
  background-color: var(--light-shade-1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 20px;
}

.blog-title {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-excerpt {
  margin-bottom: 15px;
}

.blog-link {
  font-weight: 500;
  color: var(--primary-color-3);
  display: inline-flex;
  align-items: center;
}

.blog-link i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.blog-link:hover i {
  transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-shade-1);
}

.accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  background-color: var(--light-shade-2);
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.accordion-header h3 {
  font-size: 18px;
  margin-bottom: 0;
}

.accordion-header:hover {
  background-color: var(--primary-color-2);
}

.accordion-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-content-inner {
  padding: 20px;
  background-color: white;
}

.accordion-item.active .accordion-header {
  background-color: var(--primary-color-2);
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--primary-color-2);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-5);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

footer h2 {
  color: white !important;
  margin-bottom: 20px;
}
footer h3 {
  color: white !important;
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 20px;
  margin-bottom: 20px;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact p {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-contact p i {
  width: 30px;
  color: var(--primary-color-1);
  font-size: 18px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Additional Page Styles */
.page-header {
  padding: 150px 0 80px;
  background-color: var(--primary-color-2);
  text-align: center;
}

/* Space Page */
#space {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
} 