:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-soft-coral: #FFB5A7;
  --primary-sage-green: #A8D5BA;
  --primary-warm-cream: #F7E7CE;
  --primary-lavender-mist: #E6E6FA;
  --primary-peach-bloom: #FFCCCB;
  
  /* Light & Dark Shades */
  --light-coral: #FFE4E1;
  --dark-coral: #CD5C5C;
  --light-sage: #E8F5E8;
  --dark-sage: #6B8E6B;
  --light-cream: #FFFAF0;
  --dark-cream: #DEB887;
  --light-lavender: #F8F8FF;
  --dark-lavender: #9370DB;
  --light-peach: #FFF0F5;
  --dark-peach: #FA8072;
  
  /* 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;
  
  /* Shadows */
  --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

* {
  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-sage-green));
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: var(--soft-shadow);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#sitename {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--primary-warm-cream);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender-mist), var(--primary-peach-bloom));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-sage-green);
  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: var(--dark-sage);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: var(--dark-coral);
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.hero-image {
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

/* 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(--dark-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: var(--card-shadow);
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.about-feature p {
  color: #666;
}

/* Services Section */
.services {
  background: var(--light-lavender);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-soft-coral), var(--primary-sage-green));
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-card h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-card p {
  color: #666;
  margin-bottom: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--dark-coral);
  margin-bottom: 1rem;
}

.service-features {
  color: var(--dark-sage);
  font-weight: 500;
}

/* Features Section */
.features {
  background: var(--light-peach);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.feature-item h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.feature-item p {
  color: #666;
}

/* Price Plan Section */
.priceplan {
  background: var(--light-cream);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  position: relative;
}

.priceplan-card h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.priceplan-card p {
  color: #666;
  margin-bottom: 2rem;
}

.priceplan-price {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--dark-coral);
  margin-bottom: 1.5rem;
}

.priceplan-features {
  color: var(--dark-sage);
  font-weight: 500;
}

/* Team Section */
.team {
  background: var(--light-sage);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.team-member h4 {
  color: var(--dark-sage);
  margin-bottom: 0.5rem;
}

.team-member p {
  color: var(--dark-coral);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: var(--light-lavender);
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--card-shadow);
  margin: 0 1rem;
}

.review-text {
  font-style: italic;
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.review-author {
  color: var(--dark-sage);
  font-weight: bold;
}

/* Core Info Section */
.coreinfo {
  background: var(--light-peach);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--card-shadow);
}

.coreinfo-item h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.coreinfo-item p {
  color: #666;
}

/* Contact Form */
.contact {
  background: var(--light-cream);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
}

.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 var(--light-sage);
  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;
}

#site_submit_btn {
  background: linear-gradient(135deg, var(--primary-soft-coral), var(--primary-sage-green));
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 100%;
}

#site_submit_btn:hover {
  transform: translateY(-2px);
}

/* Blog Section */
.blog {
  background: var(--light-sage);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
}

.blog-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-item h4 {
  color: var(--dark-sage);
  margin-bottom: 1rem;
}

.blog-item p {
  color: #666;
  margin-bottom: 1rem;
}

.blog-item a {
  color: var(--dark-coral);
  text-decoration: none;
  font-weight: 500;
}

/* FAQ Section */
.faq {
  background: var(--light-lavender);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.faq-question {
  background: var(--primary-sage-green);
  color: white;
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-sage);
}

.faq-answer {
  padding: 1.5rem;
  color: #666;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--light-peach);
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* 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 h3 {
  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(--primary-warm-cream);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
  text-align: center;
}

#site-copyright {
  color: var(--light-cream);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  margin-top: 70px;
}

.breadcrumb img {
  height: 20px;
  opacity: 0.7;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--primary-soft-coral);
  top: 10%;
  left: 5%;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--primary-sage-green);
  bottom: 20%;
  right: 10%;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding: 2rem 0;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--primary-sage-green);
}

.swiper-pagination-bullet-active {
  background: var(--primary-soft-coral);
} 