/* --- JOBS PAGE HEADER & FILTERS --- */
.jobs-header {
	background: #fff;
	border-radius: 9px;
	box-shadow: 0 1px 6px #0001;
	max-width: 700px;
	margin: 18px auto 10px auto;
	padding: 8px 8px 6px 8px;
}
.jobs-header-center {
	text-align: center;
	margin-bottom: 4px;
}
.jobs-title {
	font-size: 1.18rem;
	font-weight: 700;
	color: #1a2233;
	margin-bottom: 2px;
}
.jobs-desc {
	color: #4a5568;
	font-size: 0.98rem;
	margin-bottom: 2px;
}

/* --- JOBS PAGE FILTERS: PIXEL-PERFECT REACT STYLE --- */
.jobs-filters-block {
	display: flex;
	flex-direction: column;
	gap: 0px;
	margin-top: 2px;
	align-items: center;
	width: 100%;
}
.jobs-filters-row {
	display: flex;
	flex-direction: row;
	gap: 16px;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.jobs-search-bar {
	position: relative;
	width: 100%;
	max-width: 200px;
	min-width: 120px;
	flex: 1 1 120px;
	display: flex;
	align-items: center;
	margin-bottom: 0;
}
.jobs-search-bar input {
	width: 100%;
	height: 44px;
	padding: 0 16px 0 42px;
	border-radius: 8px;
	border: 1.5px solid #e0e7ef;
	font-size: 1.08rem;
		height: 32px;
		padding: 0 10px 0 32px;
		border-radius: 6px;
		font-size: 0.97rem;
	background: #f8fafc;
	color: #222;
	transition: border 0.18s, box-shadow 0.18s;
	box-shadow: 0 1px 4px #007bff11;
	font-weight: 500;
	line-height: 1.2;
	display: block;
}
.jobs-search-bar input:focus {
	outline: none;
	border: 1.5px solid #000000;
	background: #fff;
	box-shadow: 0 2px 8px #007bff11;
}
.icon-search {
	position: absolute;
	left: 8px;
	top: 48%;
	transform: translateY(-50%);
	font-size: 1em;
	color: #b0b8c1;
	pointer-events: none;
	z-index: 2;
}
.icon-search::before {
	content: '\1F50D'; /* 🔍 */
}
.jobs-filters-row select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	height: 44px;
	padding: 0 38px 0 16px;
	border-radius: 8px;
	border: 1.5px solid #e0e7ef;
	font-size: 1.08rem;
	height: 32px;
	padding: 0 28px 0 10px;
	border-radius: 6px;
	font-size: 0.97rem;
	background: #f8fafc url('data:image/svg+xml;utf8,<svg fill="%23007bff" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center/18px 18px;
	color: #222;
	min-width: 140px;
	max-width: 200px;
	width: 100%;
	font-weight: 500;
	box-shadow: 0 1px 4px #007bff11;
	transition: border 0.18s, box-shadow 0.18s, background 0.18s;
	margin: 0;
	cursor: pointer;
}
.jobs-filters-row select:focus, .jobs-filters-row select:hover {
	outline: none;
	border: 1.5px solid #000000;
	background-color: #f0f4fa;
	box-shadow: 0 2px 8px #007bff11;
}
.clear-filters-btn {
	display: flex;
	align-items: center;
	gap: 6px;
	background: #f0f4fa;
	color: #5b6269;
	border: none;
	border-radius: 999px;
	height: 44px;
	padding: 0 22px;
	font-size: 1.01rem;
	height: 32px;
	padding: 0 14px;
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0 1px 4px #007bff11;
	transition: background 0.18s, color 0.18s;
	margin-left: 0;
	white-space: nowrap;
}
.clear-filters-btn:hover {
	background: #e0e7ef;
	color: #585a5c;
}
.icon-filter::before {
	content: '\1F50E'; /* 🔎 */
	font-size: 1.1em;
	margin-right: 2px;
}
.jobs-results-count {
	color: #4a5568;
	font-size: 1.01rem;
	text-align: center;
	margin-top: 4px;
}
@media (max-width: 900px) {
	.jobs-filters-row {
		flex-direction: column;
		gap: 10px;
		align-items: stretch;
	}
	.jobs-search-bar { max-width: 100%; margin: 0; }
	.jobs-filters-row select,
	.clear-filters-btn {
		min-width: 100%;
		width: 100%;
		margin-left: 0;
	}
}
@media (max-width: 700px) {
	.jobs-header { padding: 18px 4vw 14px 4vw; }
	.jobs-title { font-size: 1.2rem; }
	.jobs-header-center { margin-bottom: 12px; }
	.jobs-filters-row { gap: 8px; }
	.jobs-search-bar { max-width: 100%; }
}

