:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-sage: #9CAF88;
  --primary-lavender: #B8A9C9;
  --primary-peach: #F4C2A1;
  --primary-dusty-rose: #D4A5A5;
  --primary-cream: #F5F1E8;
  
  /* Light/Dark Shades */
  --sage-light: #B8C5A8;
  --sage-dark: #7A8F6B;
  --lavender-light: #D1C7D8;
  --lavender-dark: #9B8AAB;
  --peach-light: #F7D4B8;
  --peach-dark: #E8A67A;
  --rose-light: #E2BABA;
  --rose-dark: #C18E8E;
  --cream-light: #FDFBF6;
  --cream-dark: #E8E0D1;
  
  /* Neutral Colors */
  --text-primary: #2C3E50;
  --text-secondary: #5D6D7E;
  --text-light: #85929E;
  --white: #FFFFFF;
  --black: #1C1C1C;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-sage), var(--primary-lavender));
  --gradient-secondary: linear-gradient(135deg, var(--primary-peach), var(--primary-dusty-rose));
  --gradient-hero: linear-gradient(135deg, var(--primary-cream), var(--sage-light));
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-padding: 0 15px;
  
  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-secondary: 'Playfair Display', Georgia, serif;
  
  /* Shadows */
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.15);
  
  /* Border Radius */
  --radius-small: 8px;
  --radius-medium: 16px;
  --radius-large: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2.2rem; }
h4 { font-size: 1.8rem; }
h5 { font-size: 1.4rem; }
h6 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--container-padding);
}

/* Header */
header {
  background: var(--white);
  box-shadow: var(--shadow-light);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition-medium);
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-sage);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--text-primary);
  font-weight: 500;
  margin: 0 1rem;
  transition: var(--transition-fast);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-sage);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: var(--primary-lavender);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(-15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
}

/* Sections */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  text-align: center;
  color: var(--primary-sage);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
}

/* About Section */
.about {
  background: var(--cream-light);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  text-align: center;
  transition: var(--transition-medium);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-large);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: 1px solid var(--cream-dark);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
}

.service-image {
  height: 200px;
  background: var(--gradient-secondary);
  position: relative;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--text-secondary);
}

.service-features li::before {
  content: '✓';
  color: var(--primary-sage);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Features Section */
.features {
  background: var(--gradient-hero);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-medium);
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-item i {
  font-size: 3.5rem;
  color: var(--primary-lavender);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
.priceplan {
  background: var(--white);
}

.priceplan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.priceplan-card {
  background: var(--white);
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-large);
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-medium);
  position: relative;
}

.priceplan-card:hover {
  border-color: var(--primary-sage);
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.priceplan-card.featured {
  border-color: var(--primary-sage);
  background: var(--gradient-hero);
}

.priceplan-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

.priceplan-features {
  list-style: none;
  margin: 2rem 0;
}

.priceplan-features li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--cream-dark);
}

/* Team Section */
.team {
  background: var(--cream-light);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  background: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  text-align: center;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.team-image {
  height: 250px;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 2rem;
}

.team-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-sage);
  font-weight: 500;
}

/* Reviews Section */
.reviews {
  background: var(--white);
}

.reviews-slider {
  margin-top: 3rem;
}

.review-item {
  background: var(--gradient-hero);
  padding: 3rem 2rem;
  border-radius: var(--radius-large);
  text-align: center;
  margin: 0 1rem;
  box-shadow: var(--shadow-light);
}

.review-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.review-author {
  font-weight: 600;
  color: var(--primary-sage);
  font-size: 1.1rem;
}

/* Core Info Section */
.coreinfo {
  background: var(--gradient-secondary);
  color: var(--white);
}

.coreinfo .section-title,
.coreinfo .section-subtitle,
.coreinfo .section-desc {
  color: var(--white);
}

.coreinfo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.coreinfo-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-medium);
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-medium);
}

.coreinfo-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.coreinfo-item h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.coreinfo-item p {
  color: rgba(255, 255, 255, 0.9);
}

/* Contact Section */
.contact {
  background: var(--cream-light);
}

.contact-form {
  max-width: 600px;
  margin: 3rem auto 0;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow-medium);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: var(--radius-small);
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 3px rgba(156, 175, 136, 0.1);
}

.form-control.textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.form-checkbox input[type="checkbox"] {
  width: 1.2rem;
  height: 1.2rem;
  accent-color: var(--primary-sage);
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--gradient-primary);
  color: var(--white);
  text-decoration: none;
  border-radius: var(--radius-small);
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition-medium);
  font-size: 1rem;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-primary {
  background: var(--gradient-primary);
}

.btn-secondary {
  background: var(--gradient-secondary);
}

/* Blog Section */
.blog {
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.blog-item {
  background: var(--white);
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  height: 200px;
  background: var(--gradient-primary);
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-content {
  padding: 2rem;
}

.blog-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.blog-excerpt {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-sage);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
}

.blog-link:hover {
  color: var(--sage-dark);
}

/* FAQ Section */
.faq {
  background: var(--gradient-hero);
}

.faq-accordion {
  max-width: 800px;
  margin: 3rem auto 0;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-small);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}

.faq-question:hover {
  background: var(--cream-light);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-sage);
  transition: var(--transition-fast);
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: none;
}

.faq-answer.active {
  display: block;
}

/* Gallery Section */
.gallery {
  background: var(--white);
  padding: var(--section-padding);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-small);
  overflow: hidden;
  background: var(--gradient-primary);
  transition: var(--transition-medium);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: var(--text-primary);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--primary-sage);
}

.footer-policies {
  list-style: none;
}

.footer-policies li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom small {
  color: rgba(255, 255, 255, 0.6);
}

/* Breadcrumb */
.breadcrumb {
  padding: 1rem 0;
  background: var(--cream-light);
  margin-top: 80px;
}

.breadcrumb-item {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  margin-right: 1rem;
}

/* Decorative Shapes */
.shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.shape-1 {
  top: 10%;
  right: 5%;
  width: 100px;
  height: 100px;
  background: var(--primary-lavender);
  opacity: 0.1;
  border-radius: 50%;
}

.shape-2 {
  bottom: 20%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-peach);
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Swiper Styles */
.swiper {
  width: 100%;
  padding-bottom: 3rem;
}

.swiper-slide {
  height: auto;
}

.swiper-pagination-bullet {
  background: var(--primary-sage);
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-sage);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.position-relative { position: relative; }
.position-absolute { position: absolute; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Animation Classes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
} 