/* 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: #558ee8;
  --primary-blue-light: #8cc0ff;
  --primary-blue-dark: #2f6ede;
  
  --primary-green: #16d070;
  --primary-green-light: #36c180;
  --primary-green-dark: #189a61;
  
  --primary-purple: #7b51ff;
  --primary-purple-light: #aa54ff;
  --primary-purple-dark: #6018c7;
  
  --primary-orange: #ff8d51;
  --primary-orange-light: #ffad7c;
  --primary-orange-dark: #f65708;
  
  --primary-pink: #f80839;
  --primary-pink-light: #f16d9b;
  --primary-pink-dark: #b42774;
  
  /* Neutral Colors */
  --neutral-100: #f8fafc;
  --neutral-200: #deedf7;
  --neutral-300: #b0c0d7;
  --neutral-700: #45516a;
  --neutral-800: #1b2433;
  --neutral-900: #1b283f;
}

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

/* 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(88, 160, 255, 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(--neutral-700);
  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 - Rounded Style */
.team-social-links {
    margin-top: 20px;
    padding: 15px 0;
}

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

.social-link {
    display: inline-flex;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #0d6efd, #1877f2);
}

.linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, #084a8a, #0a66c2);
}

.instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #d62976, #e4405f, #f77737);
}

.x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

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

.x-link:hover {
    background: linear-gradient(135deg, #1a1a1a, #000000);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
