:root {
  /* Primary Color Palette - Harmonious pastels for family theme */
  --primary-soft-coral: #FFB5A7;
  --primary-sage-green: #A8D5BA;
  --primary-warm-cream: #F7E7CE;
  --primary-gentle-lavender: #D4C5F9;
  --primary-sky-blue: #B8E0D2;
  
  /* Light/Dark Shades */
  --light-coral: #FFE4E1;
  --dark-coral: #E89B8C;
  --light-sage: #E8F5E8;
  --dark-sage: #7FB069;
  --light-cream: #FDF6E3;
  --dark-cream: #E6D4A3;
  --light-lavender: #F0EBFF;
  --dark-lavender: #B8A9E8;
  --light-sky: #E8F8F5;
  --dark-sky: #95C9B4;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: #333;
  background-color: var(--light-cream);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-soft-coral), var(--primary-gentle-lavender));
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sitename {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--light-cream);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-sky-blue), var(--primary-sage-green));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-warm-cream);
  border-radius: 50%;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: var(--light-cream);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: white;
  opacity: 0.9;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* Section Styles */
section {
  padding: var(--section-padding);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.section-header h3 {
  font-size: 1.3rem;
  color: var(--primary-soft-coral);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  background: var(--light-sage);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-soft-coral);
  margin-bottom: 1rem;
}

.about-feature h4 {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--light-lavender);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  background: linear-gradient(45deg, var(--primary-sky-blue), var(--primary-sage-green));
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image img {
  max-width: 80%;
  height: auto;
}

.service-content {
  padding: 2rem;
}

.service-content h4 {
  font-size: 1.4rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.3rem 0;
  color: #555;
}

.service-features li::before {
  content: '✓';
  color: var(--primary-sage-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-soft-coral);
  text-align: center;
}

/* Features Section */
.features {
  background: var(--light-sky);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--primary-gentle-lavender);
  margin-bottom: 1.5rem;
}

.feature-item h4 {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--light-coral);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-item {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.priceplan-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-soft-coral), var(--primary-gentle-lavender));
}

.priceplan-item h4 {
  font-size: 1.5rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.priceplan-item .price {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-soft-coral);
  margin-bottom: 1.5rem;
}

.priceplan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.priceplan-features li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid #eee;
}

/* Team Section */
.team {
  background: var(--light-cream);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary-sage-green);
}

.team-member h4 {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--primary-soft-coral);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background: var(--light-lavender);
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin: 0 1rem;
}

.review-text {
  font-size: 1.1rem;
  color: #555;
  font-style: italic;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.review-author {
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--dark-sage);
}

/* Core Info Section */
.coreinfo {
  background: var(--light-sky);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.coreinfo-item h4 {
  font-size: 1.4rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: #666;
  line-height: 1.7;
}

/* Contact Form Section */
.contact {
  background: var(--light-coral);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-sage);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-sage-green);
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.submit-btn {
  background: linear-gradient(135deg, var(--primary-soft-coral), var(--primary-gentle-lavender));
  color: white;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  background: var(--light-sage);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: linear-gradient(45deg, var(--primary-sky-blue), var(--primary-gentle-lavender));
}

.blog-content {
  padding: 2rem;
}

.blog-content h4 {
  font-size: 1.3rem;
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.blog-content p {
  color: #666;
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-soft-coral);
  text-decoration: none;
  font-weight: 600;
}

/* FAQ Section */
.faq {
  background: var(--light-cream);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-sage-green);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-sage);
}

.faq-answer {
  padding: 1.5rem;
  color: #555;
  line-height: 1.7;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--light-lavender);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-sage), var(--dark-coral));
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
  color: var(--light-cream);
}

.footer-section p,
.footer-section a {
  color: white;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section a:hover {
  color: var(--light-cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.7;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-soft-coral);
  top: 10%;
  left: 5%;
}

.shape-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-gentle-lavender);
  bottom: 20%;
  right: 10%;
}

.shape-3 {
  width: 100px;
  height: 100px;
  background: var(--primary-sage-green);
  top: 60%;
  left: 80%;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.swiper-pagination-bullet {
  background: var(--primary-soft-coral);
}

.swiper-pagination-bullet-active {
  background: var(--dark-coral);
} 