/* --- JOBS PAGE GRID & CARD (MERGED) --- */
.jobs-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
	gap: 32px;
	max-width: 1200px;
	margin: 48px auto 0 auto;
	padding: 0 16px 48px 16px;
}
.job-card {
	background: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px #0001;
	padding: 16px 12px 10px 12px;
	display: flex;
	flex-direction: column;
	min-height: 260px;
	transition: transform 0.18s cubic-bezier(.4,1.7,.6,1), box-shadow 0.18s;
	position: relative;
	overflow: hidden;
}
.job-card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 4px;
}
.job-card-title-block { flex: 1; }
.job-card-title {
	font-size: 1.08rem;
	font-weight: 600;
	margin: 0 0 2px 0;
	color: #1a2233;
	transition: color 0.18s;
}
.job-card-title a { color: inherit; text-decoration: none; }
.job-card-title a:hover { color: #414141; }
.job-card-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 0;
}
.job-meta-item {
	display: flex;
	align-items: center;
	background: #f0f4fa;
	border-radius: 4px;
	padding: 2px 7px;
	color: #4a5568;
	font-size: 0.93rem;
	gap: 2px;
}
.job-type-badge {
	background: #e0e7ef;
	color: #181818;
	border-radius: 6px;
	padding: 3px 8px;
	font-size: 0.91rem;
	font-weight: 500;
	margin-left: 7px;
	white-space: nowrap;
	box-shadow: 0 1px 4px #007bff11;
}
.job-card-desc {
	color: #4a5568;
	font-size: 0.95rem;
	margin: 5px 0 8px 0;
	min-height: 28px;
	line-height: 1.5;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	line-clamp: 3;
}
.job-card-actions {
	display: flex;
	gap: 12px;
	margin-top: auto;
}
/* --- ICONS --- */
.icon-users::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 2px;
	vertical-align: middle;
	background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%234a5568" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="9" cy="7" r="4"/><path d="M17 11c1.66 0 3 1.34 3 3v3H7v-3c0-1.66 1.34-3 3-3h7z"/></svg>') no-repeat center/1em 1em;
}
.icon-location::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 2px;
	vertical-align: middle;
	background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%234a5568" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 21c-4.97-4.97-8-8.13-8-11.5C4 5.36 7.13 2 12 2s8 3.36 8 7.5c0 3.37-3.03 6.53-8 11.5z"/><circle cx="12" cy="9.5" r="2.5"/></svg>') no-repeat center/1em 1em;
}
.icon-clock::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	margin-right: 2px;
	vertical-align: middle;
	background: url('data:image/svg+xml;utf8,<svg fill="none" stroke="%234a5568" stroke-width="2" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10"/><path d="M12 6v6l4 2"/></svg>') no-repeat center/1em 1em;
}
/* --- ANIMATIONS --- */
.hover-lift:hover {
	transform: translateY(-4px) scale(1.01);
	box-shadow: 0 4px 16px #0001;
	background: #f5f6f7;
}
.animate-fade-in {
	opacity: 0;
	animation: fadeIn 0.7s ease-out forwards;
}
@keyframes fadeIn {
	to { opacity: 1; }
}
@media (max-width: 700px) {
	.jobs-list { 
		grid-template-columns: 1fr; 
		gap: 16px; 
		padding: 0 12px 32px 12px;
	}
	.job-card { 
		padding: 18px 10px 16px 10px; 
	}
	
	.jobs-header {
		margin: 12px auto 8px auto;
		padding: 12px;
	}
	
	.jobs-filters-row {
		flex-direction: column;
		gap: 12px;
	}
	
	.jobs-search-bar,
	.jobs-filters-row select,
	.clear-filters-btn {
		width: 100%;
		max-width: none;
	}
}
html { scroll-behavior: smooth; }
/* --- HERO SECTION --- */
.hero-section {
	background: linear-gradient(180deg, #f8fafc 0%, #e9f0fa 100%);
	padding: 80px 0 120px 0;
	min-height: 520px;
}
.hero-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-center { max-width: 700px; margin: 0 auto; text-align: center; position: relative; }
.hero-headline { font-size: 2.8rem; font-weight: 700; margin-bottom: 18px; color: #1a2233; letter-spacing: -1px; }
.hero-bold { color: #000000; font-weight: 900; }
.hero-subtitle { font-size: 1.3rem; color: #4a5568; margin-bottom: 32px; line-height: 1.5; }
.hero-cta { display: flex; flex-direction: column; gap: 16px; align-items: center; margin-bottom: 48px; }
.hero-btn { font-size: 1.1rem; padding: 14px 36px; border-radius: 8px; font-weight: 600; transition: background 0.2s, color 0.2s, box-shadow 0.2s; box-shadow: 0 2px 8px #007bff22; }
.btn-primary.hero-btn { background: #000000; color: #fff; border: none; }
.btn-primary.hero-btn:hover { background: #4d4c4c; }
.btn-secondary.hero-btn { background: #e0e7ef; color: #000000; border: none; }
.btn-secondary.hero-btn:hover { background: #d0d7e7; }
.arrow { font-size: 1.2em; margin-left: 8px; transition: transform 0.2s; }
.btn-primary.hero-btn:hover .arrow { transform: translateX(4px); }
.hero-stats { display: flex; justify-content: center; gap: 48px; margin-top: 56px; }
.hero-stat { text-align: center; }
.stat-num { font-size: 2.2rem; font-weight: 800; color: #000000; margin-bottom: 4px; }
.stat-label { color: #4a5568; font-size: 1rem; }
@media (max-width: 900px) { 
  .hero-center { padding: 0 8px; } 
  .hero-headline { font-size: 2rem; } 
  .hero-stats { gap: 18px; } 
  
  .job-card {
    min-height: 240px;
  }
  
  .job-card-title {
    font-size: 1rem;
  }
  
  .job-card-desc {
    font-size: 0.9rem;
  }
}

/* --- ANIMATIONS --- */
.animate-fade-in-delay { opacity: 0; animation: fadeIn 0.7s 0.2s ease-out forwards; }
.animate-fade-in-delay2 { opacity: 0; animation: fadeIn 0.7s 0.4s ease-out forwards; }
.animate-slide-up { opacity: 0; transform: translateY(40px); animation: slideUp 0.8s 0.6s cubic-bezier(.4,1.7,.6,1) forwards; }
@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: none; } }

/* --- VALUES SECTION --- */
.values-section { background: #fff; padding: 80px 0; }
.values-center { max-width: 1100px; margin: 0 auto; text-align: center; }
.values-title { font-size: 2rem; font-weight: 700; margin-bottom: 18px; color: #1a2233; }
.values-desc { color: #4a5568; font-size: 1.1rem; margin-bottom: 40px; }
.values-cards {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 32px;
	justify-content: center;
}
.value-card {
	background: #f0f4fa;
	border-radius: 12px;
	box-shadow: 0 2px 8px #007bff11;
	padding: 32px 24px;
	text-align: center;
	transition: transform 0.2s, box-shadow 0.2s;
}
@media (max-width: 1100px) {
	.values-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 700px) {
	.values-cards { grid-template-columns: 1fr; gap: 16px; }
}
.value-card h3 { font-size: 1.1rem; font-weight: 700; margin: 18px 0 10px 0; color: #000000; }
.value-card p { color: #4a5568; font-size: 1rem; }
.value-icon { width: 48px; height: 48px; margin: 0 auto 10px auto; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: #000000; }
.value-innovation { background: linear-gradient(135deg, #007bff 60%, #00c6ff 100%); }
.value-collaboration { background: linear-gradient(135deg, #ffb300 60%, #ffe082 100%); }
.value-excellence { background: linear-gradient(135deg, #00b894 60%, #00e6b8 100%); }
.value-purpose { background: linear-gradient(135deg, #e17055 60%, #ff7675 100%); }
.value-icon:before { content: ''; display: block; width: 24px; height: 24px; background-size: contain; background-repeat: no-repeat; margin: 0 auto; }
.value-innovation:before { background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 2a7 7 0 0 0-7 7c0 2.38 1.19 4.47 3 5.74V18a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2v-3.26A6.98 6.98 0 0 0 19 9a7 7 0 0 0-7-7zm0 2a5 5 0 0 1 5 5c0 1.65-.8 3.13-2.09 4.06a1 1 0 0 0-.41.8V18a.5.5 0 0 1-.5.5h-2A.5.5 0 0 1 11 18v-6.14a1 1 0 0 0-.41-.8A5.01 5.01 0 0 1 7 9a5 5 0 0 1 5-5z"/></svg>'); }
.value-collaboration:before { background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="7" r="4"/><path d="M12 13c-4.42 0-8 1.79-8 4v3h16v-3c0-2.21-3.58-4-8-4z"/></svg>'); }
.value-excellence:before { background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>'); }
.value-purpose:before { background-image: url('data:image/svg+xml;utf8,<svg fill="white" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 21.35l-1.45-1.32C5.4 15.36 2 12.28 2 8.5 2 5.42 4.42 3 7.5 3c1.74 0 3.41.81 4.5 2.09C13.09 3.81 14.76 3 16.5 3 19.58 3 22 5.42 22 8.5c0 3.78-3.4 6.86-8.55 11.54L12 21.35z"/></svg>'); }
@media (max-width: 900px) { .values-cards { flex-direction: column; gap: 18px; } .values-section { padding: 40px 0; } }
/* Job Detail Page Styles */
.job-detail-layout { max-width: 1200px; margin: 40px auto; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px #0001; padding: 32px; }
.job-detail-header { border-bottom: 1px solid #eee; padding-bottom: 16px; margin-bottom: 24px; }
.back-link { color: #007bff; text-decoration: none; font-weight: 500; margin-bottom: 8px; display: inline-block; }
.back-link:hover { text-decoration: underline; }
.job-title { font-size: 2.2rem; margin: 0 0 12px 0; }
.job-meta { display: flex; flex-wrap: wrap; gap: 18px; color: #666; font-size: 1rem; }
.job-detail-main { display: flex; gap: 40px; }
.job-detail-content { flex: 2; }
.job-detail-sidebar { flex: 1; display: flex; flex-direction: column; gap: 24px; }
.sidebar-card { background: #f8fafc; border-radius: 8px; box-shadow: 0 1px 4px #0001; padding: 20px 18px; margin-bottom: 0; }
.sidebar-card h3 { margin-top: 0; margin-bottom: 10px; font-size: 1.1rem; }
.job-section { margin-bottom: 32px; }
.job-section h2 { font-size: 1.2rem; margin-bottom: 10px; }
.job-list { list-style: disc inside; margin: 0 0 0 16px; padding: 0; }
.job-list li { margin-bottom: 8px; color: #444; }
.btn-primary.w-full, .btn-secondary.w-full { width: 100%; }
.btn-secondary { background: #e0e7ef; color: #007bff; border: none; border-radius: 6px; padding: 10px 0; font-weight: 600; margin-top: 4px; cursor: pointer; transition: background 0.2s; }
.btn-secondary:hover { background: #d0d7e7; }
.share-btns { display: flex; gap: 8px; }
.job-detail-cta { text-align: center; margin-top: 48px; border-top: 1px solid #eee; padding-top: 32px; }
.job-detail-cta h2 { font-size: 1.5rem; margin-bottom: 12px; }
.job-detail-cta p { color: #555; margin-bottom: 18px; }
@media (max-width: 900px) {
	.job-detail-main { flex-direction: column; gap: 24px; }
	.job-detail-layout { padding: 16px; }
}
body { font-family: 'Segoe UI', Arial, sans-serif; margin: 0; background: #f8fafc; color: #222; }
header { background: #fff; box-shadow: 0 2px 8px #0001; }
.navbar { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  max-width: 1200px; 
  margin: 0 auto; 
  padding: 16px 24px; 
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #000000;
  text-shadow: 0 2px 8px #007bff22;
}
.logo-img {
  height: 40px;
  width: auto;
}
.logo-text {
  font-size: 1.6rem;
}
.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 32px; 
}
.nav-link {
  color: #4a5568;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s ease;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}
.nav-link:hover,
.nav-link.active {
  color: #000000;
  border-bottom-color: #000000;
}

/* Home: 'Learn About Our Culture' as plain text */
.hero-culture-text { color: #1d1d1d; font-size: 1.1rem; font-weight: 600; margin-top: 8px; margin-bottom: 32px; letter-spacing: 0.01em; }

@media (max-width: 900px) {
	.navbar { padding: 12px 4vw; }
	.logo { font-size: 1.1rem; }
	.hero-headline { font-size: 1.5rem; }
	.hero-section, .values-section { padding: 32px 0; }
	.hero-stats { gap: 10px; }
	.values-cards { gap: 10px; }
}
@media (max-width: 600px) {
	.logo img { height: 28px; margin-right: 8px; }
	.logo { font-size: 1rem; }
	.hero-center { padding: 0 2vw; }
	.hero-headline { font-size: 1.1rem; }
	.hero-section, .values-section { padding: 18px 0; }
	.values-cards { flex-direction: column; gap: 8px; }
}
.hero { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 40px auto 0; padding: 32px 24px; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px #0001; }
.hero-content { max-width: 600px; }
.hero-content h1 { font-size: 2.5rem; margin-bottom: 12px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 24px; }
.btn-primary {
	display: inline-block;
	background: linear-gradient(90deg, #181818 60%, #23272f 100%);
	color: #fff;
	padding: 12px 32px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: 700;
	font-size: 1.08rem;
	box-shadow: 0 2px 12px #18181818, 0 1.5px 4px #23272f0d;
	border: none;
	letter-spacing: 0.01em;
	transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.btn-primary:hover, .btn-primary:focus {
	background: linear-gradient(90deg, #23272f 60%, #181818 100%);
	box-shadow: 0 4px 18px #18181822, 0 2px 8px #23272f18;
	transform: translateY(-2px) scale(1.025);
}
.btn-primary:active {
	background: #181818;
	box-shadow: 0 1px 4px #23272f22;
	transform: scale(0.98);
}
.hero-img { max-width: 320px; border-radius: 12px; box-shadow: 0 2px 8px #0002; }
.about { max-width: 1200px; margin: 48px auto; padding: 24px; background: #fff; border-radius: 12px; box-shadow: 0 2px 12px #0001; }
.about h2 { text-align: center; margin-bottom: 32px; }
.about-cards { display: flex; gap: 32px; justify-content: center; }
.about-card { background: #f0f4fa; border-radius: 8px; padding: 24px 32px; box-shadow: 0 1px 4px #0001; text-align: center; flex: 1; }
footer { 
  background: #1a1a1a; 
  color: #ffffff; 
  margin-top: 48px; 
  padding: 48px 0 0 0;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.footer-section h4 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 2px solid #333;
  padding-bottom: 8px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 32px;
  width: auto;
}
.footer-logo h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
.footer-description {
  color: #cccccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 16px;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #333;
  color: #ffffff;
  border-radius: 8px;
  transition: all 0.2s ease;
  text-decoration: none;
}
.social-link:hover {
  background: #000000;
  transform: translateY(-2px);
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.95rem;
}
.footer-links a:hover {
  color: #ffffff;
}

/* Style for department items that are not links */
.footer-links li:not(:has(a)) {
  color: #cccccc;
  font-size: 0.95rem;
  cursor: default;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #cccccc;
  font-size: 0.95rem;
}
.contact-icon {
  color: #666;
  flex-shrink: 0;
}
.contact-item a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}
.contact-item a:hover {
  color: #ffffff;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding: 24px 0;
  background: #111111;
}
.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: #ffffff;
}
@media (max-width: 600px) {
	.footer-content { font-size: 0.95rem; gap: 12px; }
	.footer-summary p { font-size: 0.98rem; }
	.footer-contact-list { gap: 10px; font-size: 0.95rem; }
	
	.apply-section {
		margin: 20px auto;
		padding: 0 12px;
	}
	
	.apply-form {
		padding: 20px;
	}
	
	.apply-header h2 {
		font-size: 1.8rem;
	}
	
	.form-group input,
	.form-group textarea {
		padding: 10px 12px;
		font-size: 0.95rem;
	}
	
	.social-links {
		justify-content: center;
	}
	
	.contact-info {
		align-items: center;
	}
}
@media (max-width: 900px) { 
  .hero { flex-direction: column; text-align: center; } 
  .hero-img { margin-top: 24px; } 
  .about-cards { flex-direction: column; gap: 16px; } 
  
  .about {
    margin: 32px auto;
    padding: 20px;
  }
  
  .about-card {
    padding: 20px 24px;
  }
}

.btn-primary:hover, .btn-secondary:hover {
  background: #ededed !important;
  color: #000 !important;
}

/* --- APPLY FORM STYLES --- */
.apply-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 24px;
}

.apply-header {
  text-align: center;
  margin-bottom: 40px;
}

.apply-header h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-weight: 700;
}

.apply-header p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.apply-form {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.apply-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #000000 0%, #333 50%, #000000 100%);
}

.form-group {
  margin-bottom: 36px;
  padding: 28px;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-radius: 16px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.form-group:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-color: #d0d7e7;
  transform: translateY(-2px);
}

.form-group:focus-within {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  background: #ffffff;
}

.form-group label {
  display: block;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  position: relative;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 18px 22px;
  border: 2px solid #e0e7ef;
  border-radius: 12px;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  font-family: inherit;
  line-height: 1.5;
  box-sizing: border-box;
  max-width: 100%;
  overflow: hidden;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
  background: #fff;
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: pre-wrap;
}

.form-group small {
  display: block;
  margin-top: 10px;
  font-size: 0.95rem;
  color: #6c757d;
  font-style: italic;
  line-height: 1.4;
  padding-left: 4px;
}

/* Enhanced Input Options Styles */
.input-options {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  padding: 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e9ecef;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.option-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
  justify-content: center;
  position: relative;
  user-select: none;
}

.option-toggle input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.option-toggle:hover {
  background: #e9ecef;
  border-color: #d0d7e7;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.option-toggle input[type="radio"]:checked ~ label {
  color: #000000;
  font-weight: 600;
}

.option-toggle:has(input[type="radio"]:checked) {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.option-toggle:has(input[type="radio"]:checked) label {
  color: #ffffff;
}

.option-toggle input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: #000000;
}

.option-toggle label {
  cursor: pointer;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  font-weight: 500;
  color: #6c757d;
  transition: all 0.2s ease;
}

.option-toggle input[type="radio"]:checked + label {
  color: #000000;
  font-weight: 600;
}

.option-toggle label {
  margin: 0;
  font-weight: 500;
  color: #6c757d;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.option-toggle:has(input[type="radio"]:checked) {
  background: #000000;
  border-color: #000000;
  color: #fff;
}

.option-toggle:has(input[type="radio"]:checked) label {
  color: #fff;
}

.input-field {
  margin-top: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

/* Enhanced File Input Styles */
.form-group input[type="file"] {
  padding: 20px;
  border: 2px dashed #d0d7e7;
  background: #f8fafc;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 1rem;
  color: #6c757d;
}

.form-group input[type="file"]:hover {
  border-color: #000000;
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-group input[type="file"]:focus {
  border-color: #000000;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.form-group input[type="file"]::file-selector-button {
  background: #000000;
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-right: 16px;
  transition: all 0.2s ease;
}

.form-group input[type="file"]::file-selector-button:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Form Message Styling */
.apply-message {
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease;
}

.apply-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.apply-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.apply-message.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* Submit Button Enhancement */

/* Responsive styles for apply form */
@media (max-width: 768px) {
  .apply-section {
    padding: 0 16px;
  }
  
  .apply-form {
    padding: 30px 24px;
  }
  
  .form-group {
    padding: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 16px 18px;
    font-size: 1rem;
  }
  
  .input-options {
    flex-direction: column;
    gap: 12px;
  }
  
  .option-toggle {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .apply-section {
    padding: 0 12px;
  }
  
  .apply-form {
    padding: 24px 20px;
    border-radius: 16px;
  }
  
  .form-group {
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .apply-header h2 {
    font-size: 2rem;
  }
  
  .apply-header p {
    font-size: 1rem;
  }
}
.apply-form .btn-primary {
  width: 100%;
  padding: 22px 36px;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 16px;
  background: linear-gradient(135deg, #000000 0%, #333 100%);
  border: none;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.apply-form .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.apply-form .btn-primary:hover {
  background: linear-gradient(135deg, #333 0%, #000000 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.apply-form .btn-primary:hover::before {
  left: 100%;
}

.apply-form .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive styles for input options */
@media (max-width: 768px) {
  .input-options {
    flex-direction: column;
    gap: 12px;
  }
  
  .option-toggle {
    justify-content: flex-start;
  }
  
  .apply-form {
    padding: 24px;
  }
  
  .form-group {
    padding: 16px;
    margin-bottom: 24px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 14px 16px;
  }
  
  .input-field {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .input-options {
    gap: 8px;
  }
  
  .option-toggle {
    padding: 10px 16px;
  }
  
  .option-toggle label {
    font-size: 0.9rem;
  }
  
  .apply-form {
    padding: 20px;
  }
  
  .form-group {
    padding: 12px;
    margin-bottom: 20px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 0.95rem;
  }
  
  .input-field {
    padding: 12px;
  }
  
  .apply-form .btn-primary {
    padding: 16px 24px;
    font-size: 1rem;
  }
}
.apply-header {
  text-align: center;
  margin-bottom: 40px;
}
.apply-header h2 {
  font-size: 2.2rem;
  color: #1a2233;
  margin-bottom: 16px;
}
.job-description {
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.6;
}
.apply-form {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.form-group {
  margin-bottom: 24px;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: #1a2233;
  margin-bottom: 8px;
  font-size: 1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e7ef;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #f8fafc;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group small {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-top: 6px;
  font-style: italic;
}
.apply-message {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
}
.apply-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.apply-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.apply-message.info {
  background: #d1ecf1;
  color: #0c5460;
  border: 1px solid #bee5eb;
}

/* --- NO JOBS & ERROR MESSAGES --- */
.no-jobs,
.error-message {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 1.1rem;
}
.error-message {
  color: #721c24;
}

/* --- JOB DETAIL PAGE ENHANCED STYLES --- */
.job-loading {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 1200px;
  animation: fadeIn 0.3s ease-in;
}

#jobContent {
  animation: fadeIn 0.5s ease-in;
}

.job-detail-layout {
  max-width: 1200px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  border: 1px solid #f0f0f0;
}

.job-detail-header {
  border-bottom: 2px solid #f8f9fa;
  padding-bottom: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  background: #f8f9fa;
}

.back-link:hover {
  background: #e9ecef;
  color: #0056b3;
  transform: translateX(-4px);
}

.job-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: #1a1a1a;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f4fa;
  padding: 2px 7px;
  border-radius: 4px;
  color: #4a5568;
  font-size: 0.93rem;
  font-weight: 500;
  border: 1px solid #e0e7ef;
  transition: all 0.2s ease;
}

.job-meta-item:hover {
  background: #e0e7ef;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.job-meta-item svg {
  color: #303031;
  flex-shrink: 0;
}

.job-detail-main {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.job-detail-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.job-section {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

.job-section:hover {
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.job-section h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: #1a1a1a;
  padding-bottom: 12px;
  border-bottom: 2px solid #4c5157;
}

.job-section h2 svg {
  color: #1f242b;
  flex-shrink: 0;
}

.job-description {
  color: #495057;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

.job-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #495057;
  font-size: 1rem;
  line-height: 1.6;
  padding: 8px 0;
}

.job-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #343536;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.job-list li.no-data {
  color: #6c757d;
  font-style: italic;
}

.job-list li.no-data::before {
  background: #6c757d;
}

.job-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  padding: 24px;
  border: 1px solid #e9ecef;
  transition: all 0.2s ease;
}

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

.sidebar-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a1a;
  padding-bottom: 8px;
  border-bottom: 1px solid #e9ecef;
}

.sidebar-card h3 svg {
  color: #343536;
  flex-shrink: 0;
}

.sidebar-card p {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

.share-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.share-btn.linkedin {
  background: #0077b5;
  color: #fff;
}

.share-btn.linkedin:hover {
  background: #005885;
  transform: translateY(-2px);
}

.share-btn.twitter {
  background: #1da1f2;
  color: #fff;
}

.share-btn.twitter:hover {
  background: #1a2730;
  transform: translateY(-2px);
}

.job-detail-cta {
  text-align: center;
  margin-top: 48px;
  border-top: 2px solid #f8f9fa;
  padding-top: 40px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 16px;
  padding: 40px;
}

.job-detail-cta h2 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.job-detail-cta p {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0 0 32px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.job-detail-cta .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Error and Not Found States */
.not-found,
.error-state {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  margin: 40px auto;
  max-width: 600px;
}

.not-found-content,
.error-content {
  text-align: center;
  padding: 40px;
}

.not-found-content svg,
.error-content svg {
  color: #6c757d;
  margin-bottom: 24px;
}

.not-found-content h2,
.error-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #1a1a1a;
}

.not-found-content p,
.error-content p {
  color: #6c757d;
  font-size: 1.1rem;
  margin: 0 0 24px 0;
  line-height: 1.6;
}

/* Responsive Design for Job Detail */
@media (max-width: 1024px) {
  .job-detail-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .job-detail-layout {
    margin: 20px;
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .job-title {
    font-size: 2.2rem;
  }
  
  .job-meta {
    flex-direction: column;
    align-items: center;
  }
  
  .job-meta-item {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .job-section {
    padding: 20px;
  }
  
  .sidebar-card {
    padding: 20px;
  }
  
  .job-detail-cta {
    padding: 24px 20px;
  }
  
  .job-detail-cta h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .job-detail-layout {
    margin: 10px;
    padding: 16px;
    border-radius: 12px;
  }
  
  .job-title {
    font-size: 1.8rem;
  }
  
  .job-section h2 {
    font-size: 1.2rem;
  }
  
  .job-meta-item {
    font-size: 0.9rem;
    padding: 10px 16px;
  }
}

/* --- LOADING INDICATORS --- */
.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #000000;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loading-text {
  color: #666;
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive loading indicators */
@media (max-width: 768px) {
  .loading-spinner {
    width: 32px;
    height: 32px;
    border-width: 3px;
  }
  
  .loading-text {
    font-size: 1rem;
  }
  
  .job-loading {
    margin: 20px auto;
    min-height: 300px;
  }
}

@media (max-width: 480px) {
  .loading-spinner {
    width: 28px;
    height: 28px;
    border-width: 2px;
  }
  
  .loading-text {
    font-size: 0.9rem;
  }
  
  .job-loading {
    margin: 10px auto;
    min-height: 250px;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Button loading states */
.btn-primary.loading,
.btn-secondary.loading {
  position: relative;
  color: transparent;
}

.btn-primary.loading::after,
.btn-secondary.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* --- RESPONSIVE MEDIA QUERIES --- */

/* Large Desktop (1400px and up) */
@media (min-width: 1400px) {
  .navbar, .footer-content, .hero-container, .values-center, .about, .hero {
    max-width: 1400px;
  }
  
  .job-detail-layout, .apply-section {
    max-width: 1400px;
  }
}

/* Desktop (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
  .navbar, .footer-content, .hero-container, .values-center, .about, .hero {
    max-width: 1200px;
  }
}

/* Large Tablet (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
  .navbar, .footer-content, .hero-container, .values-center, .about, .hero {
    max-width: 960px;
    padding: 0 20px;
  }
  
  .job-detail-layout, .apply-section {
    max-width: 960px;
    margin: 30px auto;
    padding: 30px;
  }
  
  .hero-headline {
    font-size: 2.4rem;
  }
  
  .values-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
  .navbar, .footer-content, .hero-container, .values-center, .about, .hero {
    max-width: 720px;
    padding: 0 16px;
  }
  
  .navbar {
    padding: 12px 16px;
  }
  
  .nav-links {
    gap: 20px;
  }
  
  .hero-headline {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .values-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .job-detail-layout, .apply-section {
    max-width: 720px;
    margin: 25px auto;
    padding: 25px;
  }
  
  .job-detail-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .job-title {
    font-size: 2.4rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 767px) and (min-width: 576px) {
  .navbar, .footer-content, .hero-container, .values-center, .about, .hero {
    max-width: 540px;
    padding: 0 12px;
  }
  
  .navbar {
    padding: 10px 12px;
    flex-direction: column;
    gap: 12px;
  }
  
  .nav-links {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hero-headline {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-num {
    font-size: 1.8rem;
  }
  
  .values-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .job-detail-layout, .apply-section {
    max-width: 540px;
    margin: 20px auto;
    padding: 20px;
  }
  
  .job-title {
    font-size: 2rem;
  }
  
  .job-meta {
    flex-direction: column;
    align-items: center;
  }
  
  .job-meta-item {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  
  .job-section {
    padding: 20px;
  }
  
  .sidebar-card {
    padding: 20px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
  }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
  .navbar, .footer-content, .hero-container, .values-center, .about, .hero {
    max-width: 100%;
    padding: 0 8px;
  }
  
  .navbar {
    padding: 8px;
    flex-direction: column;
    gap: 10px;
  }
  
  .logo {
    font-size: 1.4rem;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .nav-links {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 0.9rem;
  }
  
  .hero-headline {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 16px;
    flex-direction: column;
  }
  
  .stat-num {
    font-size: 1.6rem;
  }
  
  .values-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .value-card {
    padding: 20px 16px;
  }
  
  .job-detail-layout, .apply-section {
    margin: 10px;
    padding: 16px;
    border-radius: 12px;
  }
  
  .job-title {
    font-size: 1.8rem;
  }
  
  .job-meta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .job-meta-item {
    width: 100%;
    max-width: 260px;
    justify-content: center;
    font-size: 0.9rem;
    padding: 8px 12px;
  }
  
  .job-section {
    padding: 16px;
  }
  
  .job-section h2 {
    font-size: 1.2rem;
  }
  
  .sidebar-card {
    padding: 16px;
  }
  
  .job-detail-cta {
    padding: 20px 16px;
  }
  
  .job-detail-cta h2 {
    font-size: 1.4rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .footer-section h4 {
    font-size: 1rem;
  }
  
  .footer-links a {
    font-size: 0.9rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .footer-bottom-links {
    justify-content: center;
    gap: 16px;
  }
  
  .apply-form {
    padding: 20px;
  }
  
  .apply-header h2 {
    font-size: 1.8rem;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .navbar, .footer-content, .hero-container, .values-center, .about, .hero {
    padding: 0 6px;
  }
  
  .navbar {
    padding: 6px;
  }
  
  .logo {
    font-size: 1.2rem;
  }
  
  .logo-img {
    height: 28px;
  }
  
  .nav-links {
    gap: 8px;
    font-size: 0.85rem;
  }
  
  .hero-headline {
    font-size: 1.6rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .job-detail-layout, .apply-section {
    margin: 8px;
    padding: 12px;
  }
  
  .job-title {
    font-size: 1.6rem;
  }
  
  .job-meta-item {
    max-width: 240px;
    font-size: 0.85rem;
    padding: 6px 10px;
  }
  
  .job-section {
    padding: 12px;
  }
  
  .sidebar-card {
    padding: 12px;
  }
  
  .apply-form {
    padding: 16px;
  }
  
  .apply-header h2 {
    font-size: 1.6rem;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-section {
    padding: 40px 0 60px 0;
    min-height: 400px;
  }
  
  .values-section {
    padding: 40px 0;
  }
  
  .hero-stats {
    margin-top: 30px;
  }
  
  .job-detail-layout {
    margin: 20px auto;
    padding: 20px;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .loading-spinner {
    border-width: 2px;
  }
  
  .btn-primary.loading::after,
  .btn-secondary.loading::after {
    border-width: 1px;
  }
}

/* Print Styles */
@media print {
  .navbar, .footer, .hero-section, .values-section {
    display: none;
  }
  
  .job-detail-layout, .apply-section {
    box-shadow: none;
    border: 1px solid #ccc;
  }
  
  .btn-primary, .btn-secondary {
    border: 1px solid #000;
    background: white !important;
    color: black !important;
  }
}
