:root {
  --primary-purple: #6b46c1;
  --primary-emerald: #10b981;
  --primary-amber: #f59e0b;
  --primary-rose: #e11d48;
  --primary-slate: #475569;
  --light-purple: #ede9fe;
  --light-emerald: #d1fae5;
  --light-amber: #fef3c7;
  --light-rose: #ffe4e6;
  --light-slate: #f1f5f9;
  --dark-purple: #4c1d95;
  --dark-emerald: #047857;
  --dark-amber: #d97706;
  --dark-rose: #be123c;
  --dark-slate: #1e293b;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--dark-slate);
  font-size: 16px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
  color: var(--primary-purple) !important;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-purple);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-slate);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary-purple);
}

p {
  font-size: 16px;
  margin-bottom: 1rem;
  color: var(--primary-slate);
}

.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-emerald) 100%);
  display: flex;
  align-items: center;
}

.btn-primary {
  background: linear-gradient(45deg, var(--primary-purple), var(--primary-emerald));
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107, 70, 193, 0.3);
}

.section-padding {
  padding: 80px 0;
}

.bg-gradient-purple {
  background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-rose) 100%);
}

.bg-gradient-emerald {
  background: linear-gradient(135deg, var(--light-emerald) 0%, var(--light-amber) 100%);
}

.card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.team-member img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--light-purple);
}

.price-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
}

.price-card.featured {
  background: linear-gradient(135deg, var(--primary-purple), var(--primary-emerald));
  color: white;
  transform: scale(1.05);
}

.testimonial-card {
  background: var(--light-slate);
  border-radius: 15px;
  padding: 30px;
  margin: 15px;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.faq-header {
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid var(--light-slate);
}

.faq-content {
  padding: 20px;
  display: none;
}

.contact-form {
  background: var(--light-purple);
  border-radius: 20px;
  padding: 40px;
}

.form-control {
  border-radius: 10px;
  border: 2px solid var(--light-slate);
  padding: 12px 15px;
  margin-bottom: 20px;
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(107, 70, 193, 0.25);
}

footer {
  background: linear-gradient(135deg, var(--dark-slate) 0%, var(--dark-purple) 100%);
  color: white;
  padding: 60px 0 20px;
}

.breadcrumb {
  background: transparent;
  padding: 20px 0;
}

.breadcrumb img {
  width: 24px;
  height: 24px;
}

.blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 30px;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
} 


/* Team Social Links - Colorful Style */
.team-social-links {
    margin-top: 22px;
    padding: 16px 0;
}

.social-icons-grid {
    display: flex;
    gap: 14px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(45deg, #1877f2, #42a5f5, #64b5f6);
}

.linkedin-link {
    background: linear-gradient(45deg, #0a66c2, #2196f3, #42a5f5);
}

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
