:root {
  /* 5 Primary Pastel High-Contrast Colors */
  --primary-mint: #A7F3D0;
  --primary-lavender: #C7D2FE;
  --primary-coral: #FECACA;
  --primary-amber: #FEF3C7;
  --primary-sky: #BAE6FD;
  
  /* Light & Dark Shades */
  --mint-light: #D1FAE5;
  --mint-dark: #065F46;
  --lavender-light: #E0E7FF;
  --lavender-dark: #3730A3;
  --coral-light: #FEF2F2;
  --coral-dark: #991B1B;
  --amber-light: #FFFBEB;
  --amber-dark: #92400E;
  --sky-light: #F0F9FF;
  --sky-dark: #0C4A6E;
  
  /* Conservative Typography */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-h1: 2rem;
  --font-size-h2: 1.75rem;
  --font-size-h3: 1.5rem;
  --font-size-h4: 1.25rem;
  --font-size-navbar-brand: 1.25rem;
}

/* Conservative Typography Overrides */
body {
  font-size: var(--font-size-base);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--lavender-dark);
}

h1 {
  font-size: var(--font-size-h1);
  font-weight: 600;
  color: var(--lavender-dark);
}

h2 {
  font-size: var(--font-size-h2);
  font-weight: 600;
  color: var(--lavender-dark);
}

h3 {
  font-size: var(--font-size-h3);
  font-weight: 500;
  color: var(--mint-dark);
}

h4 {
  font-size: var(--font-size-h4);
  font-weight: 500;
}

p {
  font-size: var(--font-size-base);
  margin-bottom: 1rem;
}

.navbar-brand {
  font-size: var(--font-size-navbar-brand);
  font-weight: 600;
  color: var(--lavender-dark);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--sky-light) 0%, var(--mint-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
}

.hero-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-lavender);
  border-radius: 50% 30% 50% 30%;
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.hero-decoration:nth-child(2) {
  top: 20%;
  right: 10%;
  background: var(--primary-coral);
  animation-delay: -2s;
}

.hero-decoration:nth-child(3) {
  bottom: 20%;
  left: 5%;
  background: var(--primary-amber);
  animation-delay: -4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* Section Backgrounds */
.section-mint { background-color: var(--mint-light); }
.section-lavender { background-color: var(--lavender-light); }
.section-coral { background-color: var(--coral-light); }
.section-amber { background-color: var(--amber-light); }
.section-sky { background-color: var(--sky-light); }

/* Cards & Components */
.ai-card {
  background: white;
  border: 2px solid var(--primary-lavender);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.ai-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-mint);
}

.price-card {
  background: white;
  border: 2px solid var(--primary-sky);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-mint), var(--primary-sky));
}

.price-featured {
  border-color: var(--primary-coral);
  transform: scale(1.05);
}

.team-member {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--primary-mint);
  margin: 0 auto 1rem;
  overflow: hidden;
}

/* Buttons */
.btn-ai-primary {
  background: linear-gradient(135deg, var(--primary-mint), var(--primary-sky));
  border: none;
  color: var(--lavender-dark);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-ai-primary:hover {
  background: linear-gradient(135deg, var(--primary-sky), var(--primary-lavender));
  transform: translateY(-2px);
  color: white;
}

.btn-ai-secondary {
  background: transparent;
  border: 2px solid var(--primary-lavender);
  color: var(--lavender-dark);
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-ai-secondary:hover {
  background: var(--primary-lavender);
  color: white;
}

/* Form Styling */
.form-control {
  border: 2px solid var(--primary-sky);
  border-radius: 10px;
  padding: 12px 15px;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-mint);
  box-shadow: 0 0 0 0.2rem rgba(167, 243, 208, 0.25);
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--primary-sky);
}

.nav-link {
  color: var(--lavender-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--mint-dark);
}

/* Footer */
.footer {
  background: var(--lavender-dark);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-link {
  color: var(--primary-mint);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--primary-sky);
}

/* Analytics-specific elements */
.analytics-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 24px;
}

.diversity-badge {
  background: var(--primary-coral);
  color: var(--coral-dark);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: var(--font-size-small);
  font-weight: 500;
  display: inline-block;
}

.ai-stat {
  text-align: center;
  padding: 1.5rem;
}

.ai-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--mint-dark);
  display: block;
}

.ai-stat-label {
  color: var(--lavender-dark);
  font-size: var(--font-size-small);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Breadcrumb styling */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Accessibility: Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .hero-decoration {
    animation: none;
  }
}

/* Process Steps */
.process-step {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 3rem;
}

.process-number {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--primary-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--amber-dark);
  font-size: 1.25rem;
}

/* Gallery Grid */
.gallery-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
}

/* FAQ Cards */
.faq-card {
  background: white;
  border: 1px solid var(--primary-sky);
  border-radius: 10px;
  margin-bottom: 1rem;
  padding: 1.5rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
  font-weight: 600;
  color: var(--lavender-dark);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--mint-dark);
  font-size: var(--font-size-small);
  line-height: 1.6;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 15px;
  height: 15px;
  background: var(--primary-coral);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--coral-light);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 30px;
  bottom: -20px;
  width: 1px;
  background: var(--coral-light);
}

.timeline-item:last-child::before {
  display: none;
} 

.hero-section h1 {
    padding-top: 175px;
}


/* 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;
    }
}
