:root {
  /* Color Palette - 5 primary colors with shades */
  --primary-lavender: #dedee1;
  --primary-sage: #c9ddcb;
  --primary-coral: #ffa3b9;
  --primary-mint: #c0ddcd;
  --primary-cream: #faf8e9;
  
  /* Light/Dark shades */
  --lavender-light: #F4F4FD;
  --lavender-dark: #e8e8ff;
  --sage-light: #cbd0cb;
  --sage-dark: #a7c6a8;
  --coral-light: #ffe5e9;
  --coral-dark: #ff8a95;
  --mint-light: #e2e2e2;
  --mint-dark: #98f4d8;
  --cream-light: #FFFEF7;
  --cream-dark: #fffbcb;
  
  /* 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: #3e3e3e;
  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: #686868;
  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(194, 194, 194, 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: 200px;
}


/* Team Social Links - Neon Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

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

.social-link {
    display: inline-flex;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    border: 2px solid;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 0.7;
}

.social-link:hover {
    transform: scale(1.1);
    text-shadow: 0 0 20px currentColor;
    box-shadow: 0 0 20px currentColor;
}

.facebook-link {
    border-color: #1877f2;
    color: #1877f2;
    background: rgba(24, 119, 242, 0.1);
}

.linkedin-link {
    border-color: #0a66c2;
    color: #0a66c2;
    background: rgba(10, 102, 194, 0.1);
}

.instagram-link {
    border-color: #e4405f;
    color: #e4405f;
    background: rgba(228, 64, 95, 0.1);
}

.x-link {
    border-color: #ffffff;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
