:root {
  /* Color Palette - 5 primary colors with shades */
  --primary-lavender: #eeecff;
  --primary-sage: #a7b7a7;
  --primary-coral: #ffa5bc;
  --primary-mint: #a6cdc2;
  --primary-cream: #fffde9;
  
  /* Light/Dark shades */
  --lavender-light: #F4F4FD;
  --lavender-dark: #cac2f3;
  --sage-light: #f9f9f9;
  --sage-dark: #97be97;
  --coral-light: #ffe0de;
  --coral-dark: #ff7a94;
  --mint-light: #e9fff7;
  --mint-dark: #92cbc0;
  --cream-light: #FFFEF7;
  --cream-dark: #dbd3b8;
  
  /* Typography */
  --font-family-primary: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-family-handwriting: "Dancing Script", cursive;
}

/* Conservative typography - avoid large font sizes */
.navbar-brand {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--sage-dark);
}

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

h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

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

p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1f1f1f;
  margin-bottom: 1rem;
}

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

.hero-decorative {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 150px;
  height: 150px;
  background: var(--coral-light);
  border-radius: 50%;
  opacity: 0.3;
  z-index: 1;
}

.hero-decorative::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--mint-light);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  opacity: 0.5;
}

/* Handwriting preview styles */
.handwriting-preview {
  font-family: var(--font-family-handwriting);
  font-size: 2.5rem;
  color: var(--sage-dark);
  text-align: center;
  margin: 2rem 0;
}

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

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

/* Team member cards */
.team-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.team-card:hover {
  transform: scale(1.05);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--lavender-light);
}

/* Review cards */
.review-card {
  background: var(--cream-light);
  border: none;
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

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

.faq-question {
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 0.75rem;
}

.faq-answer {
  color: #7f7d7d;
  margin: 0;
}

/* Contact form styling */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-control {
  border: 2px solid var(--lavender-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--sage-dark);
  box-shadow: 0 0 0 0.2rem rgba(175, 198, 178, 0.25);
}

.btn-primary {
  background-color: var(--sage-dark);
  border-color: var(--sage-dark);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--sage-light);
  border-color: var(--sage-light);
  transform: translateY(-2px);
}

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

.footer a {
  color: var(--mint-light);
  text-decoration: none;
}

.footer a:hover {
  color: white;
  text-decoration: underline;
}

/* Section spacing */
.section {
  padding: 5rem 0;
}

.section:nth-child(even) {
  background: var(--cream-light);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover,
  .team-card:hover,
  .btn-primary:hover {
    transform: none;
  }
  
  .service-card,
  .team-card,
  .btn-primary {
    transition: none;
  }
}

/* Process steps */
.process-step {
  background: white;
  border: 2px solid var(--lavender-light);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--coral-light);
  color: var(--sage-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

/* Timeline items */
.timeline-item {
  background: white;
  border-left: 4px solid var(--mint-dark);
  padding: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 2rem;
  width: 12px;
  height: 12px;
  background: var(--coral-dark);
  border-radius: 50%;
}

/* Blog cards */
.blog-card {
  background: white;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

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

/* Price plan cards */
.price-card {
  background: white;
  border: 2px solid var(--lavender-light);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
  position: relative;
}

.price-card.featured {
  border-color: var(--coral-dark);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--coral-dark);
}

/* Case study cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  border: 1px solid var(--lavender-light);
}

/* Career cards */
.career-card {
  background: var(--mint-light);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 2rem;
}

/* Core info items */
.core-info-item {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid var(--lavender-light);
}

/* Feature items */
.feature-item {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
}

.feature-icon {
  font-size: 3rem;
  color: var(--coral-dark);
  margin-bottom: 1rem;
}

/* About feature items */
.about-feature {
  background: var(--lavender-light);
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  margin-bottom: 2rem;
} 

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


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

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

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