:root {
  /* Primary Colors */
  --primary-1: #8a4f7d; /* Plum Purple - Primary brand color */
  --primary-2: #e2b4bd; /* Rose Pink - Complementary */
  --primary-3: #4a6670; /* Slate Blue - Accent */
  --primary-4: #f4e9cd; /* Cream - Background */
  --primary-5: #523a34; /* Dark Brown - Text */
  
  /* Shades of Primary Colors */
  --primary-1-light: #a77a9d;
  --primary-1-dark: #6d3c61;
  --primary-2-light: #f0d0d6;
  --primary-2-dark: #c9919a;
  --primary-3-light: #6d8a93;
  --primary-3-dark: #354a53;
  --primary-4-light: #faf4e4;
  --primary-4-dark: #dbd0b4;
  --primary-5-light: #75584f;
  --primary-5-dark: #3a2924;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--primary-5);
  background-color: var(--primary-4-light);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-5);
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2.2rem;
}

h4 {
  font-size: 1.8rem;
}

h5 {
  font-size: 1.4rem;
}

h6 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

a {
  color: var(--primary-1);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-1-dark);
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-1);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  color: white;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--primary-1);
  color: var(--primary-1);
}

.btn-secondary:hover {
  background-color: var(--primary-1);
  color: white;
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 70px;
  height: 3px;
  background-color: var(--primary-2);
  margin: 15px auto 0;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
header {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-1);
}

.nav-link {
  margin: 0 15px;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--primary-2);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-4);
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  color: var(--primary-5);
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--primary-3);
}

.hero-img {
  position: relative;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: var(--primary-2-light);
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: 0;
}

/* About Section */
.about {
  background-color: white;
}

.about-feature {
  text-align: center;
  padding: 30px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-1);
  margin-bottom: 20px;
}

/* Services Section */
.services {
  background-color: var(--primary-4-light);
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-item-img {
  height: 200px;
  overflow: hidden;
}

.service-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.service-item:hover .service-item-img img {
  transform: scale(1.1);
}

.service-item-content {
  padding: 30px;
}

.service-item-price {
  display: inline-block;
  background-color: var(--primary-1);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-item-features {
  list-style: none;
  margin: 20px 0;
}

.service-item-features li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.service-item-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-1);
}

/* Features Section */
.features {
  background-color: white;
}

.feature-item {
  display: flex;
  margin-bottom: 40px;
}

.feature-icon {
  flex: 0 0 70px;
  height: 70px;
  background-color: var(--primary-1-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
}

.feature-icon i {
  font-size: 30px;
  color: white;
}

.feature-content {
  flex: 1;
}

/* Price Plan Section */
.price-plan {
  background-color: var(--primary-4-light);
}

.price-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding: 50px 30px;
  position: relative;
}

.price-item.featured {
  border: 2px solid var(--primary-1);
  transform: scale(1.05);
}

.price-item.featured::before {
  content: 'Popular';
  position: absolute;
  top: 0;
  right: 30px;
  background-color: var(--primary-1);
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  border-radius: 0 0 10px 10px;
}

.price-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-item h4 {
  margin-bottom: 20px;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin-bottom: 30px;
}

.price-features {
  list-style: none;
  margin: 30px 0;
  text-align: left;
}

.price-features li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
}

.price-features li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--primary-1);
}

/* Team Section */
.team {
  background-color: white;
}

.team-member {
  text-align: center;
  margin-bottom: 40px;
}

.team-img {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.team-img img {
  width: 100%;
  transition: all 0.3s ease;
}

.team-member:hover .team-img img {
  transform: scale(1.1);
}

.team-member h5 {
  margin-bottom: 5px;
}

.team-role {
  color: var(--primary-3);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-4-light);
  position: relative;
}

.reviews-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-size: 150px;
  background-repeat: repeat;
  opacity: 0.05;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 15px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-1);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  color: var(--primary-2-light);
  opacity: 0.5;
}

/* Core Info Section */
.core-info {
  background-color: white;
}

.core-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.core-info-icon {
  flex: 0 0 50px;
  height: 50px;
  margin-right: 20px;
  color: var(--primary-1);
  font-size: 2rem;
}

.core-info-content {
  flex: 1;
}

/* Contact Section */
.contact {
  background-color: var(--primary-4-light);
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-control {
  height: 50px;
  border: 1px solid #eee;
  border-radius: 5px;
  padding: 0 15px;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: none;
}

textarea.form-control {
  height: 150px;
  padding: 15px;
}

.form-check-label {
  margin-left: 10px;
}

/* Blog Section */
.blog {
  background-color: white;
}

.blog-item {
  margin-bottom: 30px;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-content {
  padding: 25px;
}

.blog-title {
  margin-bottom: 15px;
}

.blog-link {
  display: inline-block;
  margin-top: 15px;
  font-weight: 600;
  color: var(--primary-1);
}

.blog-link:hover {
  color: var(--primary-1-dark);
}

/* FAQ Section */
.faq {
  background-color: var(--primary-4-light);
}

.accordion-item {
  margin-bottom: 15px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.accordion-button {
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px 25px;
  font-weight: 600;
  color: var(--primary-5);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1);
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}

.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: 20px 25px;
  background-color: white;
}

/* Gallery Section */
.gallery {
  padding: 100px 0;
  background-color: white;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 15px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: var(--primary-5-dark);
  color: white;
  padding: 80px 0 20px;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-desc {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  margin-bottom: 25px;
  color: white;
  font-size: 1.4rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.contact-info {
  list-style: none;
}

.contact-info li {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: flex-start;
}

.contact-info i {
  margin-right: 15px;
  color: var(--primary-2);
}

.copyright {
  text-align: center;
  padding-top: 30px;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Shapes and decorative elements */
.shape-blob {
  position: absolute;
  z-index: 0;
}

.shape-blob-1 {
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background-color: var(--primary-2-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
  animation: blob-animation 15s infinite alternate;
}

.shape-blob-2 {
  bottom: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: var(--primary-1-light);
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  opacity: 0.3;
  animation: blob-animation 15s infinite alternate-reverse;
}

@keyframes blob-animation {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  33% {
    border-radius: 70% 30% 50% 50% / 50% 50% 70% 30%;
  }
  66% {
    border-radius: 50% 50% 30% 70% / 70% 30% 50% 50%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Breadcrumb */
.breadcrumb-section {
  background-color: var(--primary-4);
  padding: 120px 0 30px;
  text-align: center;
}

.breadcrumb-item {
  font-size: 0;
}

.breadcrumb-item img {
  max-height: 30px;
}

/* Responsive design - will be expanded in responsive.css */ 