:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-purple: #8B5A96;
  --primary-purple-light: #B19FC7;
  --primary-purple-dark: #6A4374;
  
  --secondary-coral: #FF9AA2;
  --secondary-coral-light: #FFB3BA;
  --secondary-coral-dark: #E6878E;
  
  --accent-mint: #B5EAD7;
  --accent-mint-light: #D4F1E8;
  --accent-mint-dark: #A1D6C4;
  
  --neutral-cream: #F7EDE2;
  --neutral-cream-light: #FAF3EA;
  --neutral-cream-dark: #E8D4C4;
  
  --text-charcoal: #2D3748;
  --text-charcoal-light: #4A5568;
  --text-charcoal-dark: #1A202C;
  
  /* Typography */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  
  /* Spacing */
  --section-padding: 80px 0;
  --hero-height: 100vh;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Base Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-charcoal);
  line-height: 1.6;
  font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
  color: var(--text-charcoal-dark);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
}

/* Header */
#header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(139, 90, 150, 0.1);
}

#header .navbar-nav .nav-link {
  color: var(--text-charcoal);
  font-weight: var(--font-weight-medium);
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

#header .navbar-nav .nav-link:hover {
  color: var(--primary-purple);
}

/* Hero Section */
#hero {
  min-height: var(--hero-height);
  background: linear-gradient(135deg, var(--neutral-cream) 0%, var(--accent-mint-light) 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: var(--primary-purple);
  opacity: 0.05;
  border-radius: 50%;
  transform: rotate(-15deg);
}

#hero .hero-content {
  position: relative;
  z-index: 2;
    padding-top: 125px;
}

/* Section Spacing */
section {
  padding: var(--section-padding);
}

/* About Section */
#about {
  background: var(--neutral-cream-light);
}

#about .feature-card {
  background: white;
  border: none;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(139, 90, 150, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

#about .feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(139, 90, 150, 0.15);
}

#about .feature-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Services Section */
#services {
  background: white;
}

#services .service-card {
  background: var(--neutral-cream);
  border: none;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

#services .service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-purple), var(--secondary-coral));
}

#services .service-card:hover {
  transform: translateY(-8px);
}

#services .service-price {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
  margin: 1rem 0;
}

#services .service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

#services .service-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(139, 90, 150, 0.1);
}

/* Features Section */
#features {
  background: var(--accent-mint-light);
}

#features .feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

#features .feature-item i {
  font-size: 3rem;
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
}

/* Price Plan Section */
#priceplan {
  background: white;
}

#priceplan .price-card {
  background: var(--neutral-cream);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

#priceplan .price-card.featured {
  background: var(--primary-purple);
  color: white;
  transform: scale(1.05);
}

#priceplan .price-card.featured .price-amount {
  color: white;
}

#priceplan .price-card:hover {
  border-color: var(--primary-purple);
  transform: translateY(-5px);
}

#priceplan .price-amount {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
  margin: 1rem 0;
}

/* Team Section */
#team {
  background: var(--neutral-cream-light);
}

#team .team-card {
  background: white;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(139, 90, 150, 0.08);
  transition: transform 0.3s ease;
}

#team .team-card:hover {
  transform: translateY(-8px);
}

#team .team-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--accent-mint);
}

#team .team-info {
  padding: 1.5rem;
  text-align: center;
}

#team .team-name {
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem;
  color: var(--text-charcoal-dark);
}

#team .team-role {
  color: var(--primary-purple);
  font-weight: var(--font-weight-medium);
}

/* Reviews Section */
#reviews {
  background: white;
}

#reviews .review-card {
  background: var(--neutral-cream);
  border: none;
  border-radius: 15px;
  padding: 2rem;
  height: 100%;
  position: relative;
}

#reviews .review-card::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-purple);
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  opacity: 0.3;
}

#reviews .review-text {
  margin: 2rem 0 1rem 0;
  font-style: italic;
  line-height: 1.7;
}

#reviews .review-author {
  font-weight: var(--font-weight-bold);
  color: var(--primary-purple);
  text-align: right;
}

/* Case Study Section */
#casestudy {
  background: var(--accent-mint-light);
}

#casestudy .case-card {
  background: white;
  border: none;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(139, 90, 150, 0.08);
  transition: transform 0.3s ease;
}

#casestudy .case-card:hover {
  transform: translateY(-5px);
}

#casestudy .case-image {
  width: 100%;
  height: 200px;
  background: var(--secondary-coral-light);
}

#casestudy .case-content {
  padding: 2rem;
}

/* Process Section */
#process {
  background: white;
}

#process .process-step {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
}

#process .process-number {
  width: 80px;
  height: 80px;
  background: var(--primary-purple);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin: 0 auto 1.5rem;
}

/* FAQ Section */
#faq {
  background: var(--neutral-cream-light);
}

#faq .faq-card {
  background: white;
  border: none;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 15px rgba(139, 90, 150, 0.05);
}

#faq .faq-question {
  background: var(--primary-purple);
  color: white;
  padding: 1.5rem;
  margin: 0;
  font-weight: var(--font-weight-medium);
}

#faq .faq-answer {
  padding: 1.5rem;
  margin: 0;
  line-height: 1.7;
}

/* Gallery Section */
#gallery {
  background: white;
  padding: 60px 0;
}

#gallery .gallery-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  background: var(--accent-mint);
}

/* Contact Section */
#contacts {
  background: var(--accent-mint-light);
}

#contacts .contact-form {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(139, 90, 150, 0.1);
}

#contacts .form-control {
  border: 2px solid var(--neutral-cream);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

#contacts .form-control:focus {
  border-color: var(--primary-purple);
  box-shadow: 0 0 0 0.2rem rgba(139, 90, 150, 0.25);
}

#contacts .btn-primary {
  background: var(--primary-purple);
  border: none;
  border-radius: 10px;
  padding: 0.75rem 2rem;
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

#contacts .btn-primary:hover {
  background: var(--primary-purple-dark);
  transform: translateY(-2px);
}

#contacts .contact-info {
  background: var(--primary-purple);
  color: white;
  border-radius: 20px;
  padding: 3rem;
}

#contacts .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

#contacts .contact-item i {
  font-size: 1.5rem;
  margin-right: 1rem;
  width: 40px;
}

/* Footer */
#footer {
  background: var(--text-charcoal-dark);
  color: white;
  padding: 60px 0 20px;
}

#footer .footer-section {
  margin-bottom: 2rem;
}

#footer .footer-title {
  color: var(--secondary-coral);
  font-weight: var(--font-weight-bold);
  margin-bottom: 1rem;
}

#footer .footer-link {
  color: var(--neutral-cream);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

#footer .footer-link:hover {
  color: var(--secondary-coral);
}

#footer .site-copyright {
  border-top: 1px solid var(--text-charcoal);
  padding-top: 20px;
  margin-top: 40px;
  text-align: center;
  color: var(--neutral-cream);
}

/* Utility Classes */
.text-primary-purple { color: var(--primary-purple); }
.text-secondary-coral { color: var(--secondary-coral); }
.text-accent-mint { color: var(--accent-mint-dark); }

.bg-primary-purple { background-color: var(--primary-purple); }
.bg-secondary-coral { background-color: var(--secondary-coral); }
.bg-accent-mint { background-color: var(--accent-mint); }
.bg-neutral-cream { background-color: var(--neutral-cream); }

.section-title {
  font-size: 2.5rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-charcoal-dark);
}

.section-subtitle {
  font-size: 1.25rem;
  text-align: center;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.section-desc {
  text-align: center;
  color: var(--text-charcoal-light);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
} 


/* 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;
    }
}
