/* User-Testing Recruitment Platform - Main CSS */
/* Bootstrap 5 Integration - No overrides allowed */

/* CSS Variables - Professional User Testing Platform Theme */
:root {
  /* Primary Color Palette - 5 colors as required */
  --primary-blue: #2563eb;        /* Professional trust blue */
  --primary-green: #10b981;       /* Success/action green */
  --primary-purple: #8b5cf6;      /* Innovation purple */
  --primary-orange: #f59e0b;      /* Attention/highlight orange */
  --primary-gray: #6b7280;        /* Neutral professional gray */
  
  /* Light shades */
  --light-blue: #dbeafe;
  --light-green: #d1fae5;
  --light-purple: #ede9fe;
  --light-orange: #fef3c7;
  --light-gray: #f9fafb;
  
  /* Dark shades */
  --dark-blue: #1e40af;
  --dark-green: #047857;
  --dark-purple: #7c3aed;
  --dark-orange: #d97706;
  --dark-gray: #374151;
  
  /* Typography */
  --font-size-small: 0.875rem;    /* 14px - conservative sizing */
  --font-size-base: 1rem;         /* 16px */
  --font-size-lg: 1.125rem;       /* 18px */
  --font-size-xl: 1.25rem;        /* 20px - conservative h1 */
  --font-size-xxl: 1.5rem;        /* 24px - max for hero */
  
  /* Spacing */
  --section-padding: 4rem 0;
  --content-max-width: 1200px;
}

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

/* Conservative Typography */
.navbar-brand {
  font-size: var(--font-size-lg) !important; /* Conservative navbar size */
  font-weight: 600;
  color: var(--primary-blue);
}

h1 {
  font-size: var(--font-size-xxl); /* Conservative h1 size */
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h2 {
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 0.875rem;
}

h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

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

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

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

.section-subtitle {
  color: var(--primary-gray);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-desc {
  color: var(--dark-gray);
  text-align: center;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 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-content {
  z-index: 2;
  position: relative;
    padding-top: 225px;
}

/* Decorative shapes for hero */
.hero-section::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: var(--primary-blue);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -75px;
  left: -75px;
  width: 300px;
  height: 300px;
  background: var(--primary-green);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
}

/* Services Section */
.services-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

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

.services-price {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary-green);
  margin-top: 1rem;
}

/* Features Section */
.features-item {
  text-align: center;
  padding: 1.5rem;
}

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

/* Team Section */
.team-member {
  text-align: center;
  margin-bottom: 2rem;
}

.team-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--light-blue);
}

/* Reviews Section - Static Cards Only */
.review-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--primary-green);
  height: 100%;
  margin-bottom: 1.5rem;
}

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

/* FAQ Section - Static Cards Only */
.faq-card {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--light-gray);
}

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

.faq-answer {
  color: var(--dark-gray);
  margin-bottom: 0;
}

/* Contact Form */
.contact-form {
  background: var(--light-gray);
  padding: 2rem;
  border-radius: 12px;
}

.form-control {
  border: 1px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1rem;
}

.form-control:focus {
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

/* Contact Info */
.contact-info {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

.contact-info-item i {
  width: 40px;
  height: 40px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-blue);
}

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

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

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

.footer-section {
  margin-bottom: 2rem;
}

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

.footer-links a {
  color: #d1d5db;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
}

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

/* Breadcrumb - Image only, no text */
.breadcrumb {
  background: transparent;
  padding: 1rem 0;
}

.breadcrumb-item img {
  height: 20px;
  width: auto;
}

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

/* Utility Classes */
.text-primary-blue { color: var(--primary-blue); }
.text-primary-green { color: var(--primary-green); }
.text-primary-purple { color: var(--primary-purple); }
.text-primary-orange { color: var(--primary-orange); }
.text-primary-gray { color: var(--primary-gray); }

.bg-light-blue { background-color: var(--light-blue); }
.bg-light-green { background-color: var(--light-green); }
.bg-light-purple { background-color: var(--light-purple); }
.bg-light-orange { background-color: var(--light-orange); }
.bg-light-gray { background-color: var(--light-gray); }

/* Price Plan Cards */
.priceplan-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--light-gray);
  height: 100%;
  position: relative;
}

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

.priceplan-price {
  font-size: 2rem;
  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 var(--light-gray);
}

.priceplan-features li:last-child {
  border-bottom: none;
}

/* Case Study Cards */
.casestudy-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-left: 4px solid var(--primary-purple);
}

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

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

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

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

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

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

/* Career Cards */
.career-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--light-gray);
  height: 100%;
}

.career-role {
  color: var(--primary-green);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

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

.coreinfo-item {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--primary-orange);
}

/* Blog Section */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-link {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: 600;
}

.blog-link:hover {
  color: var(--dark-blue);
}


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