/* User-Testing Recruitment Platform - Main Styles */

:root {
  /* Primary Color Palette - Pastel High-Contrast */
  --primary-blue: #4A90E2;
  --primary-purple: #8B7EC8;
  --primary-teal: #50B7C1;
  --primary-orange: #F5A623;
  --primary-pink: #E85D75;
  
  /* Light Shades */
  --light-blue: #E8F4FD;
  --light-purple: #F1EFFC;
  --light-teal: #E8F8FA;
  --light-orange: #FEF5E8;
  --light-pink: #FDF1F3;
  
  /* Dark Shades */
  --dark-blue: #2E5F8F;
  --dark-purple: #5A4B7C;
  --dark-teal: #357A82;
  --dark-orange: #B87815;
  --dark-pink: #B74252;
  
  /* Typography */
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-size-base: 1rem;
  --font-size-sm: 0.875rem;
  --font-size-lg: 1.125rem;
  
  /* Spacing */
  --section-padding: 5rem 0;
  --element-margin: 2rem;
  
  /* Transitions */
  --transition-base: all 0.3s ease;
}

/* Global Styles */
* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

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

/* Header */
.navbar {
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.navbar-nav .nav-link {
  font-weight: 500;
  color: #333;
  margin: 0 0.5rem;
  transition: var(--transition-base);
}

.navbar-nav .nav-link:hover {
  color: var(--primary-blue);
}

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

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%234A90E2" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%238B7EC8" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%2350B7C1" opacity="0.1"/></svg>');
  pointer-events: none;
}

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

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

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

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

.section-desc {
  color: #666;
  margin-bottom: var(--element-margin);
}

/* About Features */
.about-feature {
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: var(--transition-base);
  margin-bottom: 2rem;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.about-feature i {
  font-size: 2.5rem;
  color: var(--primary-teal);
  margin-bottom: 1rem;
}

/* Services */
.service-item {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition-base);
  margin-bottom: 2rem;
  border: 2px solid transparent;
}

.service-item:hover {
  border-color: var(--primary-blue);
  transform: translateY(-3px);
}

.service-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  margin-top: 1rem;
}

/* Features */
.feature-item {
  padding: 2rem;
  background: var(--light-teal);
  border-radius: 12px;
  text-align: center;
  margin-bottom: 2rem;
}

.feature-item i {
  font-size: 2rem;
  color: var(--dark-teal);
  margin-bottom: 1rem;
}

/* Price Plans */
.priceplan-item {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  position: relative;
}

.priceplan-item.featured {
  border: 3px solid var(--primary-blue);
  transform: scale(1.05);
}

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

.priceplan-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.priceplan-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

/* Team */
.team-member {
  text-align: center;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 4px solid var(--light-blue);
}

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

/* Reviews */
.review-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  position: relative;
}

.review-item::before {
  content: '"';
  font-size: 4rem;
  color: var(--light-blue);
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  line-height: 1;
}

.review-author {
  font-weight: 600;
  color: var(--primary-blue);
  margin-top: 1rem;
}

/* Case Studies */
.casestudy-item {
  background: var(--light-pink);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
}

/* Process */
.process-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.timeline-item::before {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-teal);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.timeline-item::after {
  content: '';
  width: 2px;
  height: calc(100% + 2rem);
  background: var(--light-teal);
  position: absolute;
  left: 5px;
  top: 1rem;
}

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

/* Career */
.career-item {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-purple);
}

/* Core Info */
.coreinfo-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-orange);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.coreinfo-item i {
  font-size: 2rem;
  color: var(--dark-orange);
  margin-bottom: 1rem;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 8px;
  border: 2px solid #eee;
  padding: 0.75rem 1rem;
  transition: var(--transition-base);
}

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

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

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

/* Blog */
.blog-item {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  transition: var(--transition-base);
}

.blog-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.blog-item-content {
  padding: 1.5rem;
}

/* FAQ */
.faq-item {
  background: #fff;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
}

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

.faq-answer {
  color: #666;
  margin: 0;
}

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

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-base);
}

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

/* Footer */
.footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--light-blue);
  margin-bottom: 1rem;
}

.footer a {
  color: #bdc3c7;
  text-decoration: none;
  transition: var(--transition-base);
}

.footer a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Animation Classes for Sal.js */
.sal-animate {
  transition: var(--transition-base);
}

/* Breadcrumbs */
.breadcrumb-container {
  padding: 1rem 0;
  background: var(--light-blue);
}

.breadcrumb-image {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}


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

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 19px;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transition: all 0.4s ease;
    transform: translate(-50%, -50%);
}

.social-link:hover::before {
    width: 100px;
    height: 100px;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    color: white;
}

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

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

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

.x-link {
    background: linear-gradient(45deg, #000000, #424242, #666666);
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: 900;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.x-link i {
    display: none;
}

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