/* User Testing Recruitment Platform - Main Styles */

:root {
  /* Primary Color Palette - Pastel High Contrast */
  --primary-blue: #69a9d1;
  --primary-green: #85d578;
  --primary-purple: #9a7dc1;
  --primary-orange: #e6aa88;
  --primary-pink: #f473b7;
  
  /* Light Shades */
  --light-blue: #d8edff;
  --light-green: #F0F9F0;
  --light-purple: #F4F0F9;
  --light-orange: #FDF4F0;
  --light-pink: #FCF0F6;
  
  /* Dark Shades */
  --dark-blue: #52819e;
  --dark-green: #639f58;
  --dark-purple: #795789;
  --dark-orange: #c97b5a;
  --dark-pink: #bb5387;
  
  /* Neutral Colors */
  --text-dark: #223245;
  --text-light: #7b8086;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  
  /* Typography */
  --font-size-base: 1rem;
  --font-size-h1: 2.5rem;
  --font-size-h2: 2rem;
  --font-size-h3: 1.5rem;
  --line-height-base: 1.6;
}

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

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

h1 { font-size: var(--font-size-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

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

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

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

.hero-section::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--primary-green);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  opacity: 0.1;
}

.hero-section::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--primary-orange);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  opacity: 0.1;
}

/* Section Styling */
.section-padding {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-subtitle {
  color: var(--primary-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* About Features */
.feature-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

.feature-icon.blue { background: var(--light-blue); color: var(--dark-blue); }
.feature-icon.green { background: var(--light-green); color: var(--dark-green); }
.feature-icon.purple { background: var(--light-purple); color: var(--dark-purple); }
.feature-icon.orange { background: var(--light-orange); color: var(--dark-orange); }

/* Services Cards */
.service-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-image {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin: 0 auto 1.5rem;
  overflow: hidden;
}

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

/* Price Plan Cards */
.price-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 2px solid var(--bg-light);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

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

.price-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.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;
  color: var(--text-light);
}

.price-features li::before {
  content: 'âœ“';
  color: var(--primary-green);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* Team Cards */
.team-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  height: 100%;
}

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

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  overflow: hidden;
  border: 4px solid var(--light-blue);
}

/* Reviews Cards */
.review-card {
  background: var(--bg-white);
  border-radius: 16px;
  padding: 2rem;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

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

/* Process Steps */
.process-step {
  text-align: center;
  position: relative;
}

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

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

.form-control {
  border: 2px solid var(--bg-light);
  border-radius: 12px;
  padding: 1rem;
  transition: border-color 0.3s ease;
}

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

/* Buttons */
.btn-primary {
  background: var(--primary-blue);
  border: none;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

.btn-outline-primary {
  border: 2px solid var(--primary-blue);
  color: var(--primary-blue);
  border-radius: 12px;
  padding: 1rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

.footer a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-blue);
}

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

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

.faq-answer {
  color: var(--text-light);
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

/* Timeline */
.timeline-item {
  position: relative;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary-blue);
}

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

.breadcrumb-image {
  width: 24px;
  height: 24px;
}

/* Reduced Motion Support */
@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: 175px;
}

/* Ensure section titles are always visible */
.section-title {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}


/* Team Social Links - Gradient Style */
.team-social-links {
    margin-top: 20px;
    padding: 18px 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 20px;
}

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

.social-link {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.social-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: inherit;
    border-radius: inherit;
    z-index: -1;
}

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

.facebook-link {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.facebook-link:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

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

.linkedin-link:hover {
    background: linear-gradient(135deg, #21cbf3 0%, #2196f3 100%);
}

.instagram-link {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.instagram-link:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
}

.x-link {
    background: linear-gradient(135deg, #232526 0%, #414345 100%);
    position: relative;
}

.x-link::after {
    content: '✦';
    font-weight: bold;
    font-size: 22px;
    z-index: 2;
    position: relative;
}

.x-link:hover {
    background: linear-gradient(135deg, #414345 0%, #232526 100%);
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 12px;
    }
    
    .social-link {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
}
