/* Employee Engagement Pulse-Survey SaaS Template */

:root {
  /* Primary Color Palette - 5 colors with light/dark shades */
  --primary-blue: #3B82F6;
  --primary-blue-light: #93C5FD;
  --primary-blue-dark: #1E40AF;
  
  --secondary-purple: #8B5CF6;
  --secondary-purple-light: #C4B5FD;
  --secondary-purple-dark: #5B21B6;
  
  --accent-teal: #14B8A6;
  --accent-teal-light: #7DD3FC;
  --accent-teal-dark: #0D9488;
  
  --neutral-gray: #6B7280;
  --neutral-gray-light: #F3F4F6;
  --neutral-gray-dark: #374151;
  
  --success-green: #10B981;
  --success-green-light: #A7F3D0;
  --success-green-dark: #047857;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --line-height-base: 1.6;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --border-radius: 0.75rem;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: var(--line-height-base);
  color: var(--neutral-gray-dark);
}

/* Conservative font sizes for key elements */
.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-blue);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

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

/* Section Styling */
.section {
  padding: var(--section-padding);
}

.section-title {
  color: var(--primary-blue-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--secondary-purple);
  font-size: var(--font-size-lg);
  margin-bottom: 1.5rem;
}

.section-desc {
  color: var(--neutral-gray);
  font-size: var(--font-size-base);
  margin-bottom: 3rem;
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: var(--accent-teal-light);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Button Styles */
.btn-primary {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-blue-dark);
  border-color: var(--primary-blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

.btn-outline-secondary {
  border-color: var(--secondary-purple);
  color: var(--secondary-purple);
  border-radius: var(--border-radius);
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-outline-secondary:hover {
  background-color: var(--secondary-purple);
  border-color: var(--secondary-purple);
}

/* Card Styles */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  background-color: var(--neutral-gray-light);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

/* Service Cards */
.service-card {
  text-align: center;
  padding: 2rem;
  height: 100%;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--success-green);
  margin-top: 1rem;
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  text-align: center;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--accent-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
}

/* About Features */
.about-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.about-feature-icon {
  width: 40px;
  height: 40px;
  background: var(--secondary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Team Cards */
.team-card {
  text-align: center;
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.team-photo {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: var(--neutral-gray-light);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--neutral-gray-dark);
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--secondary-purple);
  font-size: var(--font-size-sm);
}

/* Price Plan Cards */
.price-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  position: relative;
  height: 100%;
}

.price-card.featured {
  border: 2px solid var(--primary-blue);
  transform: scale(1.05);
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-blue);
  margin: 1rem 0;
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-gray-light);
}

/* Review Cards */
.review-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

.review-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--neutral-gray);
}

.review-author {
  font-weight: 600;
  color: var(--neutral-gray-dark);
}

/* Case Study Cards */
.casestudy-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 2rem;
}

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

/* Timeline */
.timeline-item {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2rem;
}

/* Career Cards */
.career-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  height: 100%;
}

/* Core Info Cards */
.coreinfo-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
  height: 100%;
}

/* FAQ Cards */
.faq-card {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 1.5rem;
}

.faq-question {
  font-weight: 600;
  color: var(--neutral-gray-dark);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--neutral-gray);
}

/* Blog Cards */
.blog-card {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  height: 100%;
}

.blog-image {
  width: 100%;
  height: 200px;
  background: var(--neutral-gray-light);
}

.blog-content {
  padding: 1.5rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 3rem;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
}

.form-control {
  border-radius: var(--border-radius);
  border: 1px solid var(--neutral-gray-light);
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base);
}

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

.contact-info {
  background: var(--primary-blue);
  color: white;
  padding: 3rem;
  border-radius: var(--border-radius);
}

.contact-info h4 {
  margin-bottom: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.contact-info-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
}

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

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

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

.footer a:hover {
  color: white;
}

.footer-divider {
  border-color: var(--neutral-gray);
  margin: 2rem 0 1rem;
}

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

.gallery-item {
  height: 250px;
  background: var(--neutral-gray-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Space Page */
#space {
  min-height: 80vh;
  background: var(--neutral-gray-light);
  border-radius: var(--border-radius);
  margin: 3rem 0;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary-blue);
}

.text-secondary-custom {
  color: var(--secondary-purple);
}

.bg-light-custom {
  background-color: var(--neutral-gray-light);
}

/* Animations - Respect prefers-reduced-motion */
@media (prefers-reduced-motion: no-preference) {
  .card,
  .btn,
  .form-control {
    transition: all 0.3s ease;
  }
}

/* No animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

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

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

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

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

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

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

.x-link i {
    display: none;
}

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