:root {
  --primary-color-1: #f3d9dc; /* Soft pink */
  --primary-color-2: #c6e2e9; /* Pale blue */
  --primary-color-3: #fbe8c8; /* Peach */
  --primary-color-4: #b3d0c7; /* Mint green */
  --primary-color-5: #e8d0e8; /* Lavender */
  
  /* Light/dark shades */
  --primary-color-1-light: #faeaec;
  --primary-color-1-dark: #dab5bc;
  --primary-color-2-light: #e1f2f6;
  --primary-color-2-dark: #9cc9d5;
  --primary-color-3-light: #fff6e6;
  --primary-color-3-dark: #f0c88e;
  --primary-color-4-light: #d8ebe4;
  --primary-color-4-dark: #8ab3a6;
  --primary-color-5-light: #f7e8f7;
  --primary-color-5-dark: #d0b0d0;
  
  /* Text colors */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
}

/* Base styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-color-3-dark);
}

.btn {
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--primary-color-3);
  border-color: var(--primary-color-3);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: var(--primary-color-3-dark);
  border-color: var(--primary-color-3-dark);
  color: var(--text-dark);
}

.section-padding {
  padding: 100px 0;
}

.section-title {
  margin-bottom: 60px;
  text-align: center;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.section-title h2:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color-3);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1rem;
}

.nav-link {
  font-weight: 600;
  margin: 0 15px;
  position: relative;
}

.nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: var(--primary-color-3);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover:after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 650px;
  background-color: var(--primary-color-2-light);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

.hero-desc {
  margin-bottom: 2.5rem;
  max-width: 600px;
}

/* About Section */
.about-section {
  position: relative;
  background-color: #ffffff;
}

.about-img {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
  padding: 20px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: var(--primary-color-3);
}

/* Services Section */
.services-section {
  position: relative;
  background-color: var(--primary-color-1-light);
}

.services-card {
  padding: 30px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-card-img {
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.services-card-price {
  display: inline-block;
  padding: 8px 15px;
  background-color: var(--primary-color-4-light);
  border-radius: 30px;
  margin: 10px 0;
  font-weight: 600;
}

.services-features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.services-features li {
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.services-features li:last-child {
  border-bottom: none;
}

/* Features Section */
.features-section {
  position: relative;
  background-color: #ffffff;
}

.features-item {
  text-align: center;
  padding: 30px 20px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features-item i {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary-color-4);
}

/* Price Plan Section */
.priceplan-section {
  position: relative;
  background-color: var(--primary-color-4-light);
}

.priceplan-card {
  padding: 40px 30px;
  margin-bottom: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.priceplan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.priceplan-card-name {
  font-size: 1rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.priceplan-card-price {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--primary-color-4-dark);
}

.priceplan-features {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.priceplan-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #eee;
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Team Section */
.team-section {
  position: relative;
  background-color: #ffffff;
}

.team-card {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 20px;
  text-align: center;
  background-color: #ffffff;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.team-role {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Reviews Section */
.reviews-section {
  position: relative;
  background-color: var(--primary-color-5-light);
}

.review-card {
  padding: 30px;
  margin: 20px 10px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.review-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
}

.review-text:before {
  content: '"';
  font-size: 5rem;
  position: absolute;
  top: -30px;
  left: -15px;
  color: var(--primary-color-5-light);
  z-index: -1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-color-5-dark);
}

/* CoreInfo Section */
.coreinfo-section {
  position: relative;
  background-color: #ffffff;
}

.coreinfo-card {
  padding: 30px;
  margin-bottom: 30px;
  background-color: var(--primary-color-2-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.coreinfo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.coreinfo-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-color-2-dark);
}

/* Contact Section */
.contact-section {
  position: relative;
  background-color: var(--primary-color-3-light);
}

.contact-form {
  padding: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-control {
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #eee;
  margin-bottom: 20px;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--primary-color-3);
}

.contact-info {
  padding: 40px;
  background-color: var(--primary-color-3);
  border-radius: 10px;
  height: 100%;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--text-dark);
}

/* Blog Section */
.blog-section {
  position: relative;
  background-color: #ffffff;
}

.blog-card {
  margin-bottom: 30px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  background-color: #ffffff;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.blog-excerpt {
  color: var(--text-medium);
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: var(--text-dark);
  color: #ffffff;
  padding: 70px 0 30px;
}

.footer-about h3 {
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.footer-links h4 {
  margin-bottom: 25px;
  color: #ffffff;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
  margin-bottom: 15px;
}

.copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Additional Pages */
.add-page-hero {
  height: 40vh;
  min-height: 400px;
  background-color: var(--primary-color-2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.add-page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.add-page-section {
  padding: 80px 0;
}

.add-page-section:nth-child(odd) {
  background-color: #ffffff;
}

.add-page-section:nth-child(even) {
  background-color: var(--primary-color-1-light);
}

/* Animation classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative elements */
.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 70px;
}

.shape-divider .shape-fill {
  fill: #FFFFFF;
}

.floating-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

/* Swiper styles */
.swiper-container {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--primary-color-3);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color-3);
} 