:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-sage: #99c496;
  --primary-lavender: #bac0e1;
  --primary-peach: #ffeda3;
  --primary-sky: #74bce1;
  --primary-rose: #e5aeba;
  
  /* Light Shades */
  --light-sage: #b6c0b4;
  --light-lavender: #F0F0FF;
  --light-peach: #f7f3e4;
  --light-sky: #9fcce4;
  --light-rose: #ffdfe1;
  
  /* Dark Shades */
  --dark-sage: #689c6b;
  --dark-lavender: #bcb5eb;
  --dark-peach: #e5cc96;
  --dark-sky: #55b7dd;
  --dark-rose: #eda8b5;
  
  /* Neutral Colors */
  --text-primary: #344151;
  --text-secondary: #607688;
  --text-muted: #7e8282;
  --bg-light: #FAFBFC;
  --border-light: #ffffff;
  
  /* Conservative Typography */
  --font-size-base: 0.95rem;
  --font-size-sm: 0.85rem;
  --font-size-lg: 1.1rem;
  --line-height-base: 1.6;
}

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

/* Conservative Typography */
body {
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-primary);
}

.navbar-brand {
    font-size: 10px !important;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-sage);
}

/* Header navigation links */
.nav-link {
  font-size: 10px !important;
}

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

h2 {
  font-size: 1.71rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.93rem;
}

h3 {
  font-size: 1.43rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.66rem;
}

h4 {
  font-size: 1.16rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.59rem;
}

p {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.text-muted {
  color: var(--text-muted);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-lavender) 0%, var(--light-peach) 100%);
  position: relative;
  overflow: hidden;
}

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

.hero-decorative {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
  z-index: 1;
}

.hero-shape-1 {
  position: absolute;
  top: 20%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: var(--primary-sage);
  border-radius: 50%;
  opacity: 0.3;
}

.hero-shape-2 {
  position: absolute;
  bottom: 30%;
  left: 5%;
  width: 150px;
  height: 150px;
  background: var(--primary-rose);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.3;
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: var(--primary-sage);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.62rem;
}

/* Service Cards */
.service-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 11px 30px rgba(0,0,0,0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.61rem;
  color: white;
  font-size: 1.52rem;
}

.service-price {
  font-size: 1.52rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-sky), var(--primary-lavender));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

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

.team-photo {
  width: 100%;
  height: 250px;
  background: var(--light-sage);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 3rem;
}

.team-info {
  padding: 1.5rem;
}

/* Review Cards */
.review-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -12px;
  left: 20px;
  font-size: 4rem;
  color: var(--primary-sage);
  line-height: 1;
}

.review-author {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--text-secondary);
  margin: 0;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-sage);
  transform: translateY(-5px);
}

.price-card.featured {
  border-color: var(--primary-sage);
  background: linear-gradient(135deg, var(--light-sage), var(--light-sky));
}

.price-value {
  font-size: 2.57rem;
  font-weight: 700;
  color: var(--primary-sage);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-light);
}

.price-features li:last-child {
  border-bottom: none;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-info {
  background: var(--light-sage);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.69rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-right: 1rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  background: var(--light-peach);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2rem;
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--light-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2rem;
}

.blog-content {
  padding: 1.5rem;
}

/* Footer */
.footer {
  background: var(--text-primary);
  color: white;
  padding: 3rem 0 1rem;
}

footer h3 {
  color: var(--primary-sage);
}

.footer-section {
  margin-bottom: 2rem;
}

.footer-title {
  color: var(--primary-sage);
  font-size: 1.17rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-link {
  color: #cacbcb;
  text-decoration: none;
  display: block;
  padding: 0.25rem 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-sage);
}

.footer-bottom {
  border-top: 1px solid #293b52;
  padding-top: 1rem;
  margin-top: 2rem;
  text-align: center;
  color: #798f94;
}

/* Utility Classes */
.bg-primary-sage { background-color: var(--primary-sage); }
.bg-primary-lavender { background-color: var(--primary-lavender); }
.bg-primary-peach { background-color: var(--primary-peach); }
.bg-primary-sky { background-color: var(--primary-sky); }
.bg-primary-rose { background-color: var(--primary-rose); }

.text-primary-sage { color: var(--primary-sage); }
.text-primary-lavender { color: var(--primary-lavender); }
.text-primary-peach { color: var(--primary-peach); }
.text-primary-sky { color: var(--primary-sky); }
.text-primary-rose { color: var(--primary-rose); }

.btn-primary-sage {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  color: white;
}

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


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

.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;
    }
}
