:root {
  /* Color Palette */
  --primary-color-1: #5c8d89; /* Sage Green */
  --primary-color-2: #f9b572; /* Soft Orange */
  --primary-color-3: #e97777; /* Coral Pink */
  --primary-color-4: #a6c7e8; /* Light Blue */
  --primary-color-5: #d3b7d8; /* Lavender */
  
  /* Light/Dark variants */
  --primary-color-1-light: #7ba6a2;
  --primary-color-1-dark: #476e6b;
  --primary-color-2-light: #fac897;
  --primary-color-2-dark: #e79a4d;
  --primary-color-3-light: #ef9797;
  --primary-color-3-dark: #d55a5a;
  --primary-color-4-light: #c3d8ef;
  --primary-color-4-dark: #7faada;
  --primary-color-5-light: #e2cee5;
  --primary-color-5-dark: #b792c1;
  
  /* Neutral colors */
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-gray: #e0e0e0;
  --dark-gray: #4a4a4a;
  --black: #1a1a1a;
}

/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
  position: relative;
}

.section-title {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color-1);
}

.section-subtitle {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-color-2);
  border-color: var(--primary-color-2);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
  transform: translateY(-2px);
}

/* Header Styles */
header {
  padding: 1rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.navbar-nav .nav-link {
  font-weight: 600;
  color: var(--dark-gray);
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: var(--light-gray);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(92, 141, 137, 0.1) 0%, rgba(233, 119, 119, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* About Section */
.about-section {
  background-color: var(--white);
  position: relative;
}

.about-feature-card {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
}

/* Services Section */
.services-section {
  background-color: var(--light-gray);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: rgba(249, 181, 114, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.service-card {
  padding: 2.5rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 50px;
  background-color: var(--primary-color-3);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
}

.service-features li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--primary-color-2);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* Features Section */
.features-section {
  background-color: var(--white);
}

.feature-card {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: var(--primary-color-4-light);
  color: var(--primary-color-4-dark);
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background-color: var(--primary-color-4);
  color: var(--white);
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--light-gray);
  position: relative;
}

.price-card {
  padding: 3rem 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary-color-5);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-card-popular {
  position: absolute;
  top: 0;
  right: 2rem;
  background-color: var(--primary-color-2);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 0 0 10px 10px;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
}

/* Team Section */
.team-section {
  background-color: var(--white);
  position: relative;
}

.team-member {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-member img {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  color: var(--white);
  transition: all 0.3s ease;
}

.team-member:hover .team-member-info {
  background: linear-gradient(to top, rgba(92, 141, 137, 0.9), rgba(92, 141, 137, 0.5), rgba(0, 0, 0, 0));
}

.team-member-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.team-member-role {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--light-gray);
  position: relative;
}

.review-card {
  padding: 2.5rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
}

.review-card::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 3rem;
  color: rgba(92, 141, 137, 0.1);
  position: absolute;
  top: 1rem;
  left: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--white);
}

.coreinfo-card {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.coreinfo-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-1-dark);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.coreinfo-card:hover .coreinfo-icon {
  transform: scale(1.1);
  background-color: var(--primary-color-1);
  color: var(--white);
}

/* Contact Section */
.contact-section {
  background-color: var(--light-gray);
  position: relative;
}

.contact-info {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-1-dark);
  font-size: 1.3rem;
  margin-right: 1rem;
}

.contact-form {
  padding: 2.5rem;
  border-radius: 10px;
  background-color: var(--white);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid var(--medium-gray);
  border-radius: 5px;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(92, 141, 137, 0.25);
}

/* Blog Section */
.blog-section {
  background-color: var(--white);
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--primary-color-1-dark);
}

/* FAQ Section */
.faq-section {
  background-color: var(--light-gray);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: var(--white);
  color: var(--dark-gray);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: var(--white);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.accordion-body {
  padding: 1.5rem;
  background-color: var(--white);
}

/* Gallery Section */
.gallery-section {
  background-color: var(--white);
  padding-bottom: 3rem;
}

.gallery-image {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-image:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.footer-description {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--primary-color-2);
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links li a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-links li a:hover {
  color: var(--primary-color-2);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  color: var(--primary-color-2);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 3rem;
}

.copyright {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* Added class for the index_space.html page */
.space-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breadcrumb Styles */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: var(--light-gray);
}

/* Additional Pages Styles */
.add-page-section {
  padding: 5rem 0;
}

.add-page-header {
  padding: 5rem 0;
  background-color: var(--primary-color-1);
  color: var(--white);
  text-align: center;
  margin-bottom: 3rem;
}

.add-page-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.add-page-subtitle {
  font-size: 1.2rem;
  opacity: 0.8;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

/* Shape decorations */
.shape-decoration {
  position: absolute;
  z-index: 0;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  opacity: 0.1;
}

.shape-dots {
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--primary-color-3) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.3;
}

/* BacktoTop Button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary-color-1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

#backToTop.active {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background-color: var(--primary-color-1-dark);
  transform: translateY(-5px);
} 