:root {
  --navy: #0F2545;
  --navy-mid: #1A3A6B;
  --gold: #C4960C;
  --gold-light: #E8B82A;
  --gold-pale: #FDF6E3;
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --gray-light: #F0EDE8;
  --gray: #9B9590;
  --text: #1E1E1E;
  --text-light: #5A5550;
  --border: #E5E0D8;
  --shadow: 0 4px 24px rgba(15,37,69,0.08);
  --shadow-lg: 0 12px 48px rgba(15,37,69,0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

nav.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  text-decoration: none;
}

.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-logo-main span { color: var(--gold); }

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 20px;
  font-size: 13px !important;
  border-radius: 4px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--navy-mid) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  transition: 0.3s;
  display: block;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 40%, rgba(196,150,12,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(26,58,107,0.8) 0%, transparent 70%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: center;
  width: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,150,12,0.15);
  border: 1px solid rgba(196,150,12,0.3);
  color: var(--gold-light);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196,150,12,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.2s;
  cursor: pointer;
  display: inline-block;
  font-family: 'Outfit', sans-serif;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.5);
}

/* Hero card */
.hero-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 36px;
  backdrop-filter: blur(10px);
}

.hero-card-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 500;
}

.hero-stat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-light);
  min-width: 80px;
  line-height: 1;
}

.hero-stat-text {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.hero-stat-text strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 14px;
}

.hero-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 8px 0;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--gold-pale);
  border-bottom: 1px solid #EAD9A5;
  padding: 18px 32px;
}

.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--navy);
  font-weight: 500;
}

.trust-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 10px;
}

/* ─── SECTIONS ─── */
.section {
  padding: 96px 32px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-alt { background: var(--off-white); }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
}

h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h2.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  font-weight: 300;
}

.section-header {
  margin-bottom: 60px;
}

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-text p strong { color: var(--text); font-weight: 600; }

.about-quote {
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  background: var(--gold-pale);
  margin-top: 32px;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.6;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: 8px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}

.about-card:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.about-card-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.about-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-card {
  background: var(--white);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.service-card:hover { background: var(--gold-pale); }

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 40px; right: 40px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.service-card:hover::after { transform: scaleX(1); }

.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: var(--gold-light); }

.service-icon { font-size: 28px; margin-bottom: 16px; }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.8;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-tag {
  font-size: 11px;
  color: var(--navy);
  background: var(--gray-light);
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  transition: box-shadow 0.3s;
}

.team-card:hover { box-shadow: var(--shadow-lg); }

.team-avatar {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold-light);
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.team-bio {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── JOBS ─── */
.jobs-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  margin-bottom: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.job-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 12px;
}

.job-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

.job-badge {
  background: #ECFDF5;
  color: #065F46;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid #A7F3D0;
}

.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-light);
}

.job-meta-item svg {
  width: 14px; height: 14px;
  opacity: 0.5;
}

.job-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-skill {
  font-size: 12px;
  color: var(--navy);
  background: var(--gray-light);
  padding: 4px 10px;
  border-radius: 3px;
  font-weight: 500;
}

.job-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.job-salary {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.job-salary span {
  font-weight: 400;
  color: var(--gray);
  font-size: 12px;
}

/* Side panel */
.jobs-side {
  position: sticky;
  top: 90px;
}

.employer-panel {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px;
  color: var(--white);
}

.employer-panel h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.employer-panel p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* ─── FORMS ─── */
.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-label-dark {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 6px;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: var(--gold); }

.form-input-light {
  width: 100%;
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-input-light:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,150,12,0.1); }

textarea.form-input, textarea.form-input-light {
  resize: vertical;
  min-height: 90px;
}

