/* Careers Template Styles */
:root { 
  --brand-blue: #1b50b3; 
  --brand-sky: #52ade5; 
  --ink: #1f2a44; 
  --muted: #6b7280; 
  --bg: #f6f8fb; 
  --success: #10b981;
  --white: #ffffff;
  --yellow: #f4d03f;
  --light-gray: #f8f9fa;
}

/* Careers Hero Section */
.careers-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: linear-gradient(135deg, var(--brand-sky) 0%, var(--brand-blue) 100%);
  padding: 100px 20px 80px;
  color: white;
}

.careers-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.careers-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.careers-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 24px 0;
  line-height: 1.1;
}

.careers-content p {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 0 40px 0;
  opacity: 0.9;
}

.careers-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
}

.highlight-item svg {
  opacity: 0.8;
}

/* Form Section */
.careers-form-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: white;
  padding: 80px 20px;
}

.careers-form-container {
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.form-header {
  text-align: center;
  margin-bottom: 48px;
}

.form-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px 0;
}

.form-header p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Form Styles */
.careers-form {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 16px;
  background: white;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-sky);
  box-shadow: 0 0 0 3px rgba(82, 173, 229, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* File Upload Styles */
.file-upload {
  position: relative;
}

.file-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-input-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-input-display:hover {
  border-color: var(--brand-sky);
  background: #f8fafc;
}

.file-input-display svg {
  color: var(--muted);
}

.file-text {
  color: var(--muted);
  font-size: 16px;
}

.file-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
  margin-bottom: 0;
}

/* Checkbox Styles */
.checkbox-group {
  margin-bottom: 32px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
  background: white;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
  background: var(--brand-sky);
  border-color: var(--brand-sky);
}

.checkbox-label input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-text {
  color: var(--muted);
}

/* Submit Button */
.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-sky);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  justify-content: center;
}

.submit-btn:hover {
  background: #3ba3d9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(82, 173, 229, 0.3);
}

.submit-btn svg {
  transition: transform 0.3s ease;
}

.submit-btn:hover svg {
  transform: translateX(4px);
}

.form-note {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  margin-bottom: 0;
}

/* Why Work With Us Section */
.why-work-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: var(--light-gray);
  padding: 80px 20px;
}

.why-work-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 16px 0;
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefit-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--brand-sky);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
}

.benefit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 12px 0;
}

.benefit-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .careers-content h1 {
    font-size: 40px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .careers-highlights {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 80px 20px 60px;
  }
  
  .careers-form-section,
  .why-work-section {
    padding: 60px 20px;
  }
  
  .careers-content h1 {
    font-size: 36px;
  }
  
  .careers-content p {
    font-size: 18px;
  }
  
  .form-header h2 {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 32px;
  }
  
  .careers-form {
    padding: 32px 24px;
  }
  
  .careers-highlights {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .careers-hero {
    padding: 60px 20px 40px;
  }
  
  .careers-content h1 {
    font-size: 32px;
  }
  
  .careers-content p {
    font-size: 16px;
  }
  
  .form-header h2 {
    font-size: 28px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .careers-form {
    padding: 24px 20px;
  }
}
