/* Employee Engagement Pulse-Survey SaaS Template - Main CSS */
/* Bootstrap 5 compliant - NO overrides or duplicates */

:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-blue: #6287fa;
  --primary-blue-light: #84a7e1;
  --primary-blue-dark: #3172d5;
  
  --primary-green: #19d77e;
  --primary-green-light: #5be396;
  --primary-green-dark: #1dad3f;
  
  --primary-purple: #904ce7;
  --primary-purple-light: #8e5dfe;
  --primary-purple-dark: #5015ca;
  
  --primary-orange: #ff9936;
  --primary-orange-light: #efb851;
  --primary-orange-dark: #ff980b;
  
  --primary-pink: #e20e41;
  --primary-pink-light: #ff769b;
  --primary-pink-dark: #d10760;
  
  /* Neutral Colors */
  --neutral-100: #f8fafc;
  --neutral-200: #e0eaf9;
  --neutral-300: #b9cae5;
  --neutral-700: #2a3a50;
  --neutral-800: #182734;
  --neutral-900: #1a2b41;
}

/* Typography - Conservative sizes */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--neutral-700);
}

.navbar-brand {
  font-size: 1.25rem; /* Conservative size */
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem; /* Conservative for h1 */
  font-weight: 700;
  color: var(--neutral-800);
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--neutral-800);
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neutral-700);
}

p {
  font-size: 1rem; /* Conservative paragraph size */
  margin-bottom: 1rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary-blue-light) 0%, var(--primary-purple-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
  animation: float 20s infinite linear;
}

@keyframes float {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
    padding-top: 275px;
}

/* Services Section */
.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

/* Team Section */
.team-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-2px);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(45deg, var(--primary-blue-light), var(--primary-purple-light));
}

/* Testimonials - Static Cards Only */
.testimonial-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: none;
  height: 100%;
}

/* FAQ - Static Cards Only */
.faq-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--neutral-200);
  margin-bottom: 1rem;
}

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

.faq-answer {
  color: var(--neutral-700);
  margin-bottom: 0;
}

/* Price Plan Cards */
.price-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: border-color 0.3s ease, transform 0.3s ease;
  height: 100%;
}

.price-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.price-card.featured {
  border-color: var(--primary-blue);
  position: relative;
}

.price-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-blue);
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Process Steps */
.process-step {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Timeline */
.timeline-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-blue);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 2rem;
}

.form-control {
  border-radius: 8px;
  border: 1px solid var(--neutral-300);
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 0.2rem rgba(70, 116, 235, 0.25);
}

.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
}

/* Gallery */
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

/* Footer - High contrast colors, no gradients */
.footer {
  background: var(--primary-green);
  color: var(--neutral-100);
  padding: 3rem 0 1rem;
}

.footer h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer a {
  color: var(--neutral-300);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: white;
}

/* Utility Classes */
.section-padding {
  padding: 5rem 0;
}

.text-primary-blue {
  color: var(--primary-blue);
}

.bg-primary-blue {
  background-color: var(--primary-blue);
}

.text-gradient {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Custom spacing */
.mb-section {
  margin-bottom: 5rem;
}

.icon-feature {
  width: 60px;
  height: 60px;
  background: var(--primary-blue-light);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.icon-feature i {
  font-size: 1.5rem;
  color: var(--primary-blue-dark);
}

/* Blog cards */
.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(45deg, var(--primary-blue-light), var(--primary-green-light));
}

/* Career cards */
.career-card {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--neutral-200);
  padding: 1.5rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.career-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Case study cards */
.case-study-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  height: 100%;
}

.case-study-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--primary-purple-light), var(--primary-pink-light));
}

/* Core info items */
.core-info-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Feature cards */
.feature-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
}

/* About feature items */
.about-feature {
  background: var(--neutral-100);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.about-feature:last-child {
  margin-bottom: 0;
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

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

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

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

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
