:root {
  /* Primary Color Palette - Meditation Theme */
  --primary-sage: #669351;
  --primary-lavender: #ad9fc6;
  --primary-mint: #8fdac6;
  --primary-peach: #edac93;
  --primary-cream: #fff3e5;
  
  /* Light/Dark Variations */
  --sage-light: #d4e2c7;
  --sage-dark: #4f693a;
  --lavender-light: #dccffc;
  --lavender-dark: #826ca1;
  --mint-light: #b6e7e8;
  --mint-dark: #5bc2b1;
  --peach-light: #ffcbbf;
  --peach-dark: #e88471;
  --cream-light: #faf7f2;
  --cream-dark: #cfc9ba;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', Times, serif;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --container-max-width: 1200px;
  --border-radius: 17px;
  --box-shadow: 0 9px 20px rgba(127, 177, 102, 0.10);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--sage-dark);
  background: linear-gradient(135deg, var(--cream-light) 0%, var(--mint-light) 100%);
  font-size: 16px;
}

.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.navbar {
  background: rgba(237, 228, 209, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(124, 163, 107, 0.10);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-size: 1.63rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-decoration: none;
}

.navbar-nav .nav-link {
  color: var(--sage-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  background: var(--sage-light);
  color: var(--sage-dark);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--mint-light) 50%, var(--lavender-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../KID_images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding-top: 50px !important;
  max-width: 600px;
}

.hero h1 {
  padding-top: 50px !important;
  font-size: 3rem;
  font-weight: 700;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.17rem;
  color: var(--sage-dark);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Section Styling */
section {
  padding: var(--section-padding);
}

.section-title {
  font-size: 2.58rem;
  font-weight: 600;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.26rem;
  color: var(--sage-dark);
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.section-desc {
  font-size: 1rem;
  color: var(--sage-dark);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

/* Cards */
.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(124, 153, 83, 0.15);
}

.card-img-top {
  border-radius: var(--border-radius);
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.card-title {
  font-size: 1.44rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.57rem;
}

.card-text {
  color: var(--sage-dark);
  opacity: 0.8;
  margin-bottom: 1rem;
}

.price {
  font-size: 1.63rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius);
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-sage) 0%, var(--primary-mint) 100%);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--mint-dark) 100%);
  transform: translateY(-2px);
}

/* Forms */
.form-control {
  border: 2px solid var(--sage-light);
  border-radius: var(--border-radius);
  padding: 0.75rem;
  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(139, 192, 115, 0.25);
  outline: none;
}

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--sage-light);
}

/* Review Cards */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--sage-light);
}

.review-rating {
  margin-bottom: 1rem;
  text-align: center;
}

.review-rating i {
  color: #ffd700;
  font-size: 1rem;
  margin: 0 0.1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--sage-dark);
  flex-grow: 1;
}

.review-author {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--sage-light);
}

.review-author-name {
  font-weight: 600;
  color: var(--sage-dark);
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.review-author-role {
  font-size: 0.9rem;
  color: var(--sage-dark);
  opacity: 0.7;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--border-radius);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* FAQ */
.faq-item {
  background: white;
  border-radius: var(--border-radius);
  margin-bottom: 1rem;
  box-shadow: var(--box-shadow);
}

.faq-question {
  padding: 1.5rem;
  background: var(--sage-light);
  border-radius: var(--border-radius);
  cursor: pointer;
  font-weight: 600;
  color: var(--sage-dark);
}

.faq-answer {
  padding: 1.5rem;
  color: var(--sage-dark);
  opacity: 0.9;
}

/* Footer */
.footer {
  background: var(--sage-dark);
  color: white;
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer h5 {
  color: var(--mint-light);
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer a:hover {
  opacity: 1;
}

.footer .row {
  margin-bottom: 2rem;
}

/* Breadcrumbs */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  height: 20px;
  width: 20px;
  object-fit: contain;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
} 


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}
