/* ============================================================
   DriveForward — Main Stylesheet
   Design: Professional recruitment / opportunities platform
   ============================================================ */

/* ── CSS Variables (fallbacks; overridden by DB settings) ── */
:root {
  --primary:      #001a4d;
  --primary-mid:  #003b99;
  --accent:       #ff8c00;
  --accent-dark:  #cc7000;
  --dark:         #111827;
  --mid:          #374151;
  --muted:        #6b7280;
  --light:        #f9fafb;
  --border:       #e5e7eb;
  --white:        #ffffff;
  --radius:       10px;
  --radius-lg:    16px;
  --shadow:       0 2px 12px rgba(0,0,0,.08);
  --shadow-md:    0 4px 24px rgba(0,0,0,.12);
  --shadow-lg:    0 8px 48px rgba(0,0,0,.16);
  --transition:   .2s ease;
  --font-body:    'Inter', sans-serif;
  --font-display: 'Fraunces', serif;
  --container:    1200px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }
ul { list-style: none; }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
.eyebrow {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 8px; }
.section-subtitle { color: var(--muted); font-size: 1.05rem; margin-bottom: 48px; max-width: 560px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(255,140,0,.35); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-ghost { background: transparent; color: var(--accent); border: none; padding: 0; }
.btn-ghost:hover { text-decoration: underline; }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: box-shadow .2s;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}
.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.site-logo  { height: 44px; width: auto; object-fit: contain; }
.logo-text  { font-family: var(--font-display); font-size: 1.5rem; font-weight: 900; color: var(--primary); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 8px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--mid);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: var(--primary); background: var(--light); }
.nav-cta-btn {
  padding: 10px 20px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 700;
  margin-left: 8px;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta-btn:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* ── Hamburger ─────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hamburger:hover { background: var(--light); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all .25s;
}

/* ── Mobile Nav ─────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0; right: -320px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1000;
  transition: right .3s ease;
  box-shadow: -4px 0 32px rgba(0,0,0,.15);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-inner { padding: 24px; display: flex; flex-direction: column; gap: 4px; padding-top: 64px; }
.mobile-nav-close {
  position: absolute; top: 16px; right: 16px;
  background: var(--light); border: none; border-radius: 50%;
  width: 36px; height: 36px; font-size: 1.1rem; color: var(--mid);
}
.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-weight: 500;
  color: var(--dark);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-nav-link:hover { background: var(--light); }
.mobile-nav-cta {
  margin-top: 12px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-align: center;
  border-radius: var(--radius);
}
.mobile-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 999;
}
.mobile-nav-overlay.show { display: block; }

/* ── Site Flash ─────────────────────────────────────────── */
.site-flash {
  position: fixed; top: 80px; right: 20px;
  z-index: 800; min-width: 280px; max-width: 420px;
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
  color: var(--white);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, var(--primary) 45%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 100px 0 80px;
}
.hero-content .eyebrow { color: var(--accent); }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges {
  display: flex; gap: 20px; margin-top: 48px; flex-wrap: wrap;
}
.hero-badge {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,.9); font-size: .9rem; font-weight: 500;
}
.hero-badge i { color: var(--accent); font-size: 1.1rem; }

/* ── Section Headers ────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-subtitle { margin: 12px auto 0; }

/* ── Opportunity Cards ──────────────────────────────────── */
.opp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.opp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.opp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.opp-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--primary);
  position: relative;
}
.opp-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.opp-card:hover .opp-card-image img { transform: scale(1.04); }
.opp-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
}
.opp-card-image-placeholder i { font-size: 3rem; color: rgba(255,255,255,.25); }
.opp-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
}
.opp-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.opp-card-meta {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px;
}
.opp-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-size: .8rem; color: var(--muted); font-weight: 500;
}
.opp-meta-item i { color: var(--accent); font-size: .75rem; }
.opp-card-title { margin-bottom: 10px; color: var(--primary); font-size: 1.15rem; }
.opp-card-desc { color: var(--muted); font-size: .9rem; line-height: 1.6; flex: 1; margin-bottom: 20px; }
.opp-card-footer {
  display: flex; gap: 10px; margin-top: auto;
  padding-top: 16px; border-top: 1px solid var(--border);
}
.opp-card-footer .btn { flex: 1; justify-content: center; }

