.job-details-main {
  margin-top: 100px;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  min-height: 100vh;
}

.job-hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: linear-gradient(135deg, #262262 0%, #27aae1 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.job-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><path d="M0,100 C300,300 700,0 1000,100 L1000,300 L0,300 Z" fill="%23ffffff" opacity="0.08"/></svg>') center/cover no-repeat;
}






.tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.job-hero h1 {
  font-size: 56px;
  font-weight: 800;
  margin: 0 0 12px;
}

.location {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
}

.quick-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.btn-apply-big {
  background: white;
  color: #262262;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  transition: all 0.3s;
}

.btn-apply-big:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.share-job span { margin-right: 12px; opacity: 0.9; }
.share-job a {
  color: white;
  font-size: 20px;
  margin: 0 8px;
  opacity: 0.8;
  transition: 0.3s;
}
.share-job a:hover { opacity: 1; transform: scale(1.2); }

/* Content Grid */
.job-content { padding: 100px 20px; }
.job-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}

.info-box, .section {
  background: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(38,34,98,0.08);
  margin-bottom: 32px;
  border: 1px solid rgba(39,170,225,0.1);
}

.info-box h2, .section h2 {
  font-size: 28px;
  color: #262262;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.info-box h2::after, .section h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #27aae1, #262262);
  border-radius: 2px;
}

.job-meta-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f4ff;
  font-size: 16px;
}
.job-meta-list li:last-child { border-bottom: none; }
.job-meta-list strong { color: #262262; }

.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #444;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27aae1;
  font-weight: bold;
  font-size: 18px;
}

.apply-note {
  background: linear-gradient(135deg, #e0f8ff, #f0f4ff);
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  font-size: 17px;
}
.email-link {
  display: inline-block;
  background: #262262;
  color: white !important;
  padding: 14px 32px;
  border-radius: 50px;
  margin: 16px 0;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}
.deadline-note { margin: 16px 0 0; color: #e74c3c; font-weight: 600; }

/* Apply Form Sidebar */
.job-apply {
  position: sticky;
  top: 120px;
}
.apply-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 20px 70px rgba(38,34,98,0.12);
  border: 1px solid rgba(39,170,225,0.15);
}

.apply-card h2 {
  font-size: 32px;
  color: #262262;
  margin-bottom: 12px;
}

.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #262262;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e7ff;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  transition: 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #27aae1;
  box-shadow: 0 0 0 4px rgba(39,170,225,0.15);
}

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #262262, #27aae1);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.4s;
}
.btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(39,170,225,0.4);
}