:root {
  /* Primary Color Palette - Pastel high-contrast colors */
  --primary-purple: #7966be;
  --primary-purple-light: #9f91d7;
  --primary-purple-dark: #44417e;
  
  --secondary-mint: #9be7d5;
  --secondary-mint-light: #c9f5ee;
  --secondary-mint-dark: #458578;
  
  --accent-coral: #e19991;
  --accent-coral-light: #f3c7c0;
  --accent-coral-dark: #e49387;
  
  --neutral-sage: #bec8b9;
  --neutral-sage-light: #c2cfba;
  --neutral-sage-dark: #7f9b75;
  
  --warm-cream: #f0efee;
  --warm-cream-light: #FEFCF5;
  --warm-cream-dark: #fff3c3;
  
  /* Text Colors */
  --text-dark: #263444;
  --text-medium: #495d6d;
  --text-light: #858b94;
  
  /* Shadows and Effects */
  --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.2);
  
  /* Transitions */
  --transition-smooth: all 0.3s ease-in-out;
}

/* Typography - Conservative font sizes */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--warm-cream);
  line-height: 1.6;
}

.navbar-brand {
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--primary-purple-dark);
}

h1 {
  font-size: 2.27rem;
  font-weight: 700;
  color: var(--primary-purple-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.97rem;
  font-weight: 600;
  color: var(--primary-purple-dark);
  margin-bottom: 0.82rem;
}

h3 {
  font-size: 1.54rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.63rem;
}

h4 {
  font-size: 1.38rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.62rem;
}

p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--neutral-sage-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--primary-purple-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
    padding-top: 250px;
}

/* Section Spacing */
.section-padding {
  padding: 4rem 0;
}

/* Card Styles */
.custom-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.custom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Service Cards */
.service-card {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  padding: 2rem;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-price {
  font-size: 1.84rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Feature Items */
.feature-item {
  background: var(--warm-cream-light);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  border-left: 4px solid var(--secondary-mint);
}

/* Team Cards */
.team-card {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  text-align: center;
  padding: 1.5rem;
}

.team-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--accent-coral-light);
}

/* Review Cards */
.review-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  padding: 2rem;
  margin-bottom: 1.67rem;
  border-top: 4px solid var(--accent-coral);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: none;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
  margin-bottom: 1rem;
  padding: 1.5rem;
  border-left: 4px solid var(--primary-purple);
}

/* Price Plan Cards */
.price-card {
  background: white;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  padding: 2.5rem 2rem;
  text-align: center;
  height: 100%;
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  color: white;
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow-medium);
  padding: 3rem;
}

.form-control {
  border: 2px solid var(--neutral-sage-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(131, 123, 237, 0.25);
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--primary-purple) 100%);
  transform: translateY(-2px);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--secondary-mint) 0%, var(--secondary-mint-dark) 100%);
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  color: white;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-mint-dark) 0%, var(--secondary-mint) 100%);
  transform: translateY(-2px);
  color: white;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-light);
  padding: 1rem 0;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-purple-dark) 0%, var(--text-dark) 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: var(--accent-coral-light);
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-sage-light);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer a:hover {
  color: var(--accent-coral-light);
}

/* Gallery Images */
.gallery-img {
  border-radius: 12px;
  transition: var(--transition-smooth);
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-medium);
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem 1rem;
}

.process-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-coral) 0%, var(--accent-coral-dark) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.51rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline Items */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--secondary-mint);
}

.timeline-item::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% + 1rem);
  background: var(--neutral-sage-light);
}

.timeline-item:last-child::after {
  display: none;
}

/* Blog Cards */
.blog-card {
  background: white;
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-smooth);
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Breadcrumb */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Responsive adjustments in responsive.css */ 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
