:root {
  /* Primary Color Palette - Pastel High-Contrast Colors */
  --primary-forest: #2d5a3d;
  --primary-forest-light: #4a7c59;
  --primary-forest-dark: #1e3d2a;
  
  --primary-earth: #8b6f47;
  --primary-earth-light: #a68960;
  --primary-earth-dark: #6b5436;
  
  --primary-sky: #5a8db3;
  --primary-sky-light: #7ba5c7;
  --primary-sky-dark: #4a7599;
  
  --primary-sunset: #d4845a;
  --primary-sunset-light: #e09f7a;
  --primary-sunset-dark: #b8704a;
  
  --primary-sage: #9cb3a3;
  --primary-sage-light: #b5c7b8;
  --primary-sage-dark: #7d9584;
  
  /* Neutral Colors */
  --neutral-white: #ffffff;
  --neutral-light: #f8f9fa;
  --neutral-gray: #6c757d;
  --neutral-dark: #343a40;
  --neutral-black: #212529;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-small: 0.875rem;
  --font-size-large: 1.125rem;
  --line-height-base: 1.5;
  
  /* Spacing */
  --section-padding: 4rem 0;
  --section-padding-small: 2rem 0;
}

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

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: var(--line-height-base);
  color: var(--neutral-dark);
    overflow-x: hidden;
}

/* Conservative font sizes */
.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-forest);
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-forest);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--primary-forest);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-earth);
  margin-bottom: 0.5rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-earth);
  margin-bottom: 0.5rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
  max-width: none;
}

/* Section Styling */
section {
  padding: var(--section-padding);
}

.section-alt {
  background-color: var(--neutral-light);
}

/* Hero Section */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary-sage-light) 0%, var(--primary-sky-light) 100%);
  position: relative;
}

.hero-decorative {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-decorative-1 {
  top: 10%;
  right: 10%;
  background-color: var(--primary-forest);
}

.hero-decorative-2 {
  bottom: 20%;
  left: 5%;
  background-color: var(--primary-sunset);
  width: 150px;
  height: 150px;
}

/* Services Cards */
.service-card {
  border: none;
  box-shadow: 0 4px 6px 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 8px 15px rgba(0, 0, 0, 0.15);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-forest);
}

/* Team Cards */
.team-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-sage);
}

/* Review Cards */
.review-card {
  border: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background-color: var(--neutral-white);
}

.review-author {
  font-weight: 600;
  color: var(--primary-forest);
}

/* FAQ Cards */
.faq-card {
  border: 1px solid var(--primary-sage-light);
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--neutral-gray);
}

/* Contact Form */
.contact-form {
  background-color: var(--neutral-white);
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--primary-sage-light);
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-forest);
  box-shadow: 0 0 0 0.2rem rgba(45, 90, 61, 0.25);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-forest);
  border-color: var(--primary-forest);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

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

.btn-outline-primary {
  color: var(--primary-forest);
  border-color: var(--primary-forest);
}

.btn-outline-primary:hover {
  background-color: var(--primary-forest);
  border-color: var(--primary-forest);
}

/* Footer */
#footer {
  background-color: var(--neutral-dark);
  color: var(--neutral-white);
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--primary-sage-light);
  margin-bottom: 1rem;
}

#footer a {
  color: var(--neutral-light);
  text-decoration: none;
}

#footer a:hover {
  color: var(--primary-sage-light);
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Process/Timeline Items */
.process-item {
  text-align: center;
  padding: 1.5rem;
}

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

/* Blog Cards */
.blog-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card img {
  height: 200px;
  object-fit: cover;
}

/* Price Plan Cards */
.price-plan-card {
  border: 2px solid var(--primary-sage-light);
  transition: all 0.3s ease;
}

.price-plan-card:hover {
  border-color: var(--primary-forest);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.price-plan-card.featured {
  border-color: var(--primary-forest);
  transform: scale(1.05);
}

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

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent;
  padding: 0.5rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
  object-fit: cover;
}

/* Utility Classes */
.text-primary-forest {
  color: var(--primary-forest);
}

.text-primary-earth {
  color: var(--primary-earth);
}

.text-primary-sky {
  color: var(--primary-sky);
}

.bg-primary-sage {
  background-color: var(--primary-sage-light);
}

.bg-section-alt {
  background-color: var(--neutral-light);
}

/* Animation Classes for Sal.js */
.sal-animate {
  transition-duration: 0.5s;
  transition-timing-function: ease;
}

/* Navbar scroll behavior */
.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Mobile-first responsive adjustments */
@media (max-width: 768px) {
  :root {
    --section-padding: 2rem 0;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-decorative {
    display: none;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .price-plan-card.featured {
    transform: none;
  }
  
  .navbar {
    transform: none !important;
  }
} 


/* Team Social Links - Elegant Style */
.team-social-links {
    margin-top: 24px;
    padding: 18px 0;
}

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

.social-link {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.9);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 1);
    box-shadow: 0 8px 30px rgba(24, 119, 242, 0.4);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.9);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 1);
    box-shadow: 0 8px 30px rgba(10, 102, 194, 0.4);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.9);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 1);
    box-shadow: 0 8px 30px rgba(228, 64, 95, 0.4);
}

.x-link {
    background: rgba(0, 0, 0, 0.9);
    position: relative;
}

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

.x-link:hover {
    background: rgba(0, 0, 0, 1);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.x-link i {
    display: none;
}

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