:root {
  /* Color Palette - Pastel High-Contrast Colors */
  --primary-green: #86c085;
  --secondary-brown: #e5bfa1;
  --accent-orange: #ffb861;
  --neutral-cream: #fdffd9;
  --dark-forest: #2f492d;
  
  /* Light and dark shades */
  --primary-green-light: #b1c4b3;
  --primary-green-dark: #6f9b6e;
  --secondary-brown-light: #d6c59d;
  --secondary-brown-dark: #bda786;
  --accent-orange-light: #f4d4bb;
  --accent-orange-dark: #e27b53;
  --neutral-cream-light: #FEFEFE;
  --neutral-cream-dark: #d1d1b2;
  --dark-forest-light: #5d7e57;
  --dark-forest-dark: #142917;
}

/* 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: 175px;
}

/* 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(51, 98, 57, 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;
  background-color: var(--primary-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-forest);
  font-size: 1.2rem;
  text-align: center;
}

/* 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(152, 203, 145, 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);
}

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

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

/* 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 - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
