:root {
  --primary-color-1: #8E6C88; /* Muted purple */
  --primary-color-2: #F0B67F; /* Soft orange */
  --primary-color-3: #5D9E8F; /* Sage green */
  --primary-color-4: #E8857B; /* Coral */
  --primary-color-5: #D3C0AE; /* Warm beige */
  
  --light-1: #F8F5F2;
  --light-2: #F0EBE5;
  --dark-1: #333333;
  --dark-2: #555555;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-1);
  line-height: 1.6;
  background-color: var(--light-1);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  color: white;
  padding: 12px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-color-1);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: transparent;
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  position: fixed;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  color: var(--dark-1);
  margin: 0 15px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-5);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0,0,0,0.3), rgba(0,0,0,0.1));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* About Section */
.about {
  background-color: white;
}

.about-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.about-img::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(142, 108, 136, 0.6), rgba(240, 182, 127, 0.6));
  top: 0;
  left: 0;
  opacity: 0.3;
}

.about-img img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.about-img:hover img {
  transform: scale(1.05);
}

.about-feature {
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  background-color: var(--light-2);
  margin-bottom: 1.5rem;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--light-2);
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 2rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

.service-feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.service-feature i {
  color: var(--primary-color-3);
  margin-right: 10px;
}

/* Features Section */
.features {
  background-color: white;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.feature-item:hover {
  background-color: var(--light-2);
  transform: translateY(-10px);
}

.feature-item i {
  font-size: 3rem;
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--light-2);
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  padding: 3rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.price-card.featured {
  background-color: var(--primary-color-1);
  color: white;
}

.price-card.featured .price {
  color: var(--light-1);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1.5rem 0;
}

.price-feature {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.price-card.featured .price-feature {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  margin-bottom: 2rem;
  text-align: center;
}

.team-img {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.team-img img {
  width: 100%;
  height: auto;
  transition: transform 0.8s ease;
}

.team-img:hover img {
  transform: scale(1.05);
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-2);
}

.review-slider {
  padding-bottom: 3rem;
}

.review-item {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.review-text {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.core-info {
  background-color: white;
}

.core-info-item {
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--light-2);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact {
  background-color: var(--light-2);
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-control {
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0.375rem 0.75rem;
  margin-bottom: 1.5rem;
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.checkbox-group {
  margin-bottom: 1.5rem;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-card {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 2rem;
  background-color: white;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  background-color: var(--light-2);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-header {
  background-color: white;
}

.accordion-button {
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  background-color: white;
  color: var(--dark-1);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery {
  background-color: white;
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--dark-1);
  color: white;
  padding: 5rem 0 2rem;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-desc {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-color-2);
  text-decoration: none;
  transform: translateX(5px);
}

.contact-info {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-info i {
  margin-right: 10px;
  color: var(--primary-color-2);
}

.copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Breadcrumb */
.breadcrumb-container {
  background-color: var(--light-2);
  padding: 1rem 0;
}

.breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
}

.breadcrumb-item a {
  color: var(--dark-2);
  transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-color-1);
}

.breadcrumb-item.active {
  color: var(--primary-color-1);
}

/* Space Page */
.space-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#space {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-1);
}

/* Additional Pages */
.additional-page-section {
  padding: 5rem 0;
}

.additional-page-section:nth-child(odd) {
  background-color: white;
}

.additional-page-section:nth-child(even) {
  background-color: var(--light-2);
} 