/* ── Detail Hero ────────────────────────────────────────── */
.detail-hero {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.detail-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.detail-hero-overlay { position: absolute; inset: 0; background: rgba(0,26,77,.8); }
.detail-hero-content { position: relative; z-index: 2; }
.detail-hero h1 { color: var(--white); margin-bottom: 20px; }
.detail-meta {
  display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 28px;
}
.detail-meta-item {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.85); font-size: .95rem;
}
.detail-meta-item i { color: var(--accent); }
.detail-pay {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--white);
  padding: 8px 18px; border-radius: 20px;
  font-weight: 700; font-size: 1rem; margin-bottom: 28px;
}
.detail-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Content Blocks ─────────────────────────────────────── */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }
.content-block { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 24px; }
.content-block h3 { color: var(--primary); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 2px solid var(--accent); display: inline-block; }
.content-list { padding-left: 0; }
.content-list li { padding: 6px 0 6px 24px; position: relative; color: var(--mid); }
.content-list li::before { content: ''; position: absolute; left: 0; top: 14px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ── Sticky Apply Sidebar ───────────────────────────────── */
.apply-sidebar { position: sticky; top: 90px; }
.apply-sidebar-card {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.apply-sidebar-card h4 { color: var(--white); margin-bottom: 8px; }
.apply-sidebar-card p  { color: rgba(255,255,255,.8); font-size: .9rem; margin-bottom: 20px; }
.apply-sidebar-card .btn { width: 100%; justify-content: center; }
.sidebar-info { background: var(--light); border-radius: var(--radius-lg); padding: 24px; }
.sidebar-info-row {
  display: flex; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border); font-size: .9rem;
}
.sidebar-info-row:last-child { border-bottom: none; }
.sidebar-info-row i { color: var(--accent); width: 18px; flex-shrink: 0; margin-top: 2px; }
.sidebar-info-label { color: var(--muted); font-size: .8rem; display: block; }
.sidebar-info-value { color: var(--dark); font-weight: 500; }

/* ── How It Works ───────────────────────────────────────── */
.steps-section { background: var(--light); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}
.step-card { text-align: center; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: var(--primary); color: var(--white);
  border-radius: 50%; font-family: var(--font-display);
  font-weight: 900; font-size: 1.3rem; margin-bottom: 16px;
}
.step-icon {
  width: 64px; height: 64px;
  background: rgba(0,26,77,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-icon i { font-size: 1.5rem; color: var(--primary); }
.step-card h4 { color: var(--primary); margin-bottom: 8px; }
.step-card p  { font-size: .9rem; }

/* ── Benefits ───────────────────────────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.benefit-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon i { font-size: 1.3rem; color: var(--white); }
.benefit-card h4 { color: var(--primary); margin-bottom: 8px; }
.benefit-card p  { font-size: .9rem; color: var(--muted); }

/* ── Locations ──────────────────────────────────────────── */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.loc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.loc-card-image {
  height: 180px; overflow: hidden; background: var(--primary);
}
.loc-card-image img { width: 100%; height: 100%; object-fit: cover; }
.loc-card-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
}
.loc-card-image-placeholder i { font-size: 2.5rem; color: rgba(255,255,255,.3); }
.loc-card-body { padding: 20px; }
.loc-card h3 { font-size: 1.1rem; color: var(--primary); margin-bottom: 8px; }
.loc-card p  { font-size: .88rem; color: var(--muted); margin-bottom: 16px; }
.loc-card-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.loc-meta-item { display: flex; align-items: center; gap: 5px; font-size: .8rem; color: var(--muted); }
.loc-meta-item i { color: var(--accent); }

/* ── CTA Section ────────────────────────────────────────── */
.cta-section {
  position: relative; overflow: hidden;
  background: var(--primary); color: var(--white);
  text-align: center;
}
.cta-section-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .2; }
.cta-overlay    { position: absolute; inset: 0; background: rgba(0,26,77,.75); }
.cta-content    { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.cta-section h2  { color: var(--white); margin-bottom: 16px; }
.cta-section p   { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 36px; }
.cta-actions     { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── About Section ──────────────────────────────────────── */
.about-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-image {
  border-radius: var(--radius-lg); overflow: hidden; height: 480px;
  background: var(--primary);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
}
.about-image-placeholder i { font-size: 4rem; color: rgba(255,255,255,.2); }
.about-text h2 { margin-bottom: 20px; }
.about-stats { display: flex; gap: 32px; margin-top: 32px; }
.about-stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 900; color: var(--accent); }
.about-stat-label { font-size: .85rem; color: var(--muted); }

/* ── Page Banner ────────────────────────────────────────── */
.page-banner {
  background: var(--primary); color: var(--white);
  padding: 60px 0;
}
.page-banner h1 { color: var(--white); }
.page-banner p  { color: rgba(255,255,255,.75); margin-top: 8px; }
.page-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }

/* ── Application Form ───────────────────────────────────── */
.apply-page { padding: 60px 0 80px; background: var(--light); }
.apply-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: start; }
.apply-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
}
.apply-form-header {
  background: var(--primary); color: var(--white); padding: 28px 32px;
}
.apply-form-header h2 { color: var(--white); font-size: 1.5rem; }
.apply-form-header p  { color: rgba(255,255,255,.8); margin-top: 4px; font-size: .9rem; }
.apply-form-body { padding: 32px; }
.form-section { margin-bottom: 32px; }
.form-section-title {
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  color: var(--primary); margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .9rem; font-weight: 600;
  color: var(--dark); margin-bottom: 6px;
}
.form-group .required-star { color: var(--accent); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(0,59,153,.12);
}
.form-control::placeholder { color: var(--muted); }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e"); background-position: right 12px center; background-repeat: no-repeat; background-size: 16px; padding-right: 36px; }
.help-text { font-size: .8rem; color: var(--muted); margin-top: 5px; }
.form-control-file {
  width: 100%;
  padding: 10px 0;
}
.radio-group, .checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.radio-item, .checkbox-item { display: flex; align-items: center; gap: 10px; cursor: pointer; font-size: .9rem; }
.radio-item input, .checkbox-item input { accent-color: var(--primary); width: 16px; height: 16px; cursor: pointer; }
.opp-selector-wrap { position: relative; }
.opp-selector {
  background: var(--light); border: 2px solid var(--primary); border-radius: var(--radius-lg);
  padding: 20px; margin-bottom: 28px;
}
.opp-selector h4 { color: var(--primary); margin-bottom: 12px; }
.opp-selector select { font-weight: 500; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert {
  padding: 14px 20px; border-radius: var(--radius);
  font-size: .9rem; margin-bottom: 20px;
  display: flex; align-items: flex-start; gap: 10px;
}
.alert i { margin-top: 2px; flex-shrink: 0; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-info    { background: #eff6ff; border: 1px solid #bfdbfe; color: #1e40af; }
.alert-warning { background: #fffbeb; border: 1px solid #fde68a; color: #92400e; }
.alert ul { margin-top: 6px; padding-left: 16px; }
.alert ul li { list-style: disc; padding: 2px 0; }

/* ── Success Page ───────────────────────────────────────── */
.success-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px; }
.success-card {
  max-width: 540px; text-align: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 56px 40px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: #dcfce7; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #16a34a;
}
.success-card h1 { font-size: 2rem; margin-bottom: 16px; }
.success-card p  { color: var(--muted); margin-bottom: 32px; }
.success-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Page ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; }
.contact-info-card {
  background: var(--primary); color: var(--white);
  border-radius: var(--radius-lg); padding: 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 24px; }
.contact-info-row { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.1rem;
}
.contact-info-label { font-size: .8rem; color: rgba(255,255,255,.6); margin-bottom: 2px; }
.contact-info-value { color: var(--white); font-weight: 500; }
.contact-info-value a { color: var(--white); }
.contact-wa-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 14px 22px; border-radius: var(--radius);
  font-weight: 700; margin-top: 24px;
  transition: background var(--transition);
}
.contact-wa-btn:hover { background: #1ebe5d; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; }
.contact-form-card h3 { margin-bottom: 24px; }

/* ── Page Banners ───────────────────────────────────────── */
.location-detail-hero { background: var(--primary); padding: 70px 0; position: relative; overflow: hidden; }
.location-detail-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.location-detail-hero-overlay { position: absolute; inset: 0; background: rgba(0,26,77,.7); }
.location-detail-hero-content { position: relative; z-index: 2; color: var(--white); }
.location-detail-hero-content h1 { color: var(--white); margin-bottom: 16px; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.7); margin-bottom: 16px; }
.breadcrumb a { color: rgba(255,255,255,.85); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: .5; }

/* ── WhatsApp Float ─────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 800;
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: var(--white);
  padding: 14px 20px; border-radius: 50px;
  font-weight: 600; font-size: .9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.04); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.whatsapp-float i { font-size: 1.3rem; }
.wa-label { white-space: nowrap; }

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: #0a0f1e; color: rgba(255,255,255,.75);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; margin-top: 20px; }
.social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7); font-size: .9rem;
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--accent); color: var(--white); }
.footer-heading { color: var(--white); font-size: .85rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 20px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; font-size: .88rem; color: rgba(255,255,255,.65); }
.footer-contact i { color: var(--accent); font-size: .9rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.65); }
.footer-contact a:hover { color: var(--white); }
.footer-address { align-items: flex-start; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.45);
  flex-wrap: wrap; gap: 12px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.45); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

/* ── Empty State ─────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 80px 24px;
  color: var(--muted);
}
.empty-state i { font-size: 3rem; margin-bottom: 20px; opacity: .35; }
.empty-state h3 { color: var(--mid); margin-bottom: 10px; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; padding-top: 48px; }
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 12px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; font-weight: 500; color: var(--mid);
  transition: all var(--transition);
}
.pagination a:hover    { border-color: var(--primary); color: var(--primary); }
.pagination .active    { background: var(--primary); border-color: var(--primary); color: var(--white); }
.pagination .disabled  { opacity: .4; pointer-events: none; }

/* ── Map Embed ──────────────────────────────────────────── */
.map-embed { border-radius: var(--radius-lg); overflow: hidden; height: 300px; margin-top: 20px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ── Related ────────────────────────────────────────────── */
.related-section { background: var(--light); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .apply-sidebar { position: static; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
  .about-image { height: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .hero { min-height: 70vh; }
  .opp-grid { grid-template-columns: 1fr; }
  .loc-grid  { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .detail-meta { flex-direction: column; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
  .whatsapp-float .wa-label { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 16px; }
  .success-card { padding: 36px 24px; }
}