/* =================
   Careers Page
   ================= */

/* Banner */
#careers-banner {
	background: url('../img/banner.jpg');
	background-size: cover;
	padding: 180px 0 80px;
	position: relative;
}
#careers-banner:before {
	position: absolute;
	z-index: 99;
	background: rgba(0, 0, 0, 0.6);
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	content: '';
}
#careers-banner .block {
	position: relative;
	z-index: 999;
	color: #fff;
	text-align: center;
}
#careers-banner .block h1 {
	font-size: 48px;
	font-weight: 100;
	color: #80d6a3;
	padding-bottom: 15px;
}
#careers-banner .block h2 {
	font-size: 18px;
	font-weight: 300;
	color: #fff;
}

/* Intro */
#careers-intro {
	padding: 80px 0 20px;
}

/* Job Listings */
#job-listings {
	padding: 0 0 60px;
}

.job-card {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 4px;
	margin-bottom: 16px;
	transition: 0.3s;
	overflow: hidden;
}
.job-card:hover {
	border-color: #0080ff;
	box-shadow: 0 2px 12px rgba(0, 128, 255, 0.1);
}

/* Job Header (clickable) */
.job-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 30px;
	cursor: pointer;
	transition: 0.2s;
}
.job-header:hover {
	background: #f9fbfd;
}

.job-title-group h3 {
	font-size: 20px;
	font-weight: 500;
	color: #333;
	margin-bottom: 8px;
}

.job-meta span {
	font-size: 13px;
	color: #888;
	margin-right: 20px;
}
.job-meta span i {
	color: #0080ff;
	margin-right: 5px;
}

.job-toggle {
	color: #0080ff;
	font-size: 14px;
	transition: 0.3s;
}
.job-card.open .job-toggle i {
	transform: rotate(180deg);
}

/* Job Details (hidden by default) */
.job-details {
	display: none;
	padding: 0 30px;
}
.job-card.open .job-details {
	display: block;
	padding: 0 30px 30px;
}

.job-description {
	border-top: 1px solid #eee;
	padding-top: 20px;
}
.job-description h4 {
	font-size: 16px;
	font-weight: 500;
	color: #333;
	margin-top: 20px;
	margin-bottom: 10px;
}
.job-description h4:first-child {
	margin-top: 0;
}
.job-description p {
	font-size: 14px;
	line-height: 24px;
	color: #666;
	margin-bottom: 10px;
}
.job-description ul {
	list-style: disc;
	padding-left: 20px;
	margin-bottom: 10px;
}
.job-description ul li {
	font-size: 14px;
	line-height: 28px;
	color: #666;
}

/* Apply Button */
.btn-apply {
	display: inline-block;
	background: #0080ff;
	color: #fff;
	padding: 12px 35px;
	border-radius: 25px;
	font-size: 15px;
	font-weight: 500;
	margin-top: 25px;
	transition: 0.3s;
	text-decoration: none;
}
.btn-apply:hover {
	background: #0066cc;
	color: #fff;
}
.btn-apply i {
	margin-left: 6px;
	font-size: 12px;
}

/* CTA Section */
#careers-cta {
	padding: 60px 0;
	background: #f5f5f5;
}
#careers-cta h3 {
	font-size: 22px;
	color: #333;
	margin-bottom: 12px;
}
#careers-cta p {
	font-size: 16px;
	color: #666;
}
#careers-cta a {
	color: #0080ff;
	font-weight: 500;
}
#careers-cta a:hover {
	color: #0066cc;
}

/* Responsive */
@media (max-width: 768px) {
	#careers-banner {
		padding: 140px 0 60px;
	}
	#careers-banner .block h1 {
		font-size: 32px;
	}
	.job-header {
		padding: 18px 20px;
	}
	.job-details {
		padding: 0 20px;
	}
	.job-card.open .job-details {
		padding: 0 20px 20px;
	}
	.job-meta span {
		display: block;
		margin-bottom: 4px;
	}
}
