:root {
  /* Color Palette */
  --primary-color-1: #6B4E71; /* Deep lavender - primary */
  --primary-color-2: #A78682; /* Muted rose */
  --primary-color-3: #DCC9B6; /* Warm beige */
  --primary-color-4: #547980; /* Teal accent */
  --primary-color-5: #374140; /* Dark slate */
  
  /* Shades */
  --primary-color-1-light: #8A6B91;
  --primary-color-1-dark: #4C3751;
  
  --primary-color-2-light: #C5A5A1;
  --primary-color-2-dark: #896A67;
  
  --primary-color-3-light: #F4E8DD;
  --primary-color-3-dark: #BBAA98;
  
  --primary-color-4-light: #7A9EA5;
  --primary-color-4-dark: #3A5459;
  
  --primary-color-5-light: #5C6665;
  --primary-color-5-dark: #222827;
  
  /* Typography */
  --font-primary: 'Raleway', sans-serif;
  --font-secondary: 'Playfair Display', serif;
  --font-tertiary: 'Montserrat', sans-serif;
}

/* Global Styles */
html, body {
  overflow-x: hidden;
  font-family: var(--font-primary);
  scroll-behavior: smooth;
  color: var(--primary-color-5);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
}

section {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 1.5rem;
  position: relative;
}

.section-subtitle {
  margin-bottom: 2.5rem;
  color: var(--primary-color-4);
}

.section-description {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--primary-color-1);
  font-size: 1.8rem;
}

.nav-link {
  color: var(--primary-color-5);
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color-1);
  transition: all 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-3-light);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: var(--primary-color-5);
  margin-bottom: 2rem;
}

.hero-description {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.hero-blob {
  position: absolute;
  z-index: 0;
}

.hero-blob-1 {
  top: -20%;
  right: -10%;
  opacity: 0.1;
}

.hero-blob-2 {
  bottom: -20%;
  left: -10%;
  opacity: 0.1;
}

/* About Section */
.about-section {
  background-color: white;
  position: relative;
}

.about-feature {
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

.about-feature-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-3-light);
  position: relative;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.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: 25px;
}

.service-name {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
  font-weight: 700;
}

.service-desc {
  margin-bottom: 1.5rem;
  color: var(--primary-color-5);
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-4);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Features Section */
.features-section {
  background-color: white;
}

.feature-card {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

.feature-name {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--primary-color-3-light);
  position: relative;
}

.price-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-header {
  background-color: var(--primary-color-1);
  padding: 25px;
  color: white;
  text-align: center;
}

.price-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
}

.price-content {
  padding: 25px;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.price-features li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-color-4);
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-card {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: auto;
  transition: all 0.5s ease;
}

.team-card:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: white;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color-1);
}

.team-role {
  color: var(--primary-color-4);
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color-3-light);
  position: relative;
}

.review-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 20px;
}

.review-text:before,
.review-text:after {
  content: '\201C';
  font-size: 4rem;
  position: absolute;
  color: var(--primary-color-3);
  font-family: Georgia, serif;
}

.review-text:before {
  top: -20px;
  left: -10px;
}

.review-text:after {
  content: '\201D';
  bottom: -40px;
  right: -10px;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.coreinfo-section {
  background-color: white;
}

.coreinfo-item {
  margin-bottom: 2rem;
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color-1);
}

.coreinfo-item-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

/* Contact Section */
.contact-section {
  background-color: var(--primary-color-3-light);
  position: relative;
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: none;
  border-bottom: 1px solid var(--primary-color-3);
  border-radius: 0;
  padding: 1rem 0.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.submit-btn {
  background-color: var(--primary-color-1);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.submit-btn:hover {
  background-color: var(--primary-color-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  margin-bottom: 30px;
  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(-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: 25px;
  background-color: white;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.blog-excerpt {
  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(--primary-color-3-light);
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  color: var(--primary-color-1);
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: none;
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
}

.gallery-container {
  margin-bottom: 1.5rem;
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-color-5);
  color: white;
  padding: 60px 0 0;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

footer p {
  margin-bottom: 0.8rem;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.8rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer ul li a:hover {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  background-color: var(--primary-color-5-dark);
  padding: 20px 0;
  margin-top: 40px;
}

#site-copyright {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Additional Pages */
.page-header {
  min-height: 50vh;
  background-color: var(--primary-color-3-light);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-item {
  color: var(--primary-color-1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate__fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

/* Utilities */
.text-primary {
  color: var(--primary-color-1) !important;
}

.bg-primary {
  background-color: var(--primary-color-1) !important;
}

.text-secondary {
  color: var(--primary-color-4) !important;
}

.bg-light-primary {
  background-color: var(--primary-color-3-light) !important;
}

.section-divider {
  height: 5px;
  width: 50px;
  background-color: var(--primary-color-1);
  margin: 0 auto 2rem;
}

/* Space Page */
.space-page {
  background-color: var(--primary-color-3-light);
  min-height: 100vh;
}

#space {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
} 