:root {
  /* Color Palette - Pastel High-Contrast Colors */
  --primary-green: #9ac892;
  --secondary-brown: #c4ac76;
  --accent-orange: #ff9368;
  --neutral-cream: #fbffe4;
  --dark-forest: #3d593f;
  
  /* Light and dark shades */
  --primary-green-light: #b3d3b2;
  --primary-green-dark: #688966;
  --secondary-brown-light: #f7eadb;
  --secondary-brown-dark: #a4967e;
  --accent-orange-light: #ffd9a7;
  --accent-orange-dark: #d58b48;
  --neutral-cream-light: #FEFEFE;
  --neutral-cream-dark: #fbffd9;
  --dark-forest-light: #426645;
  --dark-forest-dark: #2d5127;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-forest);
  background-color: var(--neutral-cream-light);
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-forest);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-forest);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark-forest);
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark-forest-light);
}

h5 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-forest-light);
}

p {
  font-size: 1rem;
  color: var(--dark-forest-light);
  margin-bottom: 1rem;
}

/* Header */
.navbar {
  background-color: var(--neutral-cream) !important;
  border-bottom: 2px solid var(--primary-green);
  padding: 1rem 0;
}

.navbar-brand {
  color: var(--dark-forest);
  font-weight: 600;
}

.navbar-nav .nav-link {
  color: var(--dark-forest-light);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-green-dark);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--primary-green-light) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--secondary-brown-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  z-index: 2;
  position: relative;
    padding-top: 250px;
}

/* Section Styling */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background-color: var(--neutral-cream);
}

.section:nth-child(odd) {
  background-color: var(--neutral-cream-light);
}

/* Cards */
.custom-card {
  background: var(--neutral-cream-light);
  border: 1px solid var(--primary-green-light);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(52, 83, 47, 0.10);
}

.price-card {
  background: var(--primary-green-light);
  border: 2px solid var(--primary-green);
  text-align: center;
}

.price-card .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-forest);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--neutral-cream-light);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 25px;
}

.btn-primary:hover {
  background-color: var(--primary-green-dark);
  border-color: var(--primary-green-dark);
}

.btn-secondary {
  background-color: var(--secondary-brown);
  border-color: var(--secondary-brown);
  color: var(--dark-forest);
  font-weight: 500;
  padding: 0.75rem 2rem;
  border-radius: 25px;
}

.btn-secondary:hover {
  background-color: var(--secondary-brown-dark);
  border-color: var(--secondary-brown-dark);
}

/* Team Cards */
.team-card {
  text-align: center;
  background: var(--neutral-cream-light);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--primary-green-light);
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background-color: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--dark-forest);
}

/* FAQ Cards */
.faq-card {
  background: var(--neutral-cream-light);
  border: 1px solid var(--primary-green-light);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--dark-forest);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--dark-forest-light);
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

a[data-lightbox="gallery"]:hover .gallery-img {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Form */
.form-control {
  border: 2px solid var(--primary-green-light);
  border-radius: 10px;
  padding: 0.75rem;
  background-color: var(--neutral-cream-light);
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 0.25rem rgba(135, 185, 134, 0.25);
}

/* Footer */
.footer {
  background-color: var(--dark-forest);
  color: var(--neutral-cream-light);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--primary-green-light);
  font-weight: 600;
}

.footer p {
  color: var(--neutral-cream-light);
  opacity: 0.9;
}

.footer a {
  color: var(--neutral-cream-light);
  text-decoration: none;
  font-weight: 500;
}

.footer a:hover {
  color: var(--primary-green-light);
  text-decoration: underline;
}

.footer #site_disclaimer p {
  color: var(--neutral-cream-light);
  opacity: 0.9;
  margin-bottom: 0.5rem;
}

.footer small {
  color: var(--neutral-cream-light);
  opacity: 0.8;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: var(--primary-green);
  border-radius: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 1.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: var(--primary-green-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: var(--neutral-cream-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--neutral-cream);
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
  background-color: var(--primary-green-light);
  border-radius: 4px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Mobile optimizations */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero-section {
    min-height: 70vh;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .custom-card {
    padding: 1.5rem;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
