@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap');

*{box-sizing:border-box;margin:0;padding:0}
:root{
  --green:#062b28;
  --gold:#c4923f;
  --gold2:#e3bf77;
  --cream:#f8f1e7;
  --soft:#fbfaf7;
  --border:#eadfce;
  --text:#182b29;
  --muted:#6f7774;
}
body{
  font-family:"Tajawal",Arial,sans-serif;
  direction:rtl;
  background:#fff;
  color:var(--text);
  line-height:1.75;
  overflow-x:hidden;
}
a{text-decoration:none;color:inherit}
.container{
  width:min(1160px,calc(100% - 34px));
  margin-inline:auto;
}

/* Header */
.topbar{
  height:72px;
  background:var(--green);
  position:sticky;
  top:0;
  z-index:1000;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  height:72px;
  display:flex;
  align-items:center;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--gold2);
  min-width:140px;
}
.logo-mark{
  width:52px;
  height:42px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--gold2),var(--gold));
  color:var(--green);
  display:grid;
  place-items:center;
  font-size:26px;
  font-weight:900;
}
.logo strong{display:block;font-size:24px;line-height:1}
.logo span{display:block;font-size:9px;letter-spacing:2.4px;font-weight:900}
.menu{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:23px;
  color:white;
  font-size:15px;
  font-weight:800;
}
.menu a{
  height:72px;
  display:flex;
  align-items:center;
}
.menu a:hover{color:var(--gold2)}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(180deg,#d9ad63,#bd8434);
  color:white;
  border-radius:8px;
  padding:10px 18px;
  font-weight:900;
}

/* Hero */
.jobs-hero{
  background:var(--green);
  color:white;
  overflow:hidden;
}
.jobs-hero .container{
  min-height:230px;
  display:grid;
  grid-template-columns:330px 1fr 260px;
  align-items:center;
  gap:32px;
}
.hero-img{
  height:230px;
  background:center/cover;
  clip-path:polygon(0 0,100% 0,78% 100%,0 100%);
  opacity:.92;
}
.jobs-hero h1{
  color:var(--gold2);
  font-size:38px;
  line-height:1.25;
  margin-bottom:8px;
}
.jobs-hero p{
  color:#edf4f1;
  max-width:650px;
}
.hero-stats{
  display:flex;
  gap:22px;
  margin-top:20px;
}
.hero-stats div{
  border-left:1px solid rgba(255,255,255,.16);
  padding-left:20px;
  text-align:center;
  font-size:14px;
}
.hero-stats strong{
  display:block;
  color:var(--gold2);
  font-size:27px;
  line-height:1;
  direction:ltr;
}
.hero-icon{
  text-align:center;
  border-right:1px solid rgba(255,255,255,.13);
  padding-right:22px;
}
.hero-icon b{
  display:block;
  font-size:48px;
  color:var(--gold2);
  margin-bottom:8px;
}

/* Jobs content */
.jobs-page{
  background:#fff;
  padding:26px 0 65px;
}
.jobs-grid{
  display:grid;
  grid-template-columns:250px 1fr;
  gap:20px;
  align-items:start;
}
.jobs-filter{
  background:#fbfaf7;
  border:1px solid var(--border);
  border-radius:14px;
  padding:18px;
  box-shadow:0 8px 22px rgba(0,0,0,.035);
}
.jobs-filter h3{
  color:var(--green);
  font-size:19px;
  margin-bottom:14px;
}
.jobs-filter input,
.jobs-filter select{
  width:100%;
  height:40px;
  border:1px solid var(--border);
  border-radius:9px;
  padding:0 10px;
  font-family:inherit;
  margin-bottom:11px;
  background:#fff;
}
.jobs-filter label{
  display:block;
  color:#333;
  font-weight:800;
  font-size:13px;
  margin-bottom:4px;
}
.btn{
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--green);
  color:#fff;
  border-radius:7px;
  font-weight:900;
  padding:0 18px;
  border:0;
  font-family:inherit;
  cursor:pointer;
}
.jobs-filter .btn{width:100%;margin-top:5px}
.side-note{
  background:var(--cream);
  border-radius:12px;
  padding:14px;
  text-align:center;
  margin-top:14px;
}
.side-note h4{
  color:var(--gold);
  font-size:16px;
}
.side-note p{
  color:var(--muted);
  font-size:13px;
}
.breadcrumb{
  font-size:13px;
  color:#999;
  margin-bottom:14px;
}
.jobs-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}
.jobs-top h2{
  font-size:30px;
  margin:0;
  color:var(--green);
}
.view-tabs{
  display:flex;
  gap:8px;
}
.view-tabs span{
  border:1px solid var(--border);
  padding:7px 12px;
  border-radius:8px;
  color:#666;
  font-size:13px;
  font-weight:800;
}
.view-tabs span.active{
  background:var(--green);
  color:#fff;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.card{
  border:1px solid var(--border);
  border-radius:14px;
  background:#fff;
  padding:12px;
  box-shadow:0 8px 22px rgba(0,0,0,.035);
  transition:.25s;
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 36px rgba(6,43,40,.10);
}
.card-img{
  height:142px;
  border-radius:10px;
  background:center/cover;
  margin-bottom:10px;
  position:relative;
}
.card-img:after{
  content:"♡";
  position:absolute;
  top:9px;
  right:9px;
  width:28px;
  height:28px;
  border-radius:7px;
  display:grid;
  place-items:center;
  background:#fff;
  color:var(--gold);
  border:1px solid var(--border);
  font-weight:900;
}
.card h3{color:var(--green);font-size:21px}
.dept{color:#9a7a3e;font-size:13px;font-weight:800}
.info{font-size:13px;color:#555;margin:4px 0 10px}
.card .btn{height:34px;min-width:105px}

.benefit-strip{
  margin-top:24px;
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:14px;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  overflow:hidden;
}
.benefit-strip div{
  padding:14px 10px;
  text-align:center;
  border-left:1px solid var(--border);
  font-weight:800;
  color:#555;
  font-size:13px;
}
.benefit-strip span{
  display:block;
  color:var(--gold);
  font-size:22px;
  margin-bottom:3px;
}

/* Footer */
footer{
  background:#031b19;
  color:#d7c7a5;
  padding:30px 0;
  font-weight:800;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:24px;
}
.footer-grid h3{color:var(--gold2);margin-bottom:8px}
.footer-grid p{color:#d7c7a5}
.footer-grid a{display:block;margin:5px 0;color:#d7c7a5}

@media(max-width:1000px){
  .menu{display:none}
  .nav{justify-content:space-between}
  .jobs-hero .container,
  .jobs-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .hero-img{display:none}
  .jobs-hero .container{padding:38px 0}
  .cards{grid-template-columns:repeat(2,1fr)}
  .benefit-strip{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:620px){
  .cards,.benefit-strip{grid-template-columns:1fr}
  .jobs-top{align-items:flex-start;flex-direction:column}
  .jobs-hero h1{font-size:30px}
}
