:root {
  /* Primary Color Palette */
  --primary-1: #5a3d5c; /* Deep Purple */
  --primary-2: #b87d8c; /* Dusty Rose */
  --primary-3: #d9ae94; /* Warm Sand */
  --primary-4: #f1dca7; /* Pale Gold */
  --primary-5: #70a288; /* Sage Green */
  
  /* Light shades */
  --primary-1-light: #7b5e7d;
  --primary-2-light: #d9a4b2;
  --primary-3-light: #f0cdb2;
  --primary-4-light: #f8ebc9;
  --primary-5-light: #91c1aa;
  
  /* Dark shades */
  --primary-1-dark: #412c43;
  --primary-2-dark: #915b69;
  --primary-3-dark: #b48c73;
  --primary-4-dark: #c4b287;
  --primary-5-dark: #557b66;
  
  /* Font sizes */
  --fs-xl: 3.5rem;
  --fs-lg: 2.5rem;
  --fs-md: 1.5rem;
  --fs-sm: 1rem;
  --fs-xs: 0.875rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

p {
  margin-bottom: 1rem;
}

/* Custom Classes */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  position: relative;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-title h2 {
  font-size: var(--fs-lg);
  position: relative;
  display: inline-block;
  z-index: 1;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-2);
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: #777;
}

/* Button Styles */
.btn-primary-custom {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
header {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 0.5rem 0;
  background-color: #fff;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-1);
  font-size: 1.5rem;
}

.nav-link {
  color: #333;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-1);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-1);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  background-color: var(--primary-3-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: var(--fs-xl);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
}

.hero-section p {
  font-size: var(--fs-md);
  margin-bottom: 2rem;
  color: var(--primary-1-dark);
}

.hero-img {
  position: relative;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 0;
}

/* About Section */
.about-section {
  background-color: #fff;
  position: relative;
}

.about-img {
  position: relative;
}

.about-img img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
  padding: 2rem;
}

.about-feature {
  background-color: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  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(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-4-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary-1);
  font-size: 1.5rem;
}

/* Services Section */
.services-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.service-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 0;
  background-color: var(--primary-2);
  transition: all 0.3s ease;
}

.service-item:hover::before {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-3-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background-color: var(--primary-2);
  color: #fff;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.service-features {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed #eee;
}

.service-features ul {
  list-style-type: none;
  padding-left: 0;
}

.service-features ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary-5);
}

/* Features Section */
.features-section {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: all 0.3s ease;
  border-radius: 10px;
}

.feature-item:hover {
  background-color: var(--primary-4-light);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-5-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #fff;
  font-size: 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  background-color: var(--primary-5);
  transform: rotateY(180deg);
}

/* Price Plan Section */
.price-section {
  background-color: #f9f9f9;
  position: relative;
}

.price-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.price-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.price-item.popular {
  border: 2px solid var(--primary-2);
}

.popular-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-2);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  border-bottom-left-radius: 10px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1.5rem 0;
}

.price-amount span {
  font-size: 1rem;
  color: #999;
}

.price-features {
  margin: 2rem 0;
  text-align: left;
}

.price-features ul {
  list-style-type: none;
  padding-left: 0;
}

.price-features ul li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.price-features ul li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--primary-5);
}

/* Team Section */
.team-section {
  background-color: #fff;
}

.team-member {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  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 {
  transition: all 0.5s ease;
  width: 100%;
  height: auto;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
}

.team-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.team-info p {
  color: var(--primary-2);
  margin-bottom: 0;
}

/* Reviews Section */
.reviews-section {
  background-color: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.review-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  transition: all 0.3s ease;
}

.review-text {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1.5rem;
}

.review-text::before {
  content: '\f10d';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary-3);
  font-size: 1.5rem;
}

.review-author {
  display: flex;
  align-items: center;
}

.review-author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1rem;
}

.review-author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-info h5 {
  margin-bottom: 0;
}

.review-author-info p {
  color: #999;
  margin-bottom: 0;
}

/* Core Info Section */
.coreinfo-section {
  background-color: #fff;
}

.coreinfo-item {
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 10px;
  margin-bottom: 2rem;
}

.coreinfo-item:hover {
  background-color: var(--primary-1-light);
  color: #fff;
}

.coreinfo-item:hover h3 {
  color: #fff;
}

.coreinfo-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-4-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary-1);
  font-size: 1.8rem;
  transition: all 0.3s ease;
}

.coreinfo-item:hover .coreinfo-icon {
  background-color: #fff;
}

/* Contact Section */
.contact-section {
  background-color: #f9f9f9;
}

.contact-form {
  background-color: #fff;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid #eee;
  padding: 0.8rem 1rem;
  border-radius: 5px;
  margin-bottom: 1.5rem;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-check-label {
  font-size: 0.9rem;
  color: #666;
}

/* Blog Section */
.blog-section {
  background-color: #fff;
}

.blog-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.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: auto;
  transition: all 0.5s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 1.5rem;
}

.blog-content h4 {
  margin-bottom: 1rem;
}

.blog-content p {
  margin-bottom: 1rem;
}

.blog-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.8rem;
}

/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
}

.accordion-item {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  padding: 1.5rem;
  font-weight: 600;
  color: var(--primary-1);
  background-color: #fff;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-1);
  background-color: var(--primary-4-light);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235a3d5c'%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;
  background-color: #fff;
}

/* Gallery Section */
.gallery-section {
  background-color: #fff;
  padding-bottom: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 250px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 61, 92, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: #fff;
  font-size: 2rem;
}

/* Footer */
footer {
  background-color: var(--primary-1-dark);
  color: #fff;
  padding: 4rem 0 0;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-desc {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style-type: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary-4);
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
}

.footer-contact p i {
  margin-right: 1rem;
  color: var(--primary-4);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0;
  text-align: center;
}

/* Additional pages */
.page-header {
  background-color: var(--primary-1);
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.page-header h2 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.page-header-shape {
  position: absolute;
  bottom: -50px;
  right: -80px;
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

.breadcrumb {
  background-color: transparent;
  padding: 0;
  margin-bottom: 0;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item.active {
  color: #fff;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

/* Space Page */
.space-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f9f9f9;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .service-item:hover,
  .team-member:hover,
  .blog-item:hover,
  .about-feature:hover,
  .price-item:hover {
    transform: none;
  }
  
  .team-img img,
  .blog-img img,
  .gallery-item img {
    transition: none;
  }
  
  .team-member:hover .team-img img,
  .blog-item:hover .blog-img img,
  .gallery-item:hover img {
    transform: none;
  }
  
  .feature-item:hover .feature-icon {
    transform: none;
  }
} 