:root {
  --primary-color-1: #8db48e; /* Soft green */
  --primary-color-2: #d5a6bd; /* Dusty rose */
  --primary-color-3: #f4e9cd; /* Cream */
  --primary-color-4: #643a71; /* Deep purple */
  --primary-color-5: #f9a673; /* Peach */
  
  --primary-color-1-light: #a9c7aa;
  --primary-color-2-light: #e4c6d7;
  --primary-color-3-light: #faf5e7;
  --primary-color-4-light: #8a5e96;
  --primary-color-5-light: #fbc19a;
  
  --primary-color-1-dark: #6c9a6d;
  --primary-color-2-dark: #b78aa2;
  --primary-color-3-dark: #e5d6b0;
  --primary-color-4-dark: #4b2b54;
  --primary-color-5-dark: #e58950;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color-4);
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color-4);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-color-4-light);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

section {
  padding: 80px 0;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-color-4);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--primary-color-4-light);
  transform: translateY(-3px);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color-4);
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  font-weight: 500;
}

.hero {
  height: 100vh;
  background-color: var(--primary-color-3);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: auto;
  z-index: 1;
}

.about {
  background-color: white;
}

.about-features {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.about-feature {
  flex: 0 0 calc(25% - 30px);
  margin: 15px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: white;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
}

.services {
  background-color: var(--primary-color-3-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 25px;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color-4);
  margin-top: 15px;
}

.features {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: var(--primary-color-3-light);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: var(--primary-color-3);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

.price-plans {
  background-color: var(--primary-color-1-light);
}

.price-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}

.price-item {
  flex: 0 0 calc(33.333% - 30px);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.price-item:hover {
  transform: translateY(-10px);
}

.price-header {
  padding: 30px;
  background-color: var(--primary-color-4);
  color: white;
  text-align: center;
}

.price-content {
  padding: 30px;
}

.price-features {
  list-style: none;
  margin: 20px 0;
}

.price-features li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
}

.price-features li:last-child {
  border-bottom: none;
}

.price-tag {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color-4);
  text-align: center;
  margin: 20px 0;
}

.team {
  background-color: white;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.team-member {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-role {
  color: var(--primary-color-2);
  margin-top: 5px;
}

.reviews {
  background-color: var(--primary-color-3-light);
  position: relative;
}

.swiper {
  width: 100%;
  padding: 50px 0;
}

.review-item {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-4);
}

.core-info {
  background-color: white;
}

.core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.core-item {
  text-align: center;
  padding: 20px;
}

.core-icon {
  font-size: 2.5rem;
  color: var(--primary-color-4);
  margin-bottom: 15px;
}

.contact {
  background-color: var(--primary-color-1-light);
}

.contact-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-width: 700px;
  margin: 50px auto 0;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.form-check input {
  margin-right: 10px;
}

.blog {
  background-color: var(--primary-color-3-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.blog-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-10px);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.faq {
  background-color: white;
}

.accordion {
  max-width: 800px;
  margin: 50px auto 0;
}

.accordion-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-header {
  background-color: var(--primary-color-3-light);
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: 1.1rem;
}

.accordion-body {
overflow-x: hidden;
  padding: 20px;
  background-color: white;
  display: none;
}

.accordion-item.active .accordion-body {
overflow-x: hidden;
  display: block;
}

.gallery {
  background-color: var(--primary-color-3-light);
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  height: 250px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.05);
}

footer {
  background-color: var(--primary-color-4);
  color: white;
  padding: 60px 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.footer-title {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-contact p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact i {
  margin-right: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
}

#site-copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.text-center {
  text-align: center;
}

.mb-5 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.section-heading {
  margin-bottom: 50px;
  text-align: center;
}

.breadcrumb {
  padding: 120px 0 30px;
  background-color: var(--primary-color-3);
  text-align: center;
}

.breadcrumb-img {
  max-width: 100%;
  height: auto;
}

/* Custom shape decorations */
.shape {
  position: absolute;
  z-index: 0;
}

.shape-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
}

.shape-blob {
  width: 300px;
  height: 300px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
} 