:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #6366f1;
  --primary-purple: #8b5cf6;
  --primary-green: #10b981;
  --primary-orange: #f59e0b;
  --primary-pink: #ec4899;
  
  /* Light Shades */
  --light-blue: #e0e7ff;
  --light-purple: #f3e8ff;
  --light-green: #d1fae5;
  --light-orange: #fef3c7;
  --light-pink: #fce7f3;
  
  /* Dark Shades */
  --dark-blue: #4338ca;
  --dark-purple: #7c3aed;
  --dark-green: #059669;
  --dark-orange: #d97706;
  --dark-pink: #db2777;
  
  /* System Colors */
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
}

/* Conservative Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

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

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-purple);
  border-radius: 50%;
  opacity: 0.1;
  top: 20%;
  right: 10%;
  z-index: 1;
}

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

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

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

/* Price Badge */
.price-badge {
  background: var(--primary-green);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
}

/* Team Member Cards */
.team-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
}

.faq-question {
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 auto 1rem;
}

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

.footer h5 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.footer a {
  color: #d1d5db;
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary-blue);
}

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

/* Utility Classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-green { color: var(--primary-green); }
.bg-light-blue { background-color: var(--light-blue); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-green { background-color: var(--light-green); } 

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


/* Team Social Links - Modern Style */
.team-social-links {
    margin-top: 25px;
    padding: 20px 0;
}

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

.social-link {
    display: inline-flex;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 22px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    transform: scale(0);
    border-radius: inherit;
    transition: transform 0.5s ease;
}

.social-link:hover::before {
    transform: scale(1.2);
}

.social-link:hover {
    transform: translateY(-8px) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #00c6ff);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #0099cc);
}

.instagram-link {
    background: linear-gradient(45deg, #e4405f, #f093fb, #f5576c);
}

.x-link {
    background: linear-gradient(45deg, #000000, #434343);
    position: relative;
}

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

.x-link i {
    display: none;
}

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