:root {
  /* Color Palette - 5 primary colors + light/dark shades */
  --primary-color: #e8b4d9;
  --secondary-color: #b4e8d1;
  --accent-color: #d9e8b4;
  --neutral-color: #e8d9b4;
  --contrast-color: #b4d9e8;
  
  /* Light shades */
  --primary-light: #f4dae9;
  --secondary-light: #daf4e8;
  --accent-light: #ecf4da;
  --neutral-light: #f4ecda;
  --contrast-light: #daecf4;
  
  /* Dark shades */
  --primary-dark: #d198c2;
  --secondary-dark: #98d1ba;
  --accent-dark: #c2d198;
  --neutral-dark: #d1c298;
  --contrast-dark: #98c2d1;
}

/* Conservative typography */
.navbar-brand { font-size: 1.125rem; }
h1 { font-size: 2.25rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
p { font-size: 1rem; }

/* Hero section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  display: flex;
  align-items: center;
}

/* Service cards */
.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

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

/* Price cards */
.price-card {
  background: white;
  border: 2px solid var(--neutral-color);
  border-radius: 12px;
  transition: all 0.3s ease;
}

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

/* Contact form */
.contact-form {
  background: var(--neutral-light);
  padding: 2rem;
  border-radius: 12px;
}

/* Footer */
.footer-section {
  background: var(--primary-dark);
  color: white;
}

/* FAQ cards */
.faq-card {
  background: white;
  border: 1px solid var(--neutral-color);
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Blog cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Decorative shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-color);
  opacity: 0.6;
  z-index: -1;
}

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

/* Buttons */
.btn-custom {
  background: var(--primary-color);
  border: none;
  color: #333;
  padding: 0.75rem 2rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .service-card, .price-card { transition: none; }
  .service-card:hover, .price-card:hover { transform: none; }
} 

.hero-section h1 {
    padding-top: 150px;
}


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