:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-lavender: #E6E6FA;
  --primary-sage: #B2D3C2;
  --primary-peach: #FFDAB9;
  --primary-cream: #F5F5DC;
  --primary-rose: #F4C2C2;
  
  /* Light Shades */
  --light-lavender: #F0F0FF;
  --light-sage: #D4E8DC;
  --light-peach: #FFE8D1;
  --light-cream: #FAFAF0;
  --light-rose: #F9D9D9;
  
  /* Dark Shades */
  --dark-lavender: #C8C8E6;
  --dark-sage: #8FB8A8;
  --dark-peach: #E6C2A0;
  --dark-cream: #E0E0C8;
  --dark-rose: #E0A8A8;
  
  /* Neutral Colors */
  --text-primary: #2C3E50;
  --text-secondary: #5D6D7E;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --border-color: #E9ECEF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
}

/* Header Styles */
header {
  background: linear-gradient(135deg, var(--primary-lavender), var(--primary-sage));
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary) !important;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--dark-sage) !important;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-lavender), var(--light-peach));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../PRE_images/hero-bg.webp') center/cover;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-rose), var(--primary-peach));
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.3rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, var(--light-cream), var(--light-sage));
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1.5rem;
}

.service-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.service-desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--light-rose), var(--light-lavender));
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 15px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-rose);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--light-gray);
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-lavender), var(--primary-sage));
}

.price-name {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Team Section */
.team-section {
  background: linear-gradient(135deg, var(--light-peach), var(--light-cream));
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-cream);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.team-role {
  color: var(--text-secondary);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--light-gray);
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-lavender);
  position: absolute;
  top: -10px;
  left: 20px;
  font-family: serif;
}

.review-text {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--light-sage), var(--light-lavender));
}

.coreinfo-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.coreinfo-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* Contact Form */
.contact-section {
  background: var(--light-gray);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(178, 211, 194, 0.25);
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  border: none;
  padding: 1rem 3rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  color: var(--white);
}

/* Blog Section */
.blog-section {
  background: linear-gradient(135deg, var(--light-cream), var(--light-rose));
}

.blog-card {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 500;
}

/* FAQ Section */
.faq-section {
  background: var(--light-gray);
}

.faq-item {
  background: var(--white);
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--primary-cream);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-primary);
  border: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: var(--dark-cream);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--text-secondary);
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--light-lavender), var(--light-peach));
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-lavender), var(--dark-sage));
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-section p, .footer-section a {
  color: var(--light-gray);
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  text-align: center;
}

/* Breadcrumb */
.breadcrumb-section {
  background: var(--light-gray);
  padding: 1rem 0;
  margin-top: 80px;
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 5px;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  background: var(--primary-sage);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.p-4 { padding: 1.5rem; }

/* Responsive adjustments will be in responsive.css */ 