:root {
  --primary-color-1: #8a4d76; /* Dark mauve */
  --primary-color-2: #d2b48c; /* Warm tan */
  --primary-color-3: #617b94; /* Steel blue */
  --primary-color-4: #465c69; /* Slate */
  --primary-color-5: #c49a6c; /* Caramel */
  
  /* Light/dark variations */
  --primary-color-1-light: #a5799a;
  --primary-color-1-dark: #6a3b5a;
  --primary-color-2-light: #e2cbaa;
  --primary-color-2-dark: #b29370;
  --primary-color-3-light: #8499ad;
  --primary-color-3-dark: #4c6277;
  --primary-color-4-light: #687b87;
  --primary-color-4-dark: #334350;
  --primary-color-5-light: #d3b28c;
  --primary-color-5-dark: #a37a50;
  
  /* Text colors */
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #f1f1f1;
  
  /* Background colors */
  --bg-light: #f8f8f8;
  --bg-dark: #333333;
  --bg-accent: #f5f0e9;
}

/* Base styles */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Raleway', sans-serif;
  color: var(--text-medium);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 700;
}

p {
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

.btn {
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
}

.btn-secondary {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
}

.btn-secondary:hover {
  background-color: var(--primary-color-3-dark);
  border-color: var(--primary-color-3-dark);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--primary-color-1);
}

.section-description {
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Header Styles */
header {
  background-color: transparent;
  transition: all 0.4s ease;
  padding: 20px 0;
}

header.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

header .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--primary-color-1);
}

header .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  position: relative;
}

header .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-1);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

header .nav-link:hover:after {
  width: 70%;
}

/* Hero Section */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-color-3-light);
}

#hero .container {
  position: relative;
  z-index: 2;
}

#hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 77, 118, 0.8) 0%, rgba(97, 123, 148, 0.7) 100%);
  z-index: 1;
}

.hero-title-1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
}

.hero-subtitle-1 {
  font-size: 1.5rem;
  color: var(--bg-light);
  margin-bottom: 2rem;
}

.hero-desc-1 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

/* About Section */
#about {
  background-color: var(--bg-light);
  position: relative;
}

.about-feature {
  padding: 2rem;
  border-radius: 8px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-color-1);
  margin-bottom: 1.5rem;
}

/* Services Section */
#services {
  background-color: var(--bg-accent);
  position: relative;
}

.service-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-title {
  color: var(--primary-color-1);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-price {
  display: inline-block;
  padding: 6px 12px;
  background-color: var(--primary-color-2-light);
  color: var(--primary-color-2-dark);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.service-features li {
  padding: 5px 0;
  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-1);
}

/* Features Section */
#features {
  background-color: var(--bg-light);
}

.feature-item {
  display: flex;
  margin-bottom: 2rem;
}

.feature-icon {
  margin-right: 1.5rem;
  color: var(--primary-color-3);
  font-size: 2rem;
  flex-shrink: 0;
}

/* Price Plans */
#priceplan {
  background-color: var(--bg-accent);
  position: relative;
}

.price-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-card.featured {
  border: 2px solid var(--primary-color-1);
  transform: scale(1.05);
}

.price-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.price-title {
  color: var(--primary-color-1);
  font-weight: 700;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.price-features li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Team Section */
#team {
  background-color: var(--bg-light);
}

.team-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background: white;
}

.team-name {
  color: var(--primary-color-1);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--text-medium);
  font-style: italic;
}

/* Reviews Section */
#reviews {
  background-color: var(--bg-accent);
  position: relative;
}

.reviews-container {
  position: relative;
}

.review-card {
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 15px;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-text:before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: -10px;
  left: -10px;
  font-size: 1.5rem;
  color: var(--primary-color-2-light);
  opacity: 0.3;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--bg-light);
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.coreinfo-item i {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background-color: var(--bg-accent);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.8rem 1rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.form-check {
  margin-bottom: 1.5rem;
}

/* Blog Section */
#blog {
  background-color: var(--bg-light);
}

.blog-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.blog-image {
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-link {
  font-weight: 600;
  color: var(--primary-color-1);
  display: inline-block;
  margin-top: 1rem;
}

/* FAQ Section */
#faq {
  background-color: var(--bg-accent);
}

.accordion-item {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.accordion-header {
  background: white;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.accordion-body {
  padding: 1.25rem;
  background-color: white;
}

/* Gallery Section */
#gallery {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
}

.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 1rem;
}

footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer ul {
  list-style: none;
  padding-left: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: var(--text-light);
}

footer ul li a:hover {
  color: var(--primary-color-2);
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive shapes */
.shape {
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--primary-color-1);
}

.shape-blob {
  width: 400px;
  height: 400px;
  background: var(--primary-color-3);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Space page */
#space {
  min-height: 400px;
  padding: 4rem 0;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--bg-light);
}

.breadcrumb {
  margin-bottom: 0;
} 