:root {
  /* Primary Color Palette */
  --primary-color-1: #7B68EE; /* Vibrant purple for main elements */
  --primary-color-2: #FF8C42; /* Warm orange for accents */
  --primary-color-3: #1F9D8B; /* Teal for tertiary elements */
  --primary-color-4: #FFB4A2; /* Soft coral for highlights */
  --primary-color-5: #6C63FF; /* Deep indigo for contrast */
  
  /* Light/Dark Shades */
  --primary-color-1-light: #A394F7;
  --primary-color-1-dark: #5343B4;
  --primary-color-2-light: #FFAE78;
  --primary-color-2-dark: #D66E1E;
  --primary-color-3-light: #3CBDAB;
  --primary-color-3-dark: #14796B;
  --primary-color-4-light: #FFCFC2;
  --primary-color-4-dark: #E58F7D;
  --primary-color-5-light: #8F89FF;
  --primary-color-5-dark: #4B41D3;
  
  /* Neutrals */
  --neutral-lightest: #FFFFFF;
  --neutral-light: #F5F5F7;
  --neutral-medium: #D9D9DE;
  --neutral-dark: #4F4F56;
  --neutral-darkest: #22222A;
}

/* General Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--neutral-darkest);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-1-dark);
}

img {
  max-width: 100%;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.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-2);
  border-color: var(--primary-color-2);
}

.btn-secondary:hover {
  background-color: var(--primary-color-2-dark);
  border-color: var(--primary-color-2-dark);
}

.section-padding {
  padding: 6rem 0;
}

.section-title {
  margin-bottom: 1rem;
  color: var(--primary-color-1);
}

.section-subtitle {
  margin-bottom: 2.5rem;
  font-weight: 300;
  font-size: 1.25rem;
}

/* Shape Elements */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.6;
}

.shape-blob-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color-1-light);
  top: -80px;
  right: -50px;
}

.shape-blob-2 {
  width: 250px;
  height: 250px;
  background-color: var(--primary-color-2-light);
  bottom: -70px;
  left: -60px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: var(--neutral-lightest);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--neutral-darkest);
}

.nav-link {
  color: var(--neutral-darkest);
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  margin: 0 0.25rem;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* About Section */
.about {
  position: relative;
  overflow: hidden;
}

.about-feature {
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background-color: var(--neutral-light);
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  margin-bottom: 1rem;
  font-size: 2.5rem;
  color: var(--primary-color-1);
}

/* Services Section */
.services {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.service-item {
  padding: 2rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-lightest);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-item-icon {
  font-size: 3rem;
  color: var(--primary-color-2);
  margin-bottom: 1.5rem;
}

.service-item-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin-top: 1rem;
}

.service-item-features {
  margin-top: 1.5rem;
  padding-left: 1.25rem;
}

.service-item-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
.features {
  position: relative;
  overflow: hidden;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
}

.feature-item-icon {
  font-size: 3rem;
  color: var(--primary-color-3);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.price-item {
  padding: 2.5rem 2rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-lightest);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.price-item-popular {
  border-top: 4px solid var(--primary-color-2);
}

.price-item-tag {
  position: absolute;
  top: 1.25rem;
  right: -2rem;
  background-color: var(--primary-color-2);
  color: var(--neutral-lightest);
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
  transform: rotate(45deg);
}

.price-item-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1.5rem 0;
}

.price-item-features {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
}

.price-item-features li {
  margin-bottom: 0.75rem;
}

/* Team Section */
.team {
  position: relative;
  overflow: hidden;
}

.team-member {
  margin-bottom: 2rem;
}

.team-member-img {
  border-radius: 0.5rem;
  margin-bottom: 1.25rem;
  overflow: hidden;
}

.team-member-img img {
  transition: all 0.3s ease;
}

.team-member:hover .team-member-img img {
  transform: scale(1.05);
}

.team-member-role {
  color: var(--primary-color-1);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.review-item {
  padding: 2rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-lightest);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  transition: all 0.3s ease;
}

.review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-quote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.review-quote::before {
  content: """;
  font-size: 4rem;
  position: absolute;
  top: -1.5rem;
  left: -0.5rem;
  color: var(--primary-color-1-light);
  opacity: 0.5;
}

.review-author {
  font-weight: 700;
  margin-bottom: 0;
}

/* Core Info Section */
.core-info {
  position: relative;
  overflow: hidden;
}

.core-info-item {
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  background-color: var(--neutral-light);
}

.core-info-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.core-info-item-icon {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1.25rem;
}

/* Blog Section */
.blog {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.blog-item {
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: var(--neutral-lightest);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-item-img {
  height: 200px;
  overflow: hidden;
}

.blog-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.05);
}

.blog-item-content {
  padding: 1.5rem;
}

.blog-item-date {
  font-size: 0.875rem;
  color: var(--primary-color-1);
  margin-bottom: 0.75rem;
}

.blog-item-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-item-link {
  font-weight: 600;
  color: var(--primary-color-1);
}

/* FAQ Section */
.faq {
  position: relative;
  overflow: hidden;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 0.5rem;
  overflow: hidden;
}

.accordion-button {
  padding: 1.25rem;
  font-weight: 600;
  color: var(--neutral-darkest);
  background-color: var(--neutral-light);
}

.accordion-button:not(.collapsed) {
  color: var(--primary-color-1);
  background-color: var(--neutral-light);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: var(--neutral-medium);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2322222A'%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;
  background-color: var(--neutral-lightest);
}

/* Gallery Section */
.gallery {
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.gallery-item {
  margin-bottom: 1.5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

.gallery-item img {
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  position: relative;
  overflow: hidden;
}

.contact-form {
  padding: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--neutral-light);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  border: 1px solid var(--neutral-medium);
  margin-bottom: 1.25rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-1);
}

.contact-info {
  padding: 2.5rem;
}

.contact-info-item {
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-1);
  font-size: 1.25rem;
  margin-right: 1rem;
}

/* Footer */
.footer {
  background-color: var(--neutral-darkest);
  color: var(--neutral-light);
  padding: 3rem 0;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-desc {
  margin-bottom: 2rem;
}

.footer-heading {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--neutral-lightest);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--neutral-medium);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color-1-light);
}

.footer-contact-item {
  display: flex;
  margin-bottom: 1rem;
}

.footer-contact-icon {
  margin-right: 1rem;
  color: var(--primary-color-1);
}

.site-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  color: var(--neutral-medium);
}

/* Additional Pages */
.page-header {
  padding: 8rem 0 4rem;
  background-color: var(--neutral-light);
  position: relative;
  overflow: hidden;
}

.breadcrumb-container {
  height: 20px;
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color-1);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color-1);
}

.swiper-button-next, .swiper-button-prev {
  color: var(--primary-color-1);
} 