/* ==========================================================================
   #CAREERS PAGE STYLES - LIGHT THEME
   ========================================================================== */

:root {
  --primary: #3b82f6;
  --primary-light: #60a5fa;
  --primary-dark: #2563eb;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-light: #f8fafc;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --card-hover: #f8fafc;
  --section-bg: #f8fafc;
}

/* Base Styles
   ========================================================================== */
body {
  background-color: var(--bg);
  color: var(--text);
  padding-top: 100px; /* Account for fixed header */
}

/* Hero Section
   ========================================================================== */
.careers-hero {
  background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
  padding: 8rem 0 6rem;
  color: var(--text);
  position: relative;
  overflow: hidden;
}

.careers-hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.careers-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--text);
}

.careers-hero p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Why Choose Us Section
   ========================================================================== */
.why-join-us {
  padding: 6rem 0;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
}

.why-join-us .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.why-join-us .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.why-join-us h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.why-join-us .section-description {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-light);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 1.05rem;
}

.stats-showcase {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  min-width: 150px;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .why-join-us {
    padding: 4rem 0;
  }
  
  .why-join-us h2 {
    font-size: 2rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-showcase {
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
  }
  
  .stat-item {
    min-width: 120px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
}

/* Benefits Section
   ========================================================================== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
}

.benefit-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  border: 1px solid var(--border);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  background-color: var(--card-hover);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(56, 189, 248, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: rgba(37, 99, 235, 0.1);
  transform: scale(1.05);
}

.benefit-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* Positions Section
   ========================================================================== */
.positions-section {
  padding: 6rem 0;
  background-color: var(--section-bg);
}

.positions-section .section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.positions-section .eyebrow {
  display: inline-block;
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.positions-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.positions-section .section-description {
  color: var(--text-light);
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.positions-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  width: 100%;
}

.position-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.position-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: var(--primary-light);
}

.position-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem;
  line-height: 1.3;
}

.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-light);
  align-items: center;
}

.position-meta i {
  margin-right: 0.4rem;
  color: var(--primary);
  width: 14px;
  text-align: center;
  font-size: 0.9em;
}

.position-requirements {
  margin: 1rem 0;
}

.position-requirements h4 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--text);
  font-weight: 600;
}

.position-requirements ul {
  padding-left: 1.25rem;
  margin: 0 0 1.25rem;
}

.position-requirements li {
  margin-bottom: 0.4rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
}

.position-card p {
  color: var(--text-light);
  margin: 0 0 1.25rem;
  line-height: 1.6;
  font-size: 0.95rem;
  flex-grow: 1;
}

.position-card .btn-outline {
  align-self: flex-start;
  margin-top: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  border-radius: 6px;
}

/* CTA Box */
.cta-box {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.cta-box h3 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
  font-size: 1.1rem;
}

.cta-box .btn {
  padding: 0.875rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .positions-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .positions-section {
    padding: 4rem 0;
  }
  
  .positions-section h2 {
    font-size: 2rem;
  }
  
  .positions-section .section-description {
    font-size: 1.1rem;
  }
  
  .positions-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-box {
    padding: 2.5rem 1.5rem;
    margin-top: 3rem;
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .position-meta {
    gap: 1rem;
  }
  
  .position-meta span {
    font-size: 0.9rem;
  }
  
  .cta-box {
    padding: 2rem 1.25rem;
  }
  
  .cta-box h3 {
    font-size: 1.4rem;
  }
  
  .cta-box p {
    font-size: 1rem;
  }
}

/* Buttons
   ========================================================================== */
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* No Positions Section
   ========================================================================== */
.no-positions {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border);
}

.no-positions-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.no-positions h3 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 700;
}

.no-positions p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.no-positions .btn-outline {
  padding: 0.75rem 2rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  border-radius: 6px;
  text-decoration: none;
}

.no-positions .btn-outline:hover {
  background: var(--primary);
  color: white;
}

/* CTA Box
   ========================================================================== */
.cta-box {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
  border: 1px solid var(--border);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.cta-box h3 {
  font-size: 1.75rem;
  color: var(--text);
  margin-bottom: 1rem;
}

.cta-box p {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Responsive Styles
   ========================================================================== */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .culture-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .careers-hero h1 {
    font-size: 2.5rem;
  }
  
  .careers-hero p {
    font-size: 1.1rem;
  }
  
  .benefits-grid,
  .positions-container {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 6rem 0 4rem;
  }
  
  .careers-hero h1 {
    font-size: 2rem;
  }
  
  .position-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .position-meta {
    width: 100%;
    flex-wrap: wrap;
  }
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: #0ea5e9;
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

.culture-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 4rem 0;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #0ea5e9;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 1;
}

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .culture-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .culture-image {
    order: -1;
  }
  
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .benefits-grid,
  .process-steps {
    grid-template-columns: 1fr;
  }
  
  .careers-hero h1 {
    font-size: 2.5rem;
  }
  
  .careers-hero p {
    font-size: 1.125rem;
  }
  
  .culture-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Section Spacing */
.section-spacing {
  padding: 6rem 0;
}

.bg-light {
  background-color: #f8fafc;
}

/* Button Styles */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background: #0ea5e9;
  color: white;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0ea5e9;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #0ea5e9;
  margin: 1.5rem auto;
  border-radius: 2px;
}

.section-intro {
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.7;
  margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 3rem 0;
}

.cta-section p {
  color: #64748b;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}
