@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/pjs-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/pjs-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/pjs-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/pjs-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal; font-weight: 800; font-display: swap;
  src: url('../fonts/pjs-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/fraunces-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic; font-weight: 700; font-display: swap;
  src: url('../fonts/fraunces-700-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal; font-weight: 900; font-display: swap;
  src: url('../fonts/fraunces-900.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic; font-weight: 900; font-display: swap;
  src: url('../fonts/fraunces-900-italic.woff2') format('woff2');
}

:root {
  --navy:       #0a2540;
  --navy-mid:   #1a3a5c;
  --cyan:       #00b4d8;
  --cyan-light: #e0f7fc;
  --accent:     #0077b6;
  --white:      #ffffff;
  --off-white:  #f7f9fc;
  --light-grey: #eef2f7;
  --text-dark:  #0a2540;
  --text-mid:   #4a5568;
  --text-light: #8492a6;
  --border:     #dde4ed;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(10,37,64,0.08); }

.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--navy);
  text-decoration: none; letter-spacing: -0.5px;
}
.nav-logo span { color: var(--cyan); }

.nav-links { display: flex; gap: 36px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--text-mid);
  text-decoration: none;
  font-size: 14px; font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-cta-btn {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--accent) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding-top: 68px;
}

.hero-left {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 6% 80px 8%;
  background: var(--white);
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan-light);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 20px;
  margin-bottom: 28px; width: fit-content;
}
.hero-eyebrow span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); display: inline-block;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero h1 em {
  font-style: italic;
  color: var(--cyan);
}

.hero-sub {
  font-size: 17px; color: var(--text-mid);
  font-weight: 500; line-height: 1.8;
  margin-bottom: 40px;
  max-width: 460px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px; font-weight: 700;
  padding: 15px 30px; border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(10,37,64,0.2);
}
.btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,37,64,0.25); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--navy);
  font-size: 14px; font-weight: 700;
  padding: 15px 30px; border-radius: 10px;
  text-decoration: none;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
  margin-left: 12px;
}
.btn-outline:hover { border-color: var(--navy); background: var(--off-white); }

.hero-trust {
  display: flex; align-items: center; gap: 16px;
  margin-top: 48px; padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-stat { text-align: center; }
.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 900;
  color: var(--navy); line-height: 1;
}
.trust-label { font-size: 11px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.trust-divider { width: 1px; height: 40px; background: var(--border); }

/* Hero right — full image */
.hero-right {
  position: relative; overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero-right::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.15), transparent);
}
.hero-badge {
  position: absolute; bottom: 36px; left: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(10,37,64,0.15);
  z-index: 2;
}
.hero-badge-title { font-size: 13px; font-weight: 800; color: var(--navy); }
.hero-badge-sub { font-size: 12px; color: var(--text-mid); font-weight: 500; margin-top: 2px; }
.hero-badge-bar {
  width: 100%; height: 4px; background: var(--light-grey);
  border-radius: 2px; margin-top: 10px; overflow: hidden;
}
.hero-badge-fill { height: 100%; width: 85%; background: var(--cyan); border-radius: 2px; }

/* ── LOGO BAR ─────────────────────────────────────── */
.logo-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 6%;
  display: flex; align-items: center; justify-content: center; gap: 60px;
  flex-wrap: wrap;
}
.logo-bar-label { font-size: 12px; font-weight: 700; color: var(--text-light); letter-spacing: 2px; text-transform: uppercase; }
.logo-bar-items { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
.logo-text {
  font-size: 16px; font-weight: 800; color: var(--border);
  letter-spacing: -0.5px; text-transform: uppercase;
  transition: color 0.2s;
}

/* ── SECTIONS ─────────────────────────────────────── */
section { padding: 96px 6%; }

.section-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 14px;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900; color: var(--navy);
  line-height: 1.1; letter-spacing: -0.5px;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 16px; color: var(--text-mid);
  font-weight: 500; line-height: 1.8;
  max-width: 560px;
}

