:root {
  /* Color Palette */
  --primary-color-1: #6a6da3; /* Soft lavender */
  --primary-color-2: #d9aeb4; /* Rose pink */
  --primary-color-3: #f5e4d7; /* Soft peach */
  --primary-color-4: #4b6e59; /* Forest green */
  --primary-color-5: #9c7a4e; /* Warm brown */
  
  /* Shade variations */
  --primary-color-1-light: #9093c0;
  --primary-color-1-dark: #484c82;
  --primary-color-2-light: #ecd4d8;
  --primary-color-2-dark: #b88d92;
  --primary-color-3-light: #fff9f3;
  --primary-color-3-dark: #e0cabb;
  --primary-color-4-light: #6a8c77;
  --primary-color-4-dark: #344e3c;
  --primary-color-5-light: #c5a575;
  --primary-color-5-dark: #7d6139;
  
  /* Common settings */
  --font-family-primary: 'Montserrat', sans-serif;
  --font-family-secondary: 'Playfair Display', serif;
  --transition-default: all 0.3s ease;
}

/* General Styles */
body {
  font-family: var(--font-family-primary);
  color: #333;
  overflow-x: hidden;
  background-color: var(--primary-color-3-light);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-secondary);
  margin-bottom: 1rem;
}

a {
  color: var(--primary-color-1);
  text-decoration: none;
  transition: var(--transition-default);
}

a:hover {
  color: var(--primary-color-1-dark);
}

.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-4);
  border-color: var(--primary-color-4);
}

.btn-secondary:hover {
  background-color: var(--primary-color-4-dark);
  border-color: var(--primary-color-4-dark);
}

/* Section Styling */
section {
  padding: 5rem 0;
}

section.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background-color: var(--primary-color-3);
  overflow: hidden;
}

section.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(106, 109, 163, 0.2) 0%, rgba(217, 174, 180, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* About Section */
.about {
  position: relative;
  background-color: #fff;
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  transition: var(--transition-default);
  background-color: var(--primary-color-3-light);
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services {
  background-color: var(--primary-color-1-light);
  position: relative;
}

.service-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition-default);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--primary-color-1);
}

.service-price {
  background-color: var(--primary-color-1);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  display: inline-block;
  font-weight: bold;
}

/* Features Section */
.features {
  background-color: #fff;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  transition: var(--transition-default);
}

.feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background-color: var(--primary-color-3-light);
  color: var(--primary-color-1);
  font-size: 2rem;
  transition: var(--transition-default);
}

/* Price Plan Section */
.priceplan {
  background-color: var(--primary-color-3-light);
}

.price-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: var(--transition-default);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #eee;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-1);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.price-features li {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
}

.price-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900;
  margin-right: 0.5rem;
  color: var(--primary-color-4);
}

/* Team Section */
.team {
  background-color: #fff;
}

.team-member {
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member img {
  width: 100%;
  transition: var(--transition-default);
}

.team-member:hover img {
  transform: scale(1.05);
}

.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem;
  color: #fff;
}

/* Reviews Section */
.reviews {
  background-color: var(--primary-color-1-light);
  position: relative;
}

.review-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1rem 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-author {
  font-weight: bold;
  color: var(--primary-color-1);
  margin-top: 1rem;
}

/* Core Info Section */
.coreinfo {
  background-color: var(--primary-color-3-light);
}

.core-info-item {
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: var(--transition-default);
}

.core-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.core-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background-color: var(--primary-color-1-light);
  color: var(--primary-color-1-dark);
  font-size: 1.5rem;
}

/* Contact Section */
.contact {
  background-color: #fff;
}

.contact-form {
  background-color: var(--primary-color-3-light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  border: 1px solid #eee;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-check {
  margin-bottom: 1rem;
}

/* Blog Section */
.blog {
  background-color: var(--primary-color-3-light);
}

.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: var(--transition-default);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.blog-item img {
  width: 100%;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq {
  background-color: #fff;
}

.accordion-item {
  margin-bottom: 1rem;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background-color: var(--primary-color-3-light);
  color: var(--primary-color-1-dark);
  font-weight: 600;
  padding: 1.25rem;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: #fff;
}

.accordion-body {
  padding: 1.5rem;
  background-color: #fff;
}

/* Gallery Section */
.gallery {
  background-color: var(--primary-color-3-light);
}

.gallery-item {
  margin-bottom: 2rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
}

.gallery-item img {
  width: 100%;
  transition: var(--transition-default);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--primary-color-1-dark);
  color: #fff;
  padding: 3rem 0 2rem;
}

footer h5 {
  color: #fff;
  margin-bottom: 1.5rem;
}

footer p {
  margin-bottom: 0.5rem;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 0.5rem;
}

footer ul li a {
  color: rgba(255, 255, 255, 0.8);
}

footer ul li a:hover {
  color: #fff;
}

#site-copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

/* Shape Elements */
.shape-blob {
  position: absolute;
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  animation: blob-movement 20s linear infinite;
}

.shape-blob-1 {
  width: 400px;
  height: 400px;
  background-color: rgba(106, 109, 163, 0.1);
  top: -100px;
  right: -100px;
}

.shape-blob-2 {
  width: 300px;
  height: 300px;
  background-color: rgba(217, 174, 180, 0.1);
  bottom: -50px;
  left: -50px;
  animation-delay: -5s;
}

@keyframes blob-movement {
  0%, 100% {
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
  25% {
    border-radius: 45% 55% 30% 70% / 55% 30% 70% 45%;
  }
  50% {
    border-radius: 30% 70% 55% 45% / 30% 65% 35% 70%;
  }
  75% {
    border-radius: 65% 35% 45% 55% / 40% 45% 55% 60%;
  }
} 