:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-purple: #8B5FBF;
  --primary-purple-light: #B8A9C9;
  --primary-purple-dark: #5A3E7A;
  
  --secondary-blue: #6C9BD1;
  --secondary-blue-light: #A8C5E8;
  --secondary-blue-dark: #4A7BA7;
  
  --accent-pink: #E8A5C4;
  --accent-pink-light: #F2C9D7;
  --accent-pink-dark: #D47FA5;
  
  --neutral-gray: #8E9AAF;
  --neutral-gray-light: #B8C4D6;
  --neutral-gray-dark: #5D6B7F;
  
  --highlight-yellow: #F4E285;
  --highlight-yellow-light: #F8EAA8;
  --highlight-yellow-dark: #E6D25C;
  
  /* Typography */
  --font-size-base: 14px;
  --font-size-small: 12px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-navbar-brand: 1.1rem;
  
  /* Spacing */
  --section-padding: 60px 0;
  --content-max-width: 1200px;
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--neutral-gray-dark);
    overflow-x: hidden;
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  margin-bottom: 0.8rem;
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  margin-bottom: 0.6rem;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

/* Conservative navbar brand size */
.navbar-brand {
  font-size: var(--font-size-navbar-brand);
  font-weight: 600;
  color: var(--primary-purple);
}

/* Section Styling */
section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--neutral-gray);
  text-align: center;
  font-size: var(--font-size-base);
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--neutral-gray-dark);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  mx-auto: auto;
}

/* Hero Section */
#hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--secondary-blue-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 200px;
  height: 200px;
  background: var(--accent-pink);
  top: 10%;
  right: 10%;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background: var(--highlight-yellow);
  bottom: 15%;
  left: 15%;
}

/* Services Cards */
.service-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  border: 1px solid var(--neutral-gray-light);
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-price {
  color: var(--primary-purple);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neutral-gray-light);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--primary-purple-light);
}

/* Testimonials/Reviews */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--accent-pink);
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neutral-gray-light);
}

.faq-question {
  font-weight: 600;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--neutral-gray-dark);
  margin: 0;
}

/* Gallery */
#gallery {
  background: var(--neutral-gray-light);
}

.gallery-item {
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-control {
  border: 2px solid var(--neutral-gray-light);
  border-radius: 8px;
  padding: 0.75rem;
  font-size: var(--font-size-base);
}

.form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.25rem rgba(139, 95, 191, 0.25);
}

.btn-primary {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
}

.btn-primary:hover {
  background-color: var(--primary-purple-dark);
  border-color: var(--primary-purple-dark);
}

/* Footer */
#footer {
  background: var(--neutral-gray-dark);
  color: white;
  padding: 3rem 0 1rem;
}

#footer h5 {
  color: var(--accent-pink-light);
  margin-bottom: 1rem;
}

#footer a {
  color: var(--neutral-gray-light);
  text-decoration: none;
}

#footer a:hover {
  color: white;
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--neutral-gray-light);
}

.breadcrumb-img {
  width: 24px;
  height: 24px;
}

/* Price Plans */
.price-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  height: 100%;
  transition: border-color 0.3s ease;
}

.price-card:hover {
  border-color: var(--primary-purple);
}

.price-card.featured {
  border-color: var(--accent-pink);
  transform: scale(1.05);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-purple);
}

/* Features */
.feature-item {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.process-number {
  width: 50px;
  height: 50px;
  background: var(--primary-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Case Studies */
.case-study-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.case-study-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-study-content {
  padding: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  :root {
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.25rem;
    --font-size-navbar-brand: 1rem;
  }
  
  #hero {
    min-height: 80vh;
  }
  
  .hero-shape {
    display: none;
  }
  
  section {
    padding: 40px 0;
  }
  
  .price-card.featured {
    transform: none;
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .service-card:hover,
  .gallery-item img:hover {
    transform: none;
  }
} 

.hero-content {
    padding-top: 175px;
}


/* Team Social Links - Glass Style */
.team-social-links {
    margin-top: 22px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icons-grid {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.facebook-link {
    background: rgba(24, 119, 242, 0.3);
}

.facebook-link:hover {
    background: rgba(24, 119, 242, 0.5);
}

.linkedin-link {
    background: rgba(10, 102, 194, 0.3);
}

.linkedin-link:hover {
    background: rgba(10, 102, 194, 0.5);
}

.instagram-link {
    background: rgba(228, 64, 95, 0.3);
}

.instagram-link:hover {
    background: rgba(228, 64, 95, 0.5);
}

.x-link {
    background: rgba(0, 0, 0, 0.3);
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: rgba(0, 0, 0, 0.5);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }
}