/* ── ABOUT ─────────────────────────────────────────── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.about-image {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-image-badge {
  position: absolute; bottom: -1px; right: -1px;
  background: var(--navy);
  color: white; padding: 28px 32px;
  border-radius: 20px 0 20px 0;
}
.about-image-badge .big { font-family: 'Fraunces', serif; font-size: 48px; font-weight: 900; line-height: 1; }
.about-image-badge .small { font-size: 12px; font-weight: 600; opacity: 0.6; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

.about-content { padding: 20px 0; }
.about-content .section-sub { max-width: 100%; margin-bottom: 32px; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; font-weight: 500; color: var(--text-mid); line-height: 1.6;
}
.check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--cyan-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.check-icon svg { width: 12px; height: 12px; }

/* ── SERVICES ─────────────────────────────────────── */
.services { background: var(--off-white); }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  max-width: 1200px; margin: 0 auto 48px;
  flex-wrap: wrap; gap: 24px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1200px; margin: 0 auto;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 28px;
  transition: all 0.3s; cursor: default;
}
.service-card:hover {
  border-color: var(--cyan);
  box-shadow: 0 8px 40px rgba(0,180,216,0.1);
  transform: translateY(-4px);
}
.service-icon-box {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cyan-light); margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
}
.service-icon-box svg { width: 24px; height: 24px; color: var(--accent); }
.service-card h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-mid); font-weight: 500; line-height: 1.75; }

/* ── UAE STRIP ────────────────────────────────────── */
.uae-strip {
  background: var(--navy); padding: 0; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
}
.uae-content {
  padding: 80px 6% 80px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.uae-content .section-title { color: white; }
.uae-content .section-sub { color: rgba(255,255,255,0.65); max-width: 100%; }
.uae-points { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.uae-point {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.uae-point-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(0,180,216,0.2); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.uae-point-icon svg { width: 18px; height: 18px; color: var(--cyan); }
.uae-point-title { font-size: 14px; font-weight: 700; color: white; margin-bottom: 4px; }
.uae-point-desc { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; line-height: 1.6; }

.uae-image { position: relative; overflow: hidden; min-height: 500px; }
.uae-image img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.7; }

/* ── WHY US ───────────────────────────────────────── */
.why { background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1200px; margin: 48px auto 0;
}
.why-card {
  padding: 36px 28px; border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.why-card:hover { border-color: var(--cyan); box-shadow: 0 8px 40px rgba(0,180,216,0.08); }
.why-num {
  font-family: 'Fraunces', serif;
  font-size: 48px; font-weight: 900;
  color: var(--cyan); line-height: 1;
  margin-bottom: 10px;
}
.why-card h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-mid); font-weight: 500; line-height: 1.7; }

/* ── CAREERS HERO ─────────────────────────────────── */
.careers-hero {
  background: var(--off-white);
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 480px; overflow: hidden;
}
.careers-hero-content {
  padding: 80px 6% 80px 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.careers-hero-image { position: relative; overflow: hidden; }
.careers-hero-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── VACANCIES ────────────────────────────────────── */
.vacancies { background: var(--white); }
.vacancy-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  max-width: 920px; margin: 0 auto 24px;
  transition: all 0.3s;
}
.vacancy-card:hover { border-color: var(--cyan); box-shadow: 0 8px 40px rgba(0,180,216,0.08); }
.vacancy-header {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 24px; flex-wrap: wrap; gap: 16px;
}
.vacancy-title { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900; color: var(--navy); }
.vacancy-role-info { font-size: 13px; color: var(--text-light); font-weight: 600; margin-top: 4px; }

.badges { display: flex; gap: 8px; flex-wrap: wrap; }
.badge {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; padding: 5px 12px;
  border-radius: 20px;
}
.badge-blue { background: var(--cyan-light); color: var(--accent); }
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-orange { background: #fff3e0; color: #e65100; }

.vacancy-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-bottom: 28px;
}
.vacancy-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 12px;
}
.vac-list { list-style: none; }
.vac-list li {
  font-size: 14px; font-weight: 500; color: var(--text-mid);
  padding: 5px 0 5px 18px; position: relative; line-height: 1.5;
}
.vac-list li::before {
  content: ''; position: absolute; left: 0; top: 13px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan);
}
.vacancy-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 12px;
}
.vacancy-meta-item { font-size: 13px; font-weight: 600; color: var(--text-light); margin-bottom: 4px; }
.vacancy-meta-item strong { color: var(--text-dark); }

