/* ===== COLOR PALETTE ===== */
:root {
  /* Primary Colors */
  --primary-green: #a8e6cf;
  --primary-blue: #b8d8f0;
  --primary-orange: #ffc19e;
  --primary-purple: #d8bfd8;
  --primary-yellow: #f9e79f;
  
  /* Light Shades */
  --light-green: #e8f5f0;
  --light-blue: #f0f8ff;
  --light-orange: #fff7f0;
  --light-purple: #f5f0f5;
  --light-yellow: #fffacd;
  
  /* Dark Shades */
  --dark-green: #4a8c5c;
  --dark-blue: #2c5f7d;
  --dark-orange: #cc7a3a;
  --dark-purple: #8b4a8b;
  --dark-yellow: #b8860b;
  
  /* Neutral Colors */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
}

/* ===== TYPOGRAPHY ===== */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--white);
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-green);
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 0.6rem;
}

h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

/* ===== HERO SECTION ===== */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-green), var(--light-blue));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-green) 0%, transparent 70%);
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

#hero .hero-content {
  z-index: 2;
  position: relative;
    padding-top: 250px;
}

#hero .hero-image {
  z-index: 1;
  position: relative;
}

/* ===== NAVIGATION ===== */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green);
}

/* ===== SERVICES SECTION ===== */
#services {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
#testimonials {
  padding: 5rem 0;
  background-color: var(--light-blue);
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.testimonial-rating {
  color: var(--primary-yellow);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

/* ===== GALLERY SECTION ===== */
#gallery {
  padding: 5rem 0;
  background-color: var(--light-green);
}

.gallery-item {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* ===== FAQ SECTION ===== */
#faq {
  padding: 5rem 0;
  background-color: var(--light-purple);
}

.faq-card {
  background: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.faq-question {
  color: var(--dark-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ===== TEAM SECTION ===== */
#team {
  padding: 5rem 0;
  background-color: var(--light-orange);
}

.team-member {
  text-align: center;
  margin-bottom: 3rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  object-fit: cover;
  border: 4px solid var(--primary-orange);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-orange);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--medium-gray);
  font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
#contact {
  padding: 5rem 0;
  background-color: var(--light-yellow);
}

.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--light-gray);
  border-radius: 5px;
  padding: 0.75rem;
  margin-bottom: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.2rem rgba(168, 230, 207, 0.25);
}

.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background-color: var(--dark-gray);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-link {
  color: var(--light-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-green);
}

/* ===== BREADCRUMBS ===== */
.breadcrumb {
  background-color: transparent;
  padding: 1rem 0;
  margin: 0;
}

.breadcrumb-item img {
  height: 20px;
  width: 20px;
}

/* ===== ANIMATIONS ===== */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in.active {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== UTILITIES ===== */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-green);
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mb-5 {
  margin-bottom: 3rem;
}

.py-5 {
  padding: 3rem 0;
}

.bg-light {
  background-color: var(--light-gray);
}

.bg-white {
  background-color: var(--white);
} 