:root {
  /* Harmonious Pastel Color Palette */
  --primary-sage: #a8c09a;
  --primary-lavender: #b8a9c9; 
  --primary-peach: #f4c2a1;
  --primary-soft-mint: #9fd3c7;
  --primary-warm-cream: #f5e6d3;
  
  /* Light & Dark Shades */
  --sage-light: #d4e4cc;
  --sage-dark: #7a9570;
  --lavender-light: #ddd4e7;
  --lavender-dark: #8a7595;
  --peach-light: #f9dcc7;
  --peach-dark: #e69872;
  --mint-light: #c7ede5;
  --mint-dark: #72b3a0;
  --cream-light: #fbf2e7;
  --cream-dark: #e6c99f;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  
  /* Shadows & Effects */
  --shadow-soft: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-medium: 0 12px 40px rgba(0,0,0,0.12);
  --border-radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
overflow-x: hidden;
  font-family: var(--font-body);
  line-height: 1.6;
  color: #444;
  background-color: var(--cream-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

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;
  font-size: 1.1rem;
}

/* Header */
.navbar {
  background: linear-gradient(135deg, var(--sage-light), var(--mint-light));
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: var(--shadow-soft);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--sage-dark) !important;
}

.navbar-nav .nav-link {
  color: var(--sage-dark) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--lavender-dark) !important;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sage-light) 0%, var(--mint-light) 50%, var(--peach-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: url('../ECO_images/hero-bg.webp') center/cover;
  opacity: 0.1;
  transform: rotate(15deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--sage-dark);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-subtitle {
  color: var(--lavender-dark);
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero-desc {
  color: #666;
  font-size: 1.2rem;
  max-width: 600px;
}

/* Decorative Shapes */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
  animation: float 6s ease-in-out infinite;
}

.shape-blob-1 {
  width: 200px;
  height: 200px;
  background: var(--peach-light);
  top: 20%;
  right: 10%;
  animation-delay: -2s;
}

.shape-blob-2 {
  width: 150px;
  height: 150px;
  background: var(--lavender-light);
  bottom: 30%;
  left: 5%;
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Section Styling */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title {
  text-align: center;
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--lavender-dark);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.section-desc {
  text-align: center;
  color: #666;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  background: linear-gradient(45deg, var(--cream-light), var(--sage-light));
}

.about-feature {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 2rem;
  transition: var(--transition);
}

.about-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.about-feature h5 {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

/* Services Section */
.services-section {
  background: var(--mint-light);
}

.service-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  height: 100%;
  border: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--peach-dark);
  box-shadow: var(--shadow-medium);
}

.service-icon {
  font-size: 3rem;
  color: var(--peach-dark);
  margin-bottom: 1.5rem;
}

.service-name {
  color: var(--sage-dark);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.service-features li {
  padding: 0.3rem 0;
  color: #666;
}

.service-features li:before {
  content: "🐾";
  margin-right: 0.5rem;
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--peach-light), var(--cream-light));
}

.feature-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--mint-dark);
  margin-bottom: 1rem;
}

/* Price Plan Section */
.priceplan-section {
  background: var(--lavender-light);
}

.price-card {
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sage-dark), var(--peach-dark));
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.price-card h4 {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--lavender-dark);
  margin-bottom: 1.5rem;
}

/* Team Section */
.team-section {
  background: linear-gradient(45deg, var(--cream-light), var(--mint-light));
}

.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: 4px solid var(--peach-light);
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.team-photo:hover {
  transform: scale(1.05);
  border-color: var(--peach-dark);
}

.team-name {
  color: var(--sage-dark);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--lavender-dark);
  font-style: italic;
}

/* Reviews Section */
.reviews-section {
  background: var(--sage-light);
}

.swiper-container {
  padding: 2rem 0;
}

.review-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  margin: 1rem;
}

.review-text {
  font-size: 1.1rem;
  color: #666;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.review-author {
  color: var(--sage-dark);
  font-weight: 600;
  font-size: 1.1rem;
}

.review-stars {
  color: #ffd700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* Core Info Section */
.coreinfo-section {
  background: linear-gradient(135deg, var(--peach-light), var(--lavender-light));
}

.coreinfo-item {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  margin-bottom: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.coreinfo-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.coreinfo-title {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
  background: var(--mint-light);
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

.form-control {
  border: 2px solid var(--sage-light);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--peach-dark);
  box-shadow: 0 0 0 0.2rem rgba(244, 194, 161, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, var(--sage-dark), var(--mint-dark));
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* Blog Section */
.blog-section {
  background: var(--cream-light);
}

.blog-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  margin-bottom: 2rem;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-title {
  color: var(--sage-dark);
  margin-bottom: 1rem;
}

.blog-excerpt {
  color: #666;
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(45deg, var(--lavender-light), var(--sage-light));
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: var(--border-radius) !important;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.accordion-button {
  background: white;
  color: var(--sage-dark);
  font-weight: 600;
  border: none;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--peach-light);
  color: var(--sage-dark);
}

.accordion-body {
overflow-x: hidden;
  background: white;
  color: #666;
  padding: 1.5rem;
}

/* Gallery Section */
.gallery-section {
  background: var(--peach-light);
  padding: 4rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--sage-dark), var(--lavender-dark));
  color: white;
  padding: 3rem 0 1rem;
}

.footer-content {
  margin-bottom: 2rem;
}

.footer-section h5 {
  color: var(--cream-light);
  margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
  color: var(--sage-light);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--peach-light);
}

.footer-bottom {
  border-top: 1px solid var(--sage-light);
  padding-top: 1rem;
  text-align: center;
  color: var(--sage-light);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-section {
    text-align: center;
    min-height: 80vh;
  }
  
  .shape-blob {
    display: none;
  }
  
  .section {
    padding: 50px 0;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .shape-blob {
    animation: none;
  }
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item {
  color: var(--sage-dark);
}

.breadcrumb-item.active {
  color: var(--lavender-dark);
} 