:root {
  /* Primary Color Palette - Harmonious Pastels */
  --primary-sage: #a8b5a0;
  --primary-lavender: #b8a7c9;
  --primary-peach: #f4c2a1;
  --primary-sky: #a8c5d9;
  --primary-cream: #f6f2e8;
  
  /* Light & Dark Variations */
  --sage-light: #d2d9ce;
  --sage-dark: #7a8970;
  --lavender-light: #ddd4e3;
  --lavender-dark: #8e7a9c;
  --peach-light: #f8ddc7;
  --peach-dark: #e0a47a;
  --sky-light: #d4e1eb;
  --sky-dark: #7ba1b8;
  --cream-light: #faf8f2;
  --cream-dark: #e8dfc8;
  
  /* Neutral Colors */
  --text-primary: #2c3e50;
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --background-light: #fafafa;
  --border-light: #e9ecef;
}

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--background-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-light) !important;
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-cream) !important;
  transform: translateY(-1px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-lavender), var(--lavender-light));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../CHR_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--cream-light);
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--cream-light);
  margin-bottom: 2rem;
}

/* Shape Elements */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-peach), var(--peach-light));
  opacity: 0.6;
  z-index: 1;
}

.blob-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.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(--primary-cream), var(--cream-light));
}

.about-feature {
  text-align: center;
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
}

.about-feature i {
  font-size: 3rem;
  color: var(--primary-sage);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: linear-gradient(135deg, var(--primary-sky), var(--sky-light));
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: var(--primary-peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-image i {
  font-size: 2rem;
  color: white;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

/* Features Section */
.features-section {
  background: var(--background-light);
}

.feature-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-lavender);
}

/* Price Plan Section */
.priceplan-section {
  background: linear-gradient(135deg, var(--primary-peach), var(--peach-light));
}

.price-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  position: relative;
}

.price-card.featured {
  transform: scale(1.05);
  border: 3px solid var(--primary-sage);
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

/* Team Section */
.team-section {
  background: var(--background-light);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-image {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: var(--primary-lavender);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Reviews Section */
.reviews-section {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-light));
  color: white;
}

.reviews-section .section-title,
.reviews-section .section-subtitle,
.reviews-section .section-desc {
  color: white;
}

.review-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Core Info Section */
.coreinfo-section {
  background: var(--background-light);
}

.coreinfo-item {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.coreinfo-item:hover {
  transform: translateY(-5px);
}

/* Contact Form */
.contact-section {
  background: linear-gradient(135deg, var(--primary-lavender), var(--lavender-light));
}

.contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(168, 181, 160, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage), var(--sage-dark));
  border: none;
  border-radius: 25px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Blog Section */
.blog-section {
  background: var(--background-light);
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  background: var(--primary-sky);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content {
  padding: 1.5rem;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(135deg, var(--primary-cream), var(--cream-light));
}

.accordion-button {
  background: white;
  border: none;
  border-radius: 10px !important;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.accordion-button:not(.collapsed) {
  background: var(--primary-sage);
  color: white;
}

.accordion-body {
overflow-x: hidden;
  background: white;
  border-radius: 0 0 10px 10px;
}

/* Gallery Section */
.gallery-section {
  background: var(--background-light);
  padding: 3rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  height: 200px;
  background: var(--primary-peach);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--text-primary), #34495e);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  text-align: center;
}

.footer-links {
  margin: 2rem 0;
}

.footer-links a {
  color: var(--primary-cream);
  text-decoration: none;
  margin: 0 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

/* Breadcrumb */
.breadcrumb-section {
  padding: 1rem 0;
  background: var(--cream-light);
}

.breadcrumb-image {
  width: 100%;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 5px;
  opacity: 0.3;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

/* Animation for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 