:root {
  /* Primary Color Palette - Pastel high-contrast colors */
  --primary-sage: #a3bd9b;
  --primary-sage-light: #e4f8e1;
  --primary-sage-dark: #90ab85;
  
  --primary-blush: #e1939f;
  --primary-blush-light: #ffc6c3;
  --primary-blush-dark: #e38a92;
  
  --primary-cream: #f9ead0;
  --primary-cream-light: #FFFEF7;
  --primary-cream-dark: #fff3b4;
  
  --primary-lavender: #d5beef;
  --primary-lavender-light: #d5b9f2;
  --primary-lavender-dark: #baa1e6;
  
  --primary-dusty-rose: #f4cfdd;
  --primary-dusty-rose-light: #ffe1f3;
  --primary-dusty-rose-dark: #d71166;
  
  /* Neutral colors */
  --text-primary: #333e58;
  --text-secondary: #4c5875;
  --text-light: #687b98;
  --bg-light: #F7FAFC;
  --bg-white: #FFFFFF;
}

/* Conservative Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
}

/* Conservative heading sizes */
h1 {
  font-size: 2.52rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1.06rem;
}

h3 {
  font-size: 1.61rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.97rem;
}

h4 {
  font-size: 1.39rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.58rem;
}

p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* Conservative navbar brand size */
.navbar-brand {
  font-size: 1.61rem;
  font-weight: 600;
  color: var(--primary-sage-dark);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-cream) 0%, var(--primary-sage-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 150%;
  background: var(--primary-blush-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

/* Services Section */
.services-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.service-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid var(--primary-sage-light);
  margin-bottom: 2rem;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  font-size: 1.64rem;
  font-weight: 700;
  color: var(--primary-sage-dark);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.feature-item {
  padding: 1.5rem;
  text-align: center;
  background: var(--primary-cream);
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* Team Section */
.team-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.team-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.team-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
}

/* Reviews Section */
.reviews-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.review-card {
  background: var(--primary-lavender-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid var(--primary-lavender);
}

/* FAQ Section */
.faq-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.faq-card {
  background: var(--bg-white);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--primary-sage-light);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-sage-dark);
  margin-bottom: 0.56rem;
}

.faq-answer {
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.contact-form {
  background: var(--bg-light);
  padding: 3rem;
  border-radius: 12px;
}

.form-control {
  border: 1px solid var(--primary-sage-light);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-sage);
  box-shadow: 0 0 0 0.2rem rgba(165, 195, 156, 0.25);
}

.btn-primary {
  background-color: var(--primary-sage);
  border-color: var(--primary-sage);
  padding: 0.75rem 2rem;
  border-radius: 6px;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-sage-dark);
  border-color: var(--primary-sage-dark);
}

/* Footer */
.footer {
  background-color: var(--primary-sage-dark);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
}

.footer a {
  color: var(--primary-sage-light);
  text-decoration: none;
}

.footer a:hover {
  color: var(--bg-white);
}

/* Gallery Section */
.gallery-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 2rem;
}

/* Price Plan Section */
.priceplan-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.priceplan-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  border: 1px solid var(--primary-dusty-rose-light);
}

.priceplan-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dusty-rose-dark);
  margin-bottom: 1rem;
}

/* Process Section */
.process-section {
  padding: 5rem 0;
  background-color: var(--bg-white);
}

.process-item {
  background: var(--primary-cream);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 6px solid var(--primary-sage);
}

/* Blog Section */
.blog-section {
  background-color: var(--bg-light);
  padding: 5rem 0;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background-color: var(--bg-light);
}

.breadcrumb-image {
  width: 100px;
  height: 30px;
  object-fit: contain;
} 


/* Team Social Links - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

.social-icons-grid {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
}

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
