:root {
  /* Color Palette */
  --primary-color-1: #7B506F; /* Rich plum */
  --primary-color-2: #B5838D; /* Muted rose */
  --primary-color-3: #E5989B; /* Soft coral */
  --primary-color-4: #FFCDB2; /* Pale peach */
  --primary-color-5: #6D597A; /* Deep lavender */
  
  /* Light/Dark Shades */
  --primary-color-1-light: #9771A0;
  --primary-color-1-dark: #5F3D55;
  --primary-color-2-light: #D3A7B1;
  --primary-color-2-dark: #8E6874;
  --primary-color-3-light: #F4BCBE;
  --primary-color-3-dark: #B8787A;
  --primary-color-4-light: #FFE3D4;
  --primary-color-4-dark: #DCB197;
  --primary-color-5-light: #8F7B9C;
  --primary-color-5-dark: #504359;
  
  /* Font sizes */
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.75rem;
  --font-size-h4: 1.5rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
}

/* Base Styles */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Section Spacing */
section {
  padding: 5rem 0;
}

.section-title {
  margin-bottom: 3rem;
  text-align: center;
}

/* Header Styles */
header {
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color-1);
}

.nav-link {
  font-weight: 500;
  color: #333;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color-1);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-color-4-light);
  position: relative;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
}

.hero-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-feature {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.about-feature-icon {
  font-size: 3rem;
  color: var(--primary-color-1);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background-color: var(--primary-color-5-light);
  color: white;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.service-content {
  padding: 1.5rem;
  color: #333;
}

.service-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1rem 0;
}

.service-features {
  list-style: none;
  padding-left: 0;
}

.service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.service-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  background-color: #f9f9f9;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color-3);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.price-plan-section {
  background-color: white;
}

.price-card {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 2px solid var(--primary-color-1);
}

.price-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary-color-1);
  color: white;
  padding: 0.5rem 2rem;
  transform: rotate(45deg) translate(30%, -50%);
  font-size: 0.8rem;
  font-weight: 700;
}

.price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color-1);
  margin: 1.5rem 0;
}

.price-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.7rem 0;
  border-bottom: 1px solid #eee;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  background-color: var(--primary-color-4-light);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color-3);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* Reviews Section */
.reviews-section {
  background-color: white;
}

.review-item {
  text-align: center;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin: 1rem;
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.review-author {
  font-weight: 700;
  color: var(--primary-color-1);
}

/* Core Info Section */
.core-info-section {
  background-color: var(--primary-color-1);
  color: white;
}

.core-info-item {
  text-align: center;
  padding: 2rem;
  margin-bottom: 2rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-10px);
  background-color: rgba(255, 255, 255, 0.2);
}

.core-info-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background-color: #f9f9f9;
}

.contact-form {
  background-color: white;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 0.8rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.form-control:focus {
  border-color: var(--primary-color-1);
  box-shadow: 0 0 0 0.2rem rgba(123, 80, 111, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
}

/* Blog Section */
.blog-section {
  background-color: white;
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.blog-content {
  padding: 1.5rem;
}

.blog-excerpt {
  color: #555;
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-color-1);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
.faq-section {
  background-color: #f9f9f9;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
}

.accordion-button {
  background-color: white;
  font-weight: 600;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-color-1);
  color: white;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.125);
}

.accordion-body {
  padding: 1.5rem;
  background-color: white;
}

/* Gallery Section */
.gallery-section {
  background-color: white;
}

.gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  height: 250px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-color-3);
}

.footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: white;
}

.contact-info {
  margin-bottom: 0.5rem;
}

.site-copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Breadcrumb (No text, only image) */
.breadcrumb-section {
  padding: 1rem 0;
  background-color: #f9f9f9;
}

.breadcrumb-img {
  height: 30px;
  width: auto;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-color-1);
  border-color: var(--primary-color-1);
  padding: 0.8rem 2rem;
  font-weight: 500;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-color-1-dark);
  border-color: var(--primary-color-1-dark);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Decorative Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color-3);
  border-radius: 50% 20% 50% 20%;
  opacity: 0.5;
}

.shape-2 {
  bottom: 20%;
  right: 10%;
  width: 120px;
  height: 120px;
  background-color: var(--primary-color-4);
  border-radius: 30% 70% 70% 30%;
  opacity: 0.6;
}

.shape-3 {
  top: 40%;
  right: 5%;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color-2);
  border-radius: 30% 70% 30% 70%;
  opacity: 0.5;
}

/* Animation classes */
.fade-in {
  animation: fadeIn 1s ease-in-out;
}

.slide-up {
  animation: slideUp 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
} 