:root {
  /* Primary Colors */
  --primary-1: #5F8D4E; /* Sage Green - Main brand color */
  --primary-2: #E9B949; /* Golden Yellow - For CTAs and highlights */
  --primary-3: #4A6FA5; /* Serene Blue - Trust and reliability */
  --primary-4: #E57F84; /* Soft Coral - Warmth and approachability */
  --primary-5: #7D5A50; /* Warm Brown - Stability and tradition */
  
  /* Shades */
  --primary-1-light: #7DA769;
  --primary-1-dark: #496B3A;
  
  --primary-2-light: #F1CA74;
  --primary-2-dark: #C79A36;
  
  --primary-3-light: #6C8DBC;
  --primary-3-dark: #385684;
  
  --primary-4-light: #F0A0A4;
  --primary-4-dark: #C96469;
  
  --primary-5-light: #9A7769;
  --primary-5-dark: #604539;
  
  /* Neutrals */
  --neutral-100: #FFFFFF;
  --neutral-200: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-400: #DEE2E6;
  --neutral-500: #CED4DA;
  --neutral-600: #ADB5BD;
  --neutral-700: #6C757D;
  --neutral-800: #495057;
  --neutral-900: #343A40;
  --neutral-1000: #212529;
}

/* Global Styles */
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--neutral-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: 1rem;
}

section {
  padding: 5rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}

/* Utilities */
.bg-primary-1 {
  background-color: var(--primary-1);
}

.bg-primary-2 {
  background-color: var(--primary-2);
}

.bg-primary-3 {
  background-color: var(--primary-3);
}

.bg-primary-4 {
  background-color: var(--primary-4);
}

.bg-primary-5 {
  background-color: var(--primary-5);
}

.text-primary-1 {
  color: var(--primary-1);
}

.text-primary-2 {
  color: var(--primary-2);
}

.text-primary-3 {
  color: var(--primary-3);
}

.text-primary-4 {
  color: var(--primary-4);
}

.text-primary-5 {
  color: var(--primary-5);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--primary-1-dark);
  border-color: var(--primary-1-dark);
}

.btn-secondary {
  background-color: var(--primary-2);
  border-color: var(--primary-2);
  color: var(--neutral-900);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--primary-2-dark);
  border-color: var(--primary-2-dark);
  color: var(--neutral-900);
}

/* Header */
header {
  background-color: var(--neutral-100);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary-1);
  font-size: 1.5rem;
}

.nav-link {
  color: var(--neutral-800);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-1);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  z-index: 0;
  filter: blur(50px);
  opacity: 0.2;
}

.hero-blob-1 {
  top: -20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background-color: var(--primary-2);
  border-radius: 45% 30% 40% 50%;
}

.hero-blob-2 {
  bottom: -20%;
  left: -20%;
  width: 50%;
  height: 50%;
  background-color: var(--primary-3);
  border-radius: 50% 60% 35% 40%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

/* About Section */
#about {
  background-color: var(--neutral-100);
}

.about-feature {
  padding: 2rem;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 1.5rem;
  background-color: var(--neutral-200);
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-feature i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--primary-1);
}

/* Services Section */
#services {
  background-color: var(--neutral-200);
}

.service-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  margin-bottom: 2rem;
  background-color: var(--neutral-100);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card-img {
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
}

.service-price {
  display: inline-block;
  background-color: var(--primary-2);
  color: var(--neutral-900);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 700;
  margin-top: 1rem;
}

.service-features {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.service-features li {
  margin-bottom: 0.5rem;
}

/* Features Section */
#features {
  background-color: var(--neutral-100);
}

.feature-item {
  text-align: center;
  padding: 2rem;
}

.feature-item i {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--primary-3);
}

/* Price Plan Section */
#priceplan {
  background-color: var(--neutral-200);
}

.price-card {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  background-color: var(--neutral-100);
  transition: transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  transform: scale(1.03);
}

.price-card-header {
  background-color: var(--primary-1);
  padding: 2rem;
  text-align: center;
  color: var(--neutral-100);
}

.price-card-body {
  padding: 2rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-1);
  margin: 1rem 0;
}

.price-features {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.price-features li {
  margin-bottom: 0.75rem;
}

/* Team Section */
#team {
  background-color: var(--neutral-100);
}

.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-member img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-member-role {
  color: var(--primary-3);
  font-weight: 500;
}

/* Reviews Section */
#reviews {
  background-color: var(--neutral-200);
  position: relative;
  overflow: hidden;
}

.reviews-blob {
  position: absolute;
  z-index: 0;
  filter: blur(70px);
  opacity: 0.1;
}

.reviews-blob-1 {
  top: -30%;
  left: -20%;
  width: 40%;
  height: 40%;
  background-color: var(--primary-4);
  border-radius: 40% 50% 30% 60%;
}

.reviews-blob-2 {
  bottom: -30%;
  right: -20%;
  width: 50%;
  height: 50%;
  background-color: var(--primary-3);
  border-radius: 60% 40% 50% 30%;
}

.review-card {
  background-color: var(--neutral-100);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin: 1rem;
  position: relative;
  z-index: 1;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--primary-1);
}

/* Core Info Section */
#coreinfo {
  background-color: var(--neutral-100);
}

.core-info-item {
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 10px;
  background-color: var(--neutral-200);
  transition: transform 0.3s ease;
}

.core-info-item:hover {
  transform: translateY(-5px);
}

.core-info-item i {
  font-size: 2.5rem;
  color: var(--primary-2);
  margin-bottom: 1rem;
}

/* Contact Section */
#contact {
  background-color: var(--neutral-200);
}

.contact-form {
  background-color: var(--neutral-100);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-control {
  border: 1px solid var(--neutral-400);
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-1);
  box-shadow: 0 0 0 0.25rem rgba(95, 141, 78, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-1);
  border-color: var(--primary-1);
}

/* Blog Section */
#blog {
  background-color: var(--neutral-100);
}

.blog-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 2rem;
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-img {
  height: 200px;
  object-fit: cover;
}

.blog-body {
  padding: 1.5rem;
}

.blog-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blog-excerpt {
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--primary-1);
  font-weight: 500;
  text-decoration: none;
}

.blog-link:hover {
  text-decoration: underline;
}

/* FAQ Section */
#faq {
  background-color: var(--neutral-200);
}

.accordion-button {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  font-weight: 500;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: var(--primary-1-light);
  color: var(--neutral-900);
}

.accordion-body {
  background-color: var(--neutral-100);
}

/* Gallery Section */
#gallery {
  background-color: var(--neutral-100);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Footer */
footer {
  background-color: var(--neutral-900);
  color: var(--neutral-300);
  padding: 3rem 0 1.5rem;
}

footer a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-2);
}

.footer-block {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--neutral-100);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.copyright {
  border-top: 1px solid var(--neutral-700);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  animation: fadeIn 0.5s ease forwards;
}

/* Additional Pages */
.page-header {
  background-color: var(--primary-1);
  color: var(--neutral-100);
  padding: 5rem 0;
  margin-bottom: 3rem;
}

.breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item {
  color: var(--neutral-300);
}

.breadcrumb-item.active {
  color: var(--neutral-100);
}

/* Index Space Page */
#space {
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
} 