:root {
  /* Main color palette */
  --primary-color: #6a4c93;
  --secondary-color: #f8ad9d;
  --tertiary-color: #49a078;
  --accent-color: #f2b134;
  --neutral-color: #4a4e69;
  
  /* Light and dark variations */
  --primary-light: #9d84c4;
  --primary-dark: #452e6b;
  --secondary-light: #ffcec3;
  --secondary-dark: #e07a68;
  --tertiary-light: #7bc4a0;
  --tertiary-dark: #2d7a56;
  --accent-light: #f9c969;
  --accent-dark: #d18c06;
  --neutral-light: #7b8098;
  --neutral-dark: #2d3142;
  
  /* Text colors */
  --text-dark: #222222;
  --text-medium: #555555;
  --text-light: #fcfcfc;
  
  /* Background colors */
  --bg-light: #ffffff;
  --bg-off-white: #f8f9fa;
  --bg-light-alt: #f0f2f5;
  
  /* Functional colors */
  --success: #4caf50;
  --warning: #ff9800;
  --danger: #f44336;
  --info: #2196f3;
}

/* Base Styles */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-medium);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.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(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

.section-padding {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Decorative shapes */
.shape-blob {
  position: absolute;
  z-index: -1;
  border-radius: 41% 59% 70% 30% / 30% 40% 60% 70%;
}

.shape-blob-1 {
  top: -150px;
  right: -100px;
  width: 400px;
  height: 400px;
  background-color: rgba(106, 76, 147, 0.1);
  animation: blob-animation 20s linear infinite alternate;
}

.shape-blob-2 {
  bottom: -150px;
  left: -100px;
  width: 350px;
  height: 350px;
  background-color: rgba(248, 173, 157, 0.1);
  animation: blob-animation 15s linear infinite alternate;
}

@keyframes blob-animation {
  0% {
    border-radius: 41% 59% 70% 30% / 30% 40% 60% 70%;
  }
  25% {
    border-radius: 58% 42% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 36% 64% 50% 50% / 40% 60% 40% 60%;
  }
  75% {
    border-radius: 69% 31% 40% 60% / 50% 40% 60% 50%;
  }
  100% {
    border-radius: 41% 59% 70% 30% / 30% 70% 30% 70%;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.header.sticky {
  background-color: var(--bg-light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
}

.navbar {
  padding: 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--primary-color);
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0.5rem;
  padding: 0.5rem 0.75rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-light-alt);
}

.hero-content {
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.hero-img {
  position: relative;
  z-index: 1;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-feature {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  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 i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.about-feature h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background-color: var(--bg-light-alt);
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.service-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin: 1rem 0;
}

.service-features {
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features {
  position: relative;
  overflow: hidden;
}

.feature-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--tertiary-color);
  margin-bottom: 1.5rem;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--bg-light-alt);
  position: relative;
  overflow: hidden;
}

.pricing-item {
  background-color: var(--bg-light);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  margin-bottom: 2rem;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-header {
  background-color: var(--primary-light);
  padding: 2rem;
  text-align: center;
}

.pricing-header h3 {
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.pricing-body {
  padding: 2rem;
}

.pricing-features {
  padding-left: 0;
  list-style-type: none;
}

.pricing-features li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.pricing-features li:before {
  content: '\f00c';
  font-family: 'FontAwesome';
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--tertiary-color);
}

/* Team Section */
.team {
  position: relative;
  overflow: hidden;
}

.team-member {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background-color: var(--bg-light);
}

.team-info h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-info p {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 0;
}

/* Reviews Section */
.reviews {
  background-color: var(--bg-light-alt);
  position: relative;
  overflow: hidden;
}

.testimonial-slider .swiper-slide {
  padding: 2rem;
}

.testimonial-item {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial-item:after {
  content: '\f10e';
  font-family: 'FontAwesome';
  font-size: 3rem;
  color: rgba(106, 76, 147, 0.1);
  position: absolute;
  bottom: 10px;
  right: 20px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  font-weight: 700;
  color: var(--text-dark);
}

/* Core Info Section */
.core-info {
  position: relative;
  overflow: hidden;
}

.info-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--bg-light);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.info-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.info-item h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Form Section */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-form {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-control {
  height: 50px;
  border-radius: 4px;
  border: 1px solid #e1e1e1;
  padding: 0.75rem 1.25rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

textarea.form-control {
  height: 150px;
  resize: none;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Blog Section */
.blog {
  background-color: var(--bg-light-alt);
  position: relative;
  overflow: hidden;
}

.blog-item {
  background-color: var(--bg-light);
  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%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.05);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq {
  position: relative;
  overflow: hidden;
}

.accordion-item {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: var(--bg-light);
  box-shadow: none;
}

.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='%236a4c93'%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.5rem;
}

/* Gallery Section */
.gallery {
  position: relative;
  overflow: hidden;
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background-color: var(--neutral-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-widget {
  margin-bottom: 2rem;
}

.footer-widget h3 {
  color: var(--text-light);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-widget h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-widget p {
  margin-bottom: 1rem;
}

.footer-widget ul {
  list-style: none;
  padding-left: 0;
}

.footer-widget ul li {
  margin-bottom: 0.75rem;
}

.footer-widget ul li a {
  color: var(--text-light);
  transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

#site-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Space Page */
#space {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  background-color: var(--bg-light-alt);
  border-radius: 4px;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
} 