:root {
  --primary-green: #2d5a3d;
  --electric-blue: #1a365d;
  --nature-brown: #8b4513;
  --eco-orange: #e67e22;
  --forest-teal: #16a085;
  
  --light-green: #a8d5b5;
  --light-blue: #cce7ff;
  --light-brown: #d4a574;
  --light-orange: #f9d5b0;
  --light-teal: #85e3d0;
  
  --dark-green: #1a3a26;
  --dark-blue: #0f1f33;
  --dark-brown: #5c2e09;
  --dark-orange: #b8511f;
  --dark-teal: #0e6b5e;
  
  --font-size-small: 0.9rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
    overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* Header */
.navbar-brand {
  font-size: 1.3rem !important;
  font-weight: 600;
  color: var(--primary-green) !important;
}

.navbar {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-teal) 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
  color: var(--dark-green) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--electric-blue) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-teal) 100%);
  color: white;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../CHR_images/hero-bg.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Section Styling */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-desc {
  color: #666;
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about {
  background: linear-gradient(135deg, var(--light-teal) 0%, var(--light-green) 100%);
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card i {
  font-size: 2.5rem;
  color: var(--eco-orange);
  margin-bottom: 1rem;
}

.feature-card h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
  font-weight: 600;
}

/* Services Section */
.services {
  background-color: #f8f9fa;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
    overflow-x: hidden;
  padding: 1.5rem;
}

.service-card h5 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.service-features li {
  padding: 0.2rem 0;
  color: #666;
}

.service-features li::before {
  content: "✓ ";
  color: var(--forest-teal);
  font-weight: bold;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--eco-orange);
}

/* Price Plan Section */
.priceplan {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-orange) 100%);
}

.price-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  height: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-10px);
}

.price-card.featured {
  border: 3px solid var(--eco-orange);
  transform: scale(1.05);
}

.price-card h4 {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--eco-orange);
  margin-bottom: 1.5rem;
}

/* Team Section */
.team {
  background-color: #f8f9fa;
}

.team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.team-card-body {
    overflow-x: hidden;
  padding: 1.5rem;
  text-align: center;
}

.team-card h5 {
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.team-card .role {
  color: var(--electric-blue);
  font-style: italic;
}

/* Reviews Section */
.reviews {
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-teal) 100%);
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 1rem;
  text-align: center;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
}

.review-author {
  font-weight: 600;
  color: var(--primary-green);
}

/* FAQ Section */
.faq {
  background-color: #f8f9fa;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  background: var(--light-teal);
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: var(--dark-green);
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--forest-teal);
  color: white;
}

.faq-answer {
  padding: 1rem 1.5rem;
  color: #666;
  display: none;
}

.faq-answer.show {
  display: block;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, var(--light-brown) 0%, var(--light-orange) 100%);
}

.gallery-item {
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--forest-teal) 100%);
  color: white;
}

.contact-form {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-form .form-control {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.contact-form .btn {
  background: var(--eco-orange);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background: var(--dark-orange);
}

.contact-info {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.contact-info p {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.contact-info i {
  margin-right: 1rem;
  font-size: 1.2rem;
  color: var(--light-orange);
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--light-teal);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--light-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: #ccc;
}

/* Blog Section */
.blog {
  background-color: #f8f9fa;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-body {
    overflow-x: hidden;
  padding: 1.5rem;
}

.blog-card h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.blog-card .excerpt {
  color: #666;
  margin-bottom: 1rem;
}

.btn-read-more {
  background: var(--forest-teal);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.btn-read-more:hover {
  background: var(--dark-teal);
  color: white;
  text-decoration: none;
}

/* Process Section */
.process {
  background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-teal) 100%);
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  text-align: center;
  height: 100%;
  position: relative;
}

.process-number {
  background: var(--eco-orange);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h5 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

/* Additional utility classes */
.text-primary-green { color: var(--primary-green) !important; }
.text-electric-blue { color: var(--electric-blue) !important; }
.text-eco-orange { color: var(--eco-orange) !important; }
.bg-primary-green { background-color: var(--primary-green) !important; }
.bg-light-green { background-color: var(--light-green) !important; } 