:root {
  /* Nature-inspired Color Palette */
  --primary-green: #235346;
  --forest-green: #153532;
  --sage-green: #7a8a83;
  --warm-orange: #c17b4d;
  --earth-brown: #896132;
  
  /* Light Shades */
  --light-green: #e2e2e2;
  --light-sage: #F0F5F2;
  --light-orange: #FDF4F0;
  --light-brown: #F5F1ED;
  --cream: #FEFCFA;
  
  /* Dark Shades */
  --dark-green: #274237;
  --dark-brown: #674c35;
  --charcoal: #131313;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--cream);
}

/* Typography */
h1 { font-size: 2.32rem; font-weight: 700; margin-bottom: 1.11rem; }
h2 { font-size: 1.88rem; font-weight: 600; margin-bottom: 1.00rem; }
h3 { font-size: 1.45rem; font-weight: 600; margin-bottom: 0.78rem; }
h4 { font-size: 1.28rem; font-weight: 600; margin-bottom: 0.71rem; }
p { font-size: 1.13rem; margin-bottom: 1.11rem; }

/* Gradients */
.bg-gradient-nature {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--sage-green) 100%);
}

.bg-gradient-warm {
  background: linear-gradient(135deg, var(--warm-orange) 0%, var(--earth-brown) 100%);
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(11px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.61rem !important;
  font-weight: 700;
  color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
  font-size: 10px !important;
  color: var(--charcoal) !important;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green) !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--light-green) 0%, var(--light-sage) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--warm-orange);
  opacity: 0.1;
  border-radius: 50%;
  transform: rotate(15deg);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.15rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(44, 88, 78, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-11px);
  box-shadow: 0 24px 40px rgba(50, 87, 74, 0.15);
  border-color: var(--sage-green);
}

.service-price {
  font-size: 2.03rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 1rem 0;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3.15rem;
}

.team-member {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(31, 68, 50, 0.10);
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--sage-green);
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(35, 73, 62, 0.10);
}

.form-control {
  border: 2px solid var(--light-sage);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  font-size: 1.13rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(30, 71, 54, 0.25);
}

.btn-primary {
  background: var(--primary-green);
  border: none;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: var(--forest-green);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--light-sage);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Section Spacing */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: var(--light-green);
}

/* Utilities */
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1.11rem; }
.mb-4 { margin-bottom: 1.72rem; }
.mb-5 { margin-bottom: 3.19rem; }
.mt-4 { margin-top: 1.73rem; }
.mt-5 { margin-top: 3.15rem; }

/* FAQ */
.faq-item {
  background: white;
  margin-bottom: 1.11rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(48, 84, 77, 0.10);
}

.faq-question {
  background: var(--light-sage);
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--sage-green);
  color: white;
}

.faq-answer {
  padding: 1.5rem;
  display: none;
}

/* Blog */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3.15rem;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(40, 85, 64, 0.10);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 3.15rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 