:root {
  /* Primary Color Palette - Pastel high-contrast colors */
  --primary-purple: #736fc3;
  --primary-purple-light: #cfcaee;
  --primary-purple-dark: #4d4b7f;
  
  --secondary-mint: #5cbab1;
  --secondary-mint-light: #d1fbee;
  --secondary-mint-dark: #63b5a2;
  
  --accent-coral: #ffb5b3;
  --accent-coral-light: #ffced2;
  --accent-coral-dark: #cf7c72;
  
  --neutral-sage: #b6beae;
  --neutral-sage-light: #c4ccbf;
  --neutral-sage-dark: #768867;
  
  --warm-cream: #fffbe1;
  --warm-cream-light: #FEFCF5;
  --warm-cream-dark: #fff1b7;
  
  /* Text Colors */
  --text-dark: #303c4e;
  --text-medium: #628296;
  --text-light: #7d98a7;
  
  /* 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: 10px;
  font-weight: 600;
  color: var(--primary-purple-dark);
}

h1 {
  font-size: 2.29rem;
  font-weight: 700;
  color: var(--primary-purple-dark);
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.90rem;
  font-weight: 600;
  color: var(--primary-purple-dark);
  margin-bottom: 0.81rem;
}

h3 {
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.64rem;
}

h4 {
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.66rem;
}

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: 125px;
}

/* 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.87rem;
  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.64rem;
  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(116, 101, 191, 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 {
  font-size: 10px;
  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.63rem;
  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;
}

/* Make breadcrumb images responsive */
.breadcrumb img {
  max-width: 100%;
  height: auto;
}

/* Responsive adjustments in responsive.css */ 


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

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

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

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