/* ── APPLY FORM ───────────────────────────────────── */
.apply-section { background: var(--off-white); }
.apply-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 64px; max-width: 1100px; margin: 56px auto 0;
  align-items: start;
}
.apply-info-title { font-family: 'Fraunces', serif; font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 16px; line-height: 1.2; }
.apply-info p { font-size: 14px; color: var(--text-mid); font-weight: 500; line-height: 1.8; margin-bottom: 28px; }
.contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.contact-icon-box {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--cyan-light); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon-box svg { width: 16px; height: 16px; color: var(--accent); }
.contact-row-text { font-size: 14px; font-weight: 600; color: var(--navy); }

.apply-note {
  background: var(--cyan-light); border-left: 3px solid var(--cyan);
  border-radius: 0 10px 10px 0; padding: 16px 18px; margin-top: 28px;
}
.apply-note-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 6px; }
.apply-note p { font-size: 13px; color: var(--text-mid); font-weight: 500; line-height: 1.7; }

.apply-form {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 44px;
  box-shadow: 0 4px 32px rgba(10,37,64,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 12px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--navy); margin-bottom: 8px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--text-dark); background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,180,216,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--navy);
  color: white; border: none; border-radius: 10px;
  padding: 16px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.5px;
  transition: background 0.2s, transform 0.2s;
}
.form-submit:hover { background: var(--accent); transform: translateY(-1px); }

.form-success {
  display: none; background: #e8f5e9;
  border: 1px solid #a5d6a7; border-radius: 10px;
  padding: 16px; text-align: center;
  color: #2e7d32; font-weight: 700; margin-top: 16px; font-size: 14px;
}

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  background: var(--cyan);
  padding: 72px 6%; text-align: center;
}
.cta-band h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; color: var(--navy);
  margin-bottom: 14px;
}
.cta-band p { font-size: 17px; color: rgba(10,37,64,0.7); font-weight: 500; margin-bottom: 32px; }
.btn-navy { background: var(--navy); color: white; display: inline-flex; align-items: center; gap: 8px; padding: 15px 32px; border-radius: 10px; font-size: 14px; font-weight: 700; text-decoration: none; transition: opacity 0.2s; }
.btn-navy:hover { opacity: 0.85; }

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--navy); padding: 64px 6% 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; max-width: 1200px; margin: 0 auto 48px;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px; font-weight: 800; color: white;
  text-decoration: none; display: block; margin-bottom: 14px;
}
.footer-logo span { color: var(--cyan); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.45); font-weight: 500; line-height: 1.8; max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px; display: flex; justify-content: space-between;
  align-items: center; max-width: 1200px; margin: 0 auto;
  font-size: 13px; color: rgba(255,255,255,0.3); font-weight: 500;
  flex-wrap: wrap; gap: 12px;
}

/* ── ANIMATIONS ───────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.d1 { animation-delay: 0.1s; opacity: 0; }
.d2 { animation-delay: 0.2s; opacity: 0; }
.d3 { animation-delay: 0.35s; opacity: 0; }
.d4 { animation-delay: 0.5s; opacity: 0; }

/* ── MOBILE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .hero, .about-grid, .uae-strip, .careers-hero, .apply-grid { grid-template-columns: 1fr; }
  .hero-right { min-height: 360px; }
  .uae-image { min-height: 300px; }
  .services-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .vacancy-cols { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 20px 6%; border-bottom: 1px solid var(--border); gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-left { padding: 60px 6%; }
  .services-header { flex-direction: column; }
  .btn-outline { margin-left: 0; margin-top: 12px; }
  .logo-bar { gap: 24px; }
  .logo-bar-items { gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .services-grid, .why-grid { grid-template-columns: 1fr; }
}
