:root {
  /* Color Palette - Pastel High-Contrast Colors */
  --primary-color: #3158d9;
  --primary-light: #f5fbff;
  --primary-dark: #2d60af;
  --secondary-color: #0d8d76;
  --secondary-light: #e7fff1;
  --secondary-dark: #05895f;
  --accent-color: #e71128;
  --accent-light: #f7e9e9;
  --accent-dark: #b82114;
  --neutral-color: #354051;
  --neutral-light: #f9fafb;
  --neutral-dark: #151b2a;
  --text-color: #3a414b;
  --text-light: #5e6068;
  --bg-color: #ffffff;
  --bg-light: #f8fafc;
}

/* Conservative Typography */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
}

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

h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--neutral-dark);
}

h2 {
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--neutral-dark);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--neutral-dark);
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--neutral-dark);
}

h5 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--neutral-dark);
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--text-light);
}

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

.hero-decorative {
  position: absolute;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 175px;
}

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

.section-bg-light {
  background-color: var(--bg-light);
}

.section-bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: white;
}

.section-bg-secondary {
  background-color: var(--secondary-light);
}

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

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-card {
  border-top: 4px solid var(--primary-color);
}

.feature-card {
  text-align: center;
  border-radius: 12px;
}

.price-card {
  border: 2px solid var(--primary-light);
  position: relative;
}

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

.team-card {
  text-align: center;
}

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

.review-card {
  background-color: var(--bg-light);
  border-left: 4px solid var(--secondary-color);
}

.case-study-card {
  background: white;
  border-radius: 12px;
}

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

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

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid var(--primary-light);
}

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  position: absolute;
  left: -7px;
  top: 0;
}

/* Forms */
.form-control {
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(42, 87, 217, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

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

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
}

.btn-secondary:hover {
  background-color: var(--secondary-dark);
  border-color: var(--secondary-dark);
}

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

.footer h5 {
  color: white;
  margin-bottom: 1rem;
}

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

.footer a:hover {
  color: white;
}

/* Gallery */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* FAQ Cards */
.faq-card {
  margin-bottom: 1rem;
  border: 1px solid var(--primary-light);
}

.faq-question {
  background-color: var(--primary-light);
  padding: 1rem;
  margin: 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.faq-answer {
  padding: 1rem;
  margin: 0;
  background-color: white;
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .sal-animate {
    transition: all 0.3s ease;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sal-animate {
    transition: none;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  h1 {
    font-size: 1.875rem;
  }
  
  .price-card.featured {
    transform: none;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
} 


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