/* ─── MODAL ─── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,37,69,0.75);
  z-index: 2000;
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border: none;
  background: var(--gray-light);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: background 0.2s;
}

.modal-close:hover { background: var(--border); }

.modal-job-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.modal-job-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.modal h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.success-msg {
  display: none;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  color: #065F46;
  padding: 16px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 16px;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px; height: 44px;
  background: var(--gold-pale);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  font-size: 14px;
  color: var(--text-light);
  text-decoration: none;
  line-height: 1.7;
}

.contact-item a:hover { color: var(--navy); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.2s;
  background: var(--white);
}

.social-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 48px 32px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
}

.footer-col h5 {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-logo-text span { color: var(--gold); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ─── MOBILE NAV ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.mobile-menu a:last-child { border-bottom: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 40px;
  }
  /* Show stats as horizontal row instead of hiding */
  .hero-card {
    display: block;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 24px;
  }
  .hero-stat-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .hero-stat-item { flex-direction: column; gap: 6px; align-items: flex-start; }
  .hero-stat-num { font-size: 28px; min-width: unset; }
  .hero-divider { display: none; }

  /* Sections */
  .section { padding: 56px 20px; }
  .section-header { margin-bottom: 40px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 24px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 20px; }
  .team-card { padding: 28px 24px; }

  /* Jobs */
  .jobs-layout { grid-template-columns: 1fr; }
  .jobs-side { position: static; }
  .employer-panel { padding: 24px; }
  .job-card { padding: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 600px) {
  /* Hero */
  .hero-inner { padding: 48px 16px; }
  .hero h1 { font-size: 36px; }
  .hero-desc { font-size: 15px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { text-align: center; }
  .hero-stat-list { grid-template-columns: repeat(2, 1fr); }
  .hero-stat-num { font-size: 24px; }

  /* Trust bar */
  .trust-bar { padding: 14px 16px; }
  .trust-bar-inner { gap: 12px; justify-content: flex-start; }
  .trust-item { font-size: 12px; }

  /* Sections */
  .section { padding: 48px 16px; }
  .section-sub { font-size: 14px; }

  /* Services */
  .service-card { padding: 28px 20px; }
  .service-num { font-size: 36px; }

  /* Jobs */
  .job-card { padding: 18px 16px; }
  .job-header { flex-wrap: wrap; gap: 8px; }
  .job-meta { gap: 12px; }
  .job-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .job-footer .btn-primary { width: 100%; text-align: center; }

  /* Social buttons */
  .social-row { flex-wrap: wrap; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; }
  footer { padding: 36px 16px 24px; }

  /* Nav */
  .nav-inner { padding: 0 16px; }
  .mobile-menu { padding: 16px; }
}

@media (max-width: 380px) {
  .hero-stat-list { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-stat-num { font-size: 22px; }
  .hero-stat-text { font-size: 11px; }
  .trust-item { font-size: 11px; }
}

/* ─── JOBS PAGE ─── */
.jobs-page-header {
  background: var(--navy);
  padding: 80px 32px 60px;
  margin-top: 72px;
}

.jobs-page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.jobs-page-header h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.jobs-page-header p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
}

.jobs-search-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  margin-top: -28px;
  position: relative;
  z-index: 10;
}

.jobs-search-bar {
  width: 100%;
  padding: 16px 20px 16px 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  outline: none;
  box-shadow: var(--shadow-lg);
  transition: border-color 0.2s;
}

.jobs-search-bar:focus { border-color: var(--gold); }

.jobs-search-icon {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}

.jobs-results-meta {
  max-width: 1200px;
  margin: 32px auto 16px;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--text-light);
}

.jobs-results-meta strong { color: var(--navy); }

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  padding-bottom: 48px;
}

.pagination button {
  padding: 9px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  transition: all 0.2s;
}

.pagination button:hover:not(:disabled) {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pagination .page-info {
  font-size: 13px;
  color: var(--text-light);
  padding: 0 8px;
}

@media (max-width: 600px) {
  .jobs-page-header { padding: 60px 20px 50px; }
  .jobs-search-wrap { padding: 0 20px; }
  .jobs-results-meta { padding: 0 20px; flex-direction: column; align-items: flex-start; gap: 4px; }
}

@media (max-width: 600px) {
  .jobs-page-header { padding: 48px 16px 44px; }
  .jobs-search-wrap { padding: 0 16px; }
  .jobs-results-meta { padding: 0 16px; }
  #jobListings, #pagination { padding: 0 16px; }
}

/* ─── ANIMATIONS ─── */
.fade-in-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}
