:root {
  /* Color Palette */
  --primary-color: #3A405A;      /* Dark blue-purple */
  --secondary-color: #E9C46A;    /* Gold */
  --accent-color: #F4A261;       /* Coral */
  --neutral-color: #E0E1DD;      /* Light grey */
  --dark-color: #2B2D42;         /* Very dark blue */
  
  /* Shades of primary colors */
  --primary-light: #4F5677;
  --primary-dark: #282B40;
  --secondary-light: #F1D68A;
  --secondary-dark: #CFAF5A;
  --accent-light: #F7B782;
  --accent-dark: #E8915B;
  --neutral-light: #F5F5F3;
  --neutral-dark: #C5C6C3;
  --dark-light: #434461;
  --dark-dark: #1D1E2E;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Raleway', sans-serif;
}

/* General Styles */
body {
  font-family: var(--font-body);
  color: var(--dark-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.section-subtitle {
  margin-bottom: 30px;
  color: var(--accent-color);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
  color: var(--dark-color);
}

/* Header Styles */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(43, 45, 66, 0.9);
}

header.scrolled {
  background-color: rgba(43, 45, 66, 1);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--neutral-light);
}

.nav-link {
  color: var(--neutral-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--secondary-color);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color);
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(58, 64, 90, 0.8) 0%, rgba(43, 45, 66, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--neutral-light);
}

/* About Section */
.about-section {
  background-color: var(--neutral-light);
}

.about-feature {
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  color: var(--secondary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  background-color: white;
}

.service-card {
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: var(--neutral-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 15px 0;
}

.service-features {
  list-style-type: none;
  padding-left: 0;
}

.service-features li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Features Section */
.features-section {
  background-color: var(--primary-light);
  color: white;
}

.feature-item {
  text-align: center;
  margin-bottom: 30px;
}

.feature-icon {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--neutral-light);
}

.price-card {
  padding: 40px 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
}

.price-card.featured:before {
  background-color: var(--secondary-color);
}

.price-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.price-features {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.price-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--secondary-color);
}

/* Team Section */
.team-section {
  background-color: white;
}

.team-member {
  margin-bottom: 30px;
  text-align: center;
}

.team-img-container {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member-name {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team-member-role {
  color: var(--accent-color);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background-color: var(--primary-color);
  color: white;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 30px;
  margin: 15px;
  position: relative;
}

.review-card:after {
  content: '\201D';
  font-family: var(--font-heading);
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.1);
  line-height: 0;
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 700;
}

/* Core Info Section */
.coreinfo-section {
  background-color: var(--neutral-light);
}

.coreinfo-item {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.coreinfo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* Contact Section */
.contact-section {
  background-color: white;
  position: relative;
}

.contact-form {
  background-color: var(--neutral-light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border: 1px solid var(--neutral-dark);
  border-radius: 4px;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(58, 64, 90, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Blog Section */
.blog-section {
  background-color: var(--neutral-light);
}

.blog-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img-container {
  height: 200px;
  overflow: hidden;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-excerpt {
  margin-bottom: 15px;
}

.blog-link {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: none;
}

.blog-link:hover {
  color: var(--accent-dark);
}

/* FAQ Section */
.faq-section {
  background-color: white;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  overflow: hidden;
}

.accordion-button {
  padding: 1.25rem;
  background-color: var(--neutral-light);
  color: var(--primary-color);
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  padding: 1.25rem;
}

/* Gallery Section */
.gallery-section {
  background-color: var(--neutral-light);
}

.gallery-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--dark-color);
  color: var(--neutral-light);
  padding: 50px 0 0;
}

.footer-menu {
  list-style-type: none;
  padding-left: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: var(--neutral-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-menu a:hover {
  color: var(--secondary-color);
}

.contact-info {
  margin-bottom: 5px;
}

.copyright {
  background-color: var(--dark-dark);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
}

/* Shape elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(233, 196, 106, 0.1);
}

.shape-blob {
  width: 400px;
  height: 400px;
  background-color: rgba(244, 162, 97, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: blob-animation 25s linear infinite alternate;
}

@keyframes blob-animation {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Space page */
#space {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--neutral-light);
} 