:root {
  /* Primary Colors */
  --primary-1: #64A0B8; /* Soft blue - main brand color */
  --primary-2: #E8C07D; /* Warm gold - accent */
  --primary-3: #B2D6C1; /* Sage green - calming */
  --primary-4: #F5CEC7; /* Soft coral - warm highlight */
  --primary-5: #9079B6; /* Lavender - soothing */
  
  /* Shades */
  --primary-1-light: #8EBFD3;
  --primary-1-dark: #4D819A;
  --primary-2-light: #F2D9A8;
  --primary-2-dark: #C9A45A;
  --primary-3-light: #CFE6D9;
  --primary-3-dark: #8FBDA6;
  --primary-4-light: #F9E3DF;
  --primary-4-dark: #E4A79D;
  --primary-5-light: #B19DCB;
  --primary-5-dark: #735D96;
  
  /* Neutrals */
  --neutral-100: #FFFFFF;
  --neutral-200: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-400: #DEE2E6;
  --neutral-500: #ADB5BD;
  --neutral-600: #6C757D;
  --neutral-700: #495057;
  --neutral-800: #343A40;
  --neutral-900: #212529;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--neutral-800);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

p {
  line-height: 1.8;
}

.section-padding {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.bg-light-1 {
  background-color: var(--neutral-200);
}

.bg-primary-1 {
  background-color: var(--primary-1);
  color: var(--neutral-100);
}

.bg-primary-2 {
  background-color: var(--primary-2);
  color: var(--neutral-900);
}

.bg-primary-3 {
  background-color: var(--primary-3);
  color: var(--neutral-900);
}

.overlay {
  position: relative;
}

.overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 37, 41, 0.7);
  z-index: 1;
}

.overlay * {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--neutral-900);
}

.btn-secondary:hover {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
  color: var(--neutral-900);
}

.card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--primary-1-light);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* About Section */
.about-feature-card {
  padding: 2rem;
  background-color: var(--neutral-100);
  border-radius: 1rem;
  height: 100%;
  transition: all 0.3s ease;
}

.about-feature-card:hover {
  background-color: var(--primary-1-light);
}

.about-feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-1);
}

/* Services Section */
.services-card {
  height: 100%;
  overflow: hidden;
}

.services-icon {
  font-size: 3rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

.price-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-2);
  color: var(--neutral-900);
  font-weight: 700;
  border-radius: 2rem;
}

/* Features Section */
.features-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 2rem;
}

.features-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-3-light);
  color: var(--primary-3-dark);
  border-radius: 50%;
  font-size: 1.5rem;
}

/* Price Plan Section */
.price-plan-card {
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--neutral-300);
  transition: all 0.3s ease;
}

.price-plan-card:hover {
  border-color: var(--primary-1);
}

.price-plan-features {
  list-style: none;
  padding-left: 0;
}

.price-plan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-300);
}

.price-plan-features li:before {
  content: "✓";
  color: var(--primary-1);
  margin-right: 0.5rem;
}

/* Team Section */
.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
}

.team-img-wrapper {
  overflow: hidden;
  border-radius: 1rem 1rem 0 0;
}

.team-img {
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 1.5rem;
  text-align: center;

}

/* Reviews Section */
.review-card {
  padding: 2rem;
  border-radius: 1rem;
  height: 100%;
  position: relative;
}

.review-card:before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary-1-light);
  opacity: 0.3;
  font-family: serif;
}

/* Core Info Section */
.core-info-card {
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background-color: var(--neutral-100);
  transition: all 0.3s ease;
}

.core-info-card:hover {
  background-color: var(--primary-4-light);
}

.core-info-icon {
  font-size: 2.5rem;
  color: var(--primary-4);
  margin-bottom: 1.5rem;
}

/* Contact Form Section */
.contact-form {
  background-color: var(--neutral-100);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 1px solid var(--neutral-400);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.25rem rgba(100, 160, 184, 0.25);
}

/* Blog Section */
.blog-card {
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
}

.blog-img-wrapper {
  overflow: hidden;
  height: 200px;
  position: relative;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-img {
  transform: scale(1.05);
}

.blog-info {
  padding: 1.5rem;
}

/* FAQ Section */
.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--neutral-900);
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(100, 160, 184, 0.25);
}

/* Gallery */
.gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
}

.gallery-img {
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

/* Footer */
footer {
  background-color: var(--neutral-800);
  color: var(--neutral-300);
  padding: 5rem 0 0;
}

.footer-widget {
  margin-bottom: 3rem;
}

.footer-widget h5 {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
}

.footer-widget ul {
  list-style: none;
  padding-left: 0;
}

.footer-widget ul li {
  margin-bottom: 0.75rem;
}

.footer-widget ul li a {
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: var(--primary-1);
}

.footer-bottom {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Shape Elements */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.shape-blob {
  width: 400px;
  height: 400px;
  background-color: rgba(178, 214, 193, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
} 