/* ============================================
   Career Page Styles
   ============================================ */

/* Reset and Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #f46f5d;
  --primary-hover: #ef6755;
  --secondary: #6c757d;
  --light: #f8f9fa;
  --dark: #343a40;
  --border: #e9ecef;
  --text: #212529;
  --text-light: #6c757d;
  --white: #ffffff;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

/* Typography */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background-color: #f5f7fa;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-hover);
  text-decoration: none;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  padding: 4rem 0;
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

.section-header p {
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* ===== WHY JOIN RURALSHORES ===== */
.why-join {
  padding: 5rem 0;
  background-color: #f9fafc;
  position: relative;
  overflow: hidden;
}

.why-join .section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.why-join h2 {
  color: #2d3748;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.why-join h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #f46f5d;
  border-radius: 2px;
}

.why-join .section-header p {
  color: #4a5568;
  font-size: 1.25rem;
  max-width: 700px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.benefit-card {
  background: #fff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #f46f5d, #f68c7c);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
  height: 6px;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: rgba(244, 111, 93, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: #f46f5d;
  transform: rotate(5deg) scale(1.05);
}

.benefit-icon i {
  font-size: 2rem;
  color: #f46f5d;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
  color: white;
}

.benefit-card h3 {
  font-size: 1.5rem;
  color: #2d3748;
  margin-bottom: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.benefit-card p {
  color: #4a5568;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.benefit-link {
  display: inline-flex;
  align-items: center;
  color: #f46f5d;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #e2e8f0;
  width: 100%;
}

.benefit-link i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-link {
  color: #e05a4a;
}

.benefit-card:hover .benefit-link i {
  transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 1199px) {
  .benefits-grid {
    gap: 1.5rem;
  }
  
  .benefit-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 991px) {
  .why-join {
    padding: 4rem 0;
  }
  
  .why-join h2 {
    font-size: 2.25rem;
  }
  
  .benefit-card h3 {
    font-size: 1.375rem;
  }
  
  .benefit-card p {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .why-join h2 {
    font-size: 2rem;
  }
  
  .why-join .section-header p {
    font-size: 1.125rem;
  }
}

@media (max-width: 575px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .why-join {
    padding: 3.5rem 0;
  }
  
  .why-join h2 {
    font-size: 1.875rem;
  }
  
  .why-join .section-header {
    margin-bottom: 2.5rem;
  }
  
  .benefit-card {
    padding: 1.75rem 1.5rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }
  
  .benefit-icon i {
    font-size: 1.75rem;
  }
  
  .benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }
}

/* ===== TALENT NETWORK ===== */
.talent-pool {
  background-color: #f8fafc;
  padding: 4rem 0;
}

.talent-pool__header {
  text-align: center;
  margin-bottom: 3rem;
}

.talent-pool__header h2 {
  font-size: 2.25rem;
  color: #1e293b;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.talent-pool__header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #f46f5d, #ff9f4b);
  border-radius: 2px;
}

.talent-pool__header .subtitle {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.talent-pool__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Talent Cards */
.talent-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.talent-card--benefits {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.talent-card--benefits::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  z-index: 1;
}

.talent-card--form {
  background: #fff;
  border: 1px solid #e2e8f0;
}

.talent-card__icon {
  font-size: 2.5rem;
  color: #f46f5d;
  margin-bottom: 1.5rem;
  z-index: 2;
  position: relative;
}

.talent-card--benefits .talent-card__icon {
  color: #f46f5d;
}

.talent-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: inherit;
  position: relative;
  z-index: 2;
}

/* Benefits List */
.talent-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: rgba(244, 111, 93, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #f46f5d;
  font-size: 1.1rem;
}

.benefit-content h4 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  color: #fff;
  font-weight: 600;
}

.benefit-content p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* Form Styles */
.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h3 {
  font-size: 1.5rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: #64748b;
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #94a3b8;
  font-size: 1rem;
  z-index: 1;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #334155;
  background-color: #fff;
  transition: all 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: #f46f5d;
  box-shadow: 0 0 0 3px rgba(244, 111, 93, 0.15);
  outline: none;
}

.input-group textarea {
  min-height: 120px;
  resize: vertical;
  padding-top: 1rem;
  line-height: 1.5;
}

/* File Upload */
.file-upload {
  position: relative;
  width: 100%;
}

.file-upload__wrapper {
  position: relative;
  width: 100%;
}

.file-upload__label {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  border: 2px dashed #e2e8f0;
  border-radius: 8px;
  background-color: #f8fafc;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.file-upload__label:hover {
  border-color: #cbd5e1;
  background-color: #f1f5f9;
}

.file-upload__label i {
  font-size: 1.25rem;
  color: #94a3b8;
  margin-right: 1rem;
}

.file-upload__text {
  flex: 1;
  color: #64748b;
  font-size: 0.95rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-upload__filename {
  color: #334155;
  font-weight: 500;
  margin-left: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 200px;
}

.file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

/* Checkbox */
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  margin: 1.5rem 0;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.checkbox-container:hover input ~ .checkmark {
  border-color: #94a3b8;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #f46f5d;
  border-color: #f46f5d;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.checkbox-label a {
  color: #f46f5d;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.checkbox-label a:hover {
  color: #e05a4a;
  text-decoration: underline;
}

/* Success Message */
.success-message {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.success-icon {
  color: #22c55e;
  font-size: 1.75rem;
}

.success-content h4 {
  color: #166534;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.success-content p {
  color: #15803d;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .talent-pool__content {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
  
  .talent-card--benefits {
    order: 2;
  }
  
  .talent-card--form {
    order: 1;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .talent-pool__header h2 {
    font-size: 1.75rem;
  }
  
  .talent-pool__header .subtitle {
    font-size: 1rem;
  }
  
  .talent-card {
    padding: 1.5rem;
  }
  
  .success-message {
    flex-direction: column;
    text-align: center;
  }
  
  .success-icon {
    margin-bottom: 0.5rem;
  }
}

/* Culture Cards */
.culture-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.culture-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.culture-card__image {
  position: relative;
  padding-top: 60%; /* 5:3 aspect ratio */
  overflow: hidden;
}

.culture-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.culture-card:hover .culture-card__image img {
  transform: scale(1.05);
}

.culture-card__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.culture-card__content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  font-weight: 600;
}

.culture-card__content p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1;
}

.culture-card__stats {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.culture-card__stats span {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-light);
}

.culture-card__stats i {
  color: var(--primary);
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .culture-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .culture-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .culture-cards {
    grid-template-columns: 1fr;
  }
  
  .culture-card {
    max-width: 100%;
  }
}

/* Form Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn--primary {
  background-color: #f46f5d;
  color: white;
  box-shadow: 0 4px 6px -1px rgba(244, 111, 93, 0.3), 0 2px 4px -1px rgba(244, 111, 93, 0.2);
}

.btn--primary:hover {
  background-color: #e05a4a;
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(244, 111, 93, 0.3), 0 4px 6px -2px rgba(244, 111, 93, 0.2);
}

.btn--block {
  display: flex;
  width: 100%;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(3px);
}

/* Buttons */
.btn {
  display: inline-block;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.625rem 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 4px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

.btn-outline {
  color: var(--primary);
  background-color: transparent;
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: rgba(0, 86, 179, 0.05);
  color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Job Search and Filters */
.job-search {
  background-color: #f8f9fa;
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  margin-bottom: 1.5rem;
}

.search-box {
  flex: 3;
  min-width: 400px;
  max-width: 800px;
  position: relative;
  margin-right: 1.5rem;
}

.search-box i {
  position: absolute;
  left: 12px;
  top: 70%;
  transform: translateY(-50%);
  color: #666;
}

.search-box input[type="text"] {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.search-box input[type="text"]:focus {
  outline: none;
  border-color: #f46f5d;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.filter-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: nowrap;
  align-items: center;
  margin: 0;
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

.filter-group label {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.filter-select {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: white;
  font-size: 0.85rem;
  color: #333;
  min-width: 140px;
  max-width: 160px;
  cursor: pointer;
  height: 38px;
  box-sizing: border-box;
}

.filter-select:focus {
  outline: none;
  border-color: #f46f5d;
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

.clear-filters-btn {
  padding: 0.35rem 0.75rem;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  color: #495057;
  transition: all 0.2s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-right: 0.5rem;
}

.clear-filters-btn:hover {
  background-color: #e9ecef;
  color:#f46f5d;
  text-decoration: none;
}

.clear-filters-btn:active {
  background-color: #dee2e6;
  transform: translateY(1px);
}

.clear-filters-btn:hover {
  color: #f46f5d;
  text-decoration: underline;
}

.clear-filters-btn:active {
  color: #f46f5d;
}

/* Hero Section */
.career-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 4rem;
  position: relative;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-image {
  flex: 1;
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}

.floating-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(44, 123, 229, 0.1);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: -30px;
  right: -30px;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: #f46f5d;
  color: white;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: #f46f5d
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 123, 229, 0.3);
}

.btn-outline {
  background: transparent;
  color: #f46f5d;
  border: 2px solid #2c7be5;
}

.btn-outline:hover {
  background: rgba(44, 123, 229, 0.1);
  transform: translateY(-2px);
}

.eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #f46f5d;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1a365d;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 2rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(2deg); }
}

/* Responsive styles */
@media (max-width: 1024px) {
  .hero-container {
    gap: 3rem;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  .lead {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-content {
    max-width: 100%;
    padding-right: 0;
  }
  
  .cta-buttons {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 2rem;
    order: -1;
  }
  
  .floating-shape {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .career-hero {
    padding: 80px 0 60px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

.career-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
  line-height: 1.2;
}

.career-hero p.lead {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.career-hero__image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.career-hero__image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.career-hero__image img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Why Join Us Section */
.why-join {
  background-color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
  text-align: center;
}

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

.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(44, 123, 229, 0.1);
  transition: all 0.3s ease;
  perspective: 1000px;
}

.benefit-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--primary);
  transition: transform 0.6s ease, stroke 0.3s ease;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.benefit-icon::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--primary);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.6s ease;
  backface-visibility: hidden;
}

.benefit-card:hover .benefit-icon {
  background: transparent;
  transform: translateY(-5px);
}

.benefit-card:hover .benefit-icon svg {
  transform: rotateY(180deg);
  stroke: transparent;
}

.benefit-card:hover .benefit-icon::before {
  opacity: 1;
  transform: rotateY(0);
}

/* Icon-specific adjustments */
.benefit-card:nth-child(1) .benefit-icon::before {
  content: '🌱';
  font-size: 36px;
  line-height: 80px;
}

.benefit-card:nth-child(2) .benefit-icon::before {
  content: '📚';
  font-size: 36px;
  line-height: 80px;
}

.benefit-card:nth-child(3) .benefit-icon::before {
  content: '🤝';
  font-size: 36px;
  line-height: 80px;
}

.benefit-card:nth-child(4) .benefit-icon::before {
  content: '📈';
  font-size: 36px;
  line-height: 80px;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.benefit-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Job Listings */
.jobs__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.jobcard {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1.75rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.jobcard:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #d1d9e6;
}

.jobcard__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #2c3e50;
}

.jobcard__meta {
  display: flex;
  gap: 0.75rem;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.jobcard__meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.jobcard__meta i {
  font-size: 0.9em;
  color: #6c757d;
}

.jobcard__desc {
  color: #495057;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.jobcard__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.jobcard__tags .tag {
  background-color: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.jobcard__tags .tag:hover {
  background-color: #dee2e6;
}

.jobcard__footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid #edf2f7;
  width: 100%;
}

.jobcard__actions {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}

.jobcard__actions .btn-cta,
.jobcard__actions .btn {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.jobcard__actions .btn-cta {
  background: #f8fafc;
  color: #f46f5d;
  border: 1px solid #e2e8f0;
}

.jobcard__actions .btn-cta:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
  text-decoration: none;
}

.jobcard__actions .btn {
  background: #f46f5d;
  color: white;
  border: 1px solid transparent;
}

.jobcard__actions .btn:hover {
  background: #f46f5d;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Make buttons stack on mobile */
@media (max-width: 480px) {
  .jobcard__actions {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .jobcard__actions .btn-cta,
  .jobcard__actions .btn {
    width: 100%;
  }
}

.jobcard__apply {
  background-color: #f46f5d;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-size: 0.9rem;
}

.jobcard__apply:hover {
  background-color: #f46f5d;
  color: white;
  text-decoration: none;
}

/* No Results Message */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  margin-top: 1rem;
}

.no-results i {
  font-size: 2.5rem;
  color: #6c757d;
  margin-bottom: 1rem;
  display: block;
}

.no-results h3 {
  color: #343a40;
  margin-bottom: 0.5rem;
}

.no-results p {
  color: #6c757d;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* Responsive Adjustments */
/* Talent Pool Section */
.talent-pool {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  text-align: center;
}

.talent-pool__content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 8px;
  padding: 3rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.talent-pool h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.talent-pool p {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.talent-pool__benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 2rem 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 500;
}

.benefit-item i {
  font-size: 1.25rem;
}

.talent-form {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .career-hero .container {
    flex-direction: column;
    text-align: center;
  }
  
  .career-hero__content {
    padding-right: 0;
    margin-bottom: 3rem;
    max-width: 100%;
  }
  
  .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .jobs__list {
    grid-template-columns: 1fr;
  }
  
  .search-filters {
    flex-direction: column;
    gap: 1rem;
  }
  
  .filter-group {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  
  .filter-select {
    min-width: calc(50% - 0.5rem);
  }
  
  .clear-filters-btn {
    margin: 0.5rem 0 0;
    width: 100%;
    justify-content: center;
  }
  
  .career-hero h1 {
    font-size: 2.25rem;
  }
  
  .career-hero p.lead {
    font-size: 1.1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .career-hero {
    padding: 3rem 0;
  }
  
  .career-hero h1 {
    font-size: 2rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .jobcard__meta {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .jobcard__meta .sep {
    display: none;
  }
  
  .search-filters {
    flex-direction: column;
    gap: 1rem;
  }
  
  .search-box {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .filter-group {
    width: 100%;
    display: flex;
    gap: 1rem;
  }
  
  .filter-select {
    min-width: 100%;
  }
  
  .filter-select:first-child {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .clear-filters-btn {
    align-self: stretch;
    margin-top: 0.5rem;
  }
  
  .jobs__list {
    grid-template-columns: 1fr;
  }
}

/* ===== JOB DETAIL MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
  overflow-y: auto;
  transition: all 0.3s ease;
  opacity: 0;
  padding: 2rem 1rem;
}

.modal.show {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  opacity: 1;
}

.modal-content {
  background-color: white;
  border-radius: 12px;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  margin: 2rem 0;
}

.modal.show .modal-content {
  transform: translateY(0);
}

.modal-header {
  padding: 2rem 2.5rem 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #e2e8f0;
}

.modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
}

.modal-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.3;
  padding-right: 2.5rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(99, 102, 241, 0.1);
  padding: 0.4rem 0.9rem;
  border-radius: 20px;
  color: #f46f5d;
  font-weight: 500;
  font-size: 0.9rem;
}

.job-meta i {
  font-size: 0.9em;
  color: #f46f5d;
}

.modal-header .close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  margin: 0;
  padding: 0;
}

.modal-header .close:hover {
  color: #ef4444;
  transform: rotate(90deg);
  background: #fef2f2;
  border-color: #fecaca;
}

.modal-body {
  padding: 2rem 2.5rem;
  position: relative;
}

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

.job-section:last-child {
  margin-bottom: 0;
}

.modal-body h3 {
  color: #0f172a;
  margin: 2rem 0 1.25rem;
  font-size: 1.35rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.75rem;
}

.modal-body h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f46f5d, #ff9f4b);
  border-radius: 2px;
}

.modal-body p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
}

.modal-body ul,
.modal-body ol {
  padding-left: 1.5rem;
  margin: 1.25rem 0;
}

.modal-body ul {
  list-style: none;
  padding-left: 0;
}

.modal-body ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #475569;
  line-height: 1.6;
}

.modal-body ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #f46f5d;
  font-weight: bold;
  font-size: 1.5em;
  line-height: 1;
  top: 0.1em;
}

.modal-body ol {
  list-style-type: decimal;
  padding-left: 1.5rem;
}

.modal-body ol li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  color: #475569;
  line-height: 1.6;
}

/* Application Form */
.application-form {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e2e8f0;
}

.application-form h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-top: 0 !important;
  margin-bottom: 1.5rem !important;
}

.application-form .form-group {
  margin-bottom: 1.5rem;
}

.application-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #334155;
  font-size: 0.95rem;
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea,
.application-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  color: #334155;
  background-color: #fff;
  transition: all 0.3s ease;
}

.application-form input:focus,
.application-form textarea:focus,
.application-form select:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(147, 197, 253, 0.2);
  outline: none;
}

.application-form textarea {
  min-height: 120px;
  resize: vertical;
}

.application-form .file-upload {
  position: relative;
  margin-top: 0.5rem;
}

.application-form .file-upload input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.application-form .file-upload-label {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: 8px;
  background-color: #f8fafc;
  color: #475569;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.95rem;
}

.application-form .file-upload-label:hover {
  background-color: #f1f5f9;
  border-color: #94a3b8;
}

.application-form .file-upload-label i {
  margin-right: 0.75rem;
  color: #64748b;
}

.application-form .form-actions {
  margin-top: 2rem;
  display: flex;
  justify-content: flex-end;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .modal-content {
    margin: 1rem 0;
  }
  
  .modal-header,
  .modal-body {
    padding: 1.5rem;
  }
  
  .modal-header h2 {
    font-size: 1.5rem;
    padding-right: 2rem;
  }
  
  .job-meta {
    gap: 0.75rem;
  }
  
  .job-meta span {
    font-size: 0.85rem;
    padding: 0.3rem 0.75rem;
  }
  
  .modal-body h3 {
    font-size: 1.25rem;
    margin: 1.75rem 0 1.25rem;
  }
  
  .application-form {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}

@media (max-width: 480px) {
  .modal {
    padding: 1rem 0.5rem;
  }
  
  .modal-header,
  .modal-body {
    padding: 1.25rem;
  }
  
  .modal-header h2 {
    font-size: 1.35rem;
  }
  
  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .job-meta span {
    width: fit-content;
  }
  
  .modal-body h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem;
  }
  
  .application-form .form-actions {
    justify-content: stretch;
  }
  
  .application-form .btn-cta {
    width: 100%;
  }
}
}

.btn-apply {
  background-color: #f46f5d;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
}

.btn-apply:hover {
  background-color: #f46f5d;
  color: white;
  text-decoration: none;
}

.btn-close {
  background-color: #6c757d;
  color: white;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.btn-close:hover {
  background-color: #5a6268;
  color: white;
}

/* ============================================
   Talent Network Section
   ============================================ */
.talent-network {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  background-color: #f9fafc;
}

.talent-network__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.talent-network__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.talent-network__content {
  display: flex;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Left Side - Colored Background */
.talent-network__info {
  flex: 1;
  background: linear-gradient(160deg, #f46f5d 0%, #ef6755 100%);
  color: white;
  padding: 4rem 3rem;
  position: relative;
  z-index: 1;
}

.talent-network__info::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
  opacity: 0.6;
  z-index: -1;
}

.talent-network__info h2 {
  font-size: 2.25rem;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
}

.talent-network__info .subtitle {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  color: #e2e8f0;
}

.talent-network__info h3 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.5rem;
  color: white;
  position: relative;
  padding-bottom: 0.75rem;
}

.talent-network__info h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #f46f5d;
  border-radius: 2px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  margin-bottom: 1.25rem;
  padding-left: 2.5rem;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #e2e8f0;
}

.benefits-list li i {
  position: absolute;
  left: 0;
  top: 0.25rem;
  color: #f46f5d;
  font-size: 1.1rem;
  width: 1.5rem;
  text-align: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item i {
  font-size: 1.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.benefit-item:hover i {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.benefit-item p {
  font-size: 0.95rem;
  opacity: 0.9;
  line-height: 1.5;
  margin: 0;
}

/* Right Side - Form */
.talent-network__form {
  flex: 1;
  padding: 4rem 3rem;
  background: white;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}

.form-container h3 {
  font-size: 1.75rem;
  color: #2d3748;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.form-intro {
  color: #4a5568;
  margin-bottom: 2rem;
  font-size: 1rem;
  line-height: 1.6;
}

.talent-form .form-group {
  margin-bottom: 1.25rem;
}

.talent-form .form-row {
  display: flex;
  gap: 1.25rem;
  margin: 0 -0.625rem;
}

.talent-form .form-row .form-group {
  flex: 1;
  margin-bottom: 1.25rem;
}

.talent-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4a5568;
  font-size: 0.9rem;
}

.talent-form .required {
  color: #e53e3e;
  margin-left: 2px;
}

.talent-form .input-group {
  position: relative;
}

.talent-form input[type="text"],
.talent-form input[type="email"],
.talent-form input[type="tel"],
.talent-form select,
.talent-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  background-color: #f8fafc;
}

.talent-form input[type="text"]:focus,
.talent-form input[type="email"]:focus,
.talent-form input[type="tel"]:focus,
.talent-form select:focus,
.talent-form textarea:focus {
  outline: none;
  border-color: #f46f5d;
  box-shadow: 0 0 0 3px rgba(244, 111, 93, 0.1);
  background-color: white;
}

.talent-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%237b8a9a' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  padding-right: 2.5rem;
}

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

.file-upload input[type="file"] {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: #f8fafc;
  border: 1px dashed #cbd5e0;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100px;
}

.file-upload-label:hover {
  border-color: #a0aec0;
  background-color: #f0f4f8;
}

.file-upload-label i {
  font-size: 1.5rem;
  color: #718096;
  margin-bottom: 0.5rem;
}

.file-upload-label span {
  font-size: 0.9rem;
  color: #4a5568;
}

.file-name {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #718096;
  font-style: italic;
}

/* Checkbox */
.form-group--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-group--checkbox input[type="checkbox"] {
  margin-top: 0.25rem;
}

.form-group--checkbox label {
  margin-bottom: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-group--checkbox a {
  color: #f46f5d;
  text-decoration: none;
  font-weight: 500;
}

.form-group--checkbox a:hover {
  text-decoration: underline;
}

/* Submit Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #f46f5d;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  margin-top: 0.5rem;
}

.btn-primary:hover {
  background-color: #e05a48;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(244, 111, 93, 0.2);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary i {
  font-size: 1rem;
}

.form-note {
  font-size: 0.85rem;
  color: #718096;
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.5;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .talent-network__content {
    flex-direction: column;
  }
  
  .talent-network__info,
  .talent-network__form {
    padding: 3rem 2rem;
  }
  
  .form-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .talent-network {
    padding: 3rem 0;
  }
  
  .talent-network__info h2 {
    font-size: 1.875rem;
  }
  
  .talent-network__form h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .talent-network {
    padding: 2.5rem 0;
  }
  
  .talent-network__info,
  .talent-network__form {
    padding: 2rem 1.5rem;
  }
  
  .talent-network__info h2 {
    font-size: 1.625rem;
  }
  
  .talent-network__info .subtitle {
    font-size: 1.1rem;
  }
  
  .talent-network__info h3 {
    font-size: 1.375rem;
  }
  
  .talent-network__info h2 {
    font-size: 1.75rem;
  }
  
  .talent-form .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .benefit-item i {
    margin: 0 auto 0.75rem;
  }
}
