:root {
  /* 5 Primary Pastel Colors with High Contrast */
  --primary-mint: #65bfc9;
  --primary-coral: #ffc7d0;
  --primary-lavender: #a992c9;
  --primary-peach: #fbcdae;
  --primary-sage: #a8dba1;
  
  /* Light/Dark Shades */
  --mint-light: #abeceb;
  --mint-dark: #58a8a7;
  --coral-light: #ffe4e6;
  --coral-dark: #e9747d;
  --lavender-light: #c7b9ef;
  --lavender-dark: #9880b8;
  --peach-light: #e6c5af;
  --peach-dark: #ffdda6;
  --sage-light: #caecc5;
  --sage-dark: #a3cf9f;
  
  /* Conservative Typography */
  --font-size-brand: 1.1rem;
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-p: 0.95rem;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 600;
}

/* Conservative Typography Implementation */
.navbar-brand {
  font-size: var(--font-size-brand) !important;
  font-weight: var(--font-weight-medium);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: var(--font-weight-bold);
  color: var(--primary-sage);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: var(--font-weight-medium);
  color: var(--primary-lavender);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-medium);
  color: var(--primary-mint);
}

p, .lead {
  font-size: var(--font-size-p);
  font-weight: var(--font-weight-normal);
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--mint-light), var(--sage-light));
  display: flex;
  align-items: center;
}

/* Service Cards */
.service-card {
  background: white;
  border-radius: 17px;
  box-shadow: 0 7px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  background: var(--primary-coral);
  color: white;
  font-weight: var(--font-weight-bold);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  display: inline-block;
}

/* Team Member Cards */
.team-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--peach-light);
}

/* Review Cards */
.review-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 9px 6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  padding: 1.5rem;
}

.faq-question {
  color: var(--primary-lavender);
  font-weight: var(--font-weight-medium);
  margin-bottom: 0.62rem;
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

/* Button Styles */
.btn-primary-custom {
  background: var(--primary-sage);
  border: none;
  color: white;
  font-weight: var(--font-weight-medium);
  padding: 0.75rem 2rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-primary-custom:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
  color: white;
}

.btn-primary-custom:focus {
  background: var(--sage-dark);
  color: white;
  box-shadow: 0 0 0 0.2rem rgba(178, 213, 179, 0.50);
  outline: none;
}

.btn-primary-custom:active {
  background: var(--sage-dark);
  transform: translateY(0);
}

/* Form Styles */
.form-control {
  border-radius: 8px;
  border: 2px solid var(--mint-light);
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(162, 240, 230, 0.25);
  outline: none;
}

.form-control:invalid {
  border-color: #dc2f46;
}

.form-control:valid {
  border-color: var(--primary-sage);
}

/* Gallery */
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--coral-light);
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--lavender-dark), var(--mint-dark));
  color: white;
  padding: 3rem 0 1rem;
}

/* Decorative Elements */
.decorative-blob {
  background: var(--primary-peach);
  border-radius: 50%;
  opacity: 0.7;
  position: absolute;
  z-index: -1;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Navigation and Link Styles */
.nav-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(132, 230, 234, 0.50);
  outline: none;
}

.navbar-brand:focus {
  box-shadow: 0 0 0 0.2rem rgba(124, 211, 203, 0.50);
  outline: none;
}

/* Link focus states */
a:focus {
  outline: 2px solid var(--primary-mint);
  outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-sage);
  color: white;
  padding: 8px;
  text-decoration: none;
  z-index: 9999;
  border-radius: 4px;
}

.skip-link:focus {
  top: 6px;
}

/* Utility Classes */
.text-mint { color: var(--primary-mint); }
.text-coral { color: var(--primary-coral); }
.text-lavender { color: var(--primary-lavender); }
.text-peach { color: var(--primary-peach); }
.text-sage { color: var(--primary-sage); }

.bg-mint { background-color: var(--primary-mint); }
.bg-coral { background-color: var(--primary-coral); }
.bg-lavender { background-color: var(--primary-lavender); }
.bg-peach { background-color: var(--primary-peach); }
.bg-sage { background-color: var(--primary-sage); } 

.hero-section h1 {
    padding-top: 150px;
}


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
