/* ============================================================
   DauinJobs — Shared Stylesheet
   Used by: index.html, login.html, register.html, and all pages
   ============================================================ */

/* ── TOKENS ── */
:root {
  --ocean:       #1a5f7a;
  --ocean-mid:   #2980a0;
  --ocean-light: #e8f4f8;
  --teal:        #0d9488;
  --teal-light:  #e6f7f6;
  --sand:        #f5f0e8;
  --sand-dark:   #e8dfc8;
  --ink:         #1a1a2e;
  --body:        #3d4a5c;
  --muted:       #7a8a99;
  --border:      #dde5ed;
  --white:       #ffffff;
  --bg:          #f8fafc;

  /* Form tokens */
  --input-border:  #d0dae4;
  --input-focus:   var(--ocean);
  --input-radius:  7px;
  --danger:        #e03e3e;
  --danger-light:  #fdf2f2;
  --success:       #16a34a;
  --success-light: #f0fdf4;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4, .serif {
  font-family: 'Playfair Display', serif;
}

/* ── NAV ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  min-height: 62px;
  position: relative;
  z-index: 1000;
}
.navbar > .container {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink) !important;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 0;
}
.brand-icon {
  width: 30px; height: 30px;
  background: var(--ocean);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.brand-dot { color: var(--teal); }

/* Desktop nav links */
.navbar-nav {
  display: flex;
  align-items: center;
  flex-direction: row;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
}
.nav-link {
  font-size: 0.875rem;
  color: var(--muted) !important;
  padding: 0 0.9rem !important;
  font-weight: 400;
  transition: color 0.15s;
  text-decoration: none;
  display: block;
}
.nav-link:hover { color: var(--ink) !important; }

/* Desktop CTA group */
.navbar-cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-nav-login {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--ink);
  font-size: 0.85rem;
  padding: 0.38rem 1rem;
  border-radius: 5px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  transition: all 0.15s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-nav-login:hover { border-color: var(--ocean); color: var(--ocean); }

.btn-nav-cta {
  background: var(--ocean);
  color: #fff;
  font-size: 0.85rem;
  padding: 0.38rem 1rem;
  border-radius: 5px;
  border: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  transition: background 0.15s;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-nav-cta:hover { background: #145068; color: #fff; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--ink);
  font-size: 1.1rem;
  line-height: 1;
  border-radius: 5px;
  transition: background 0.15s;
  z-index: 1100;
  position: relative;
}
.nav-hamburger:hover { background: var(--bg); }
.nav-hamburger:focus { outline: none; }

/* ── MOBILE DRAWER ── */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.45);
  z-index: 1090;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(2px);
}
.nav-overlay.open {
  display: block;
  opacity: 1;
}

.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 280px;
  height: 100%;
  background: var(--white);
  z-index: 1100;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,0.12);
}
.nav-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.25rem;
  min-height: 62px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: 1rem;
  padding: 6px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
}
.drawer-close:hover { background: var(--bg); color: var(--ink); }
.drawer-close:focus { outline: none; }

.drawer-nav {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.15s, color 0.15s;
}
.drawer-nav a:last-child { border-bottom: none; }
.drawer-nav a i {
  width: 18px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  transition: color 0.15s;
}
.drawer-nav a:hover { background: var(--bg); color: var(--ocean); }
.drawer-nav a:hover i { color: var(--ocean); }

.drawer-footer {
  padding: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex-shrink: 0;
}
.drawer-footer .btn-nav-login,
.drawer-footer .btn-nav-cta {
  width: 100%;
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.875rem;
}

/* Show/hide based on breakpoint */
@media (max-width: 991.98px) {
  .nav-hamburger    { display: flex; align-items: center; justify-content: center; }
  .navbar-nav       { display: none;}
  .navbar-cta-group { display: none; }
}
@media (min-width: 992px) {
  .nav-hamburger    { display: none; }
  .nav-drawer       { display: none !important; }
  .nav-overlay      { display: none !important; }
  .navbar-nav       { display: flex; flex-direction: row; align-items: center; }
  .navbar-cta-group { display: flex; align-items: center; gap: 0.5rem; }
}

/* ── SECTION LABELS & TITLES ── */
.sec-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.sec-title em { font-style: italic; font-weight: 400; color: var(--ocean); }

/* ── BUTTONS ── */
.btn-primary-ocean {
  background: var(--ocean);
  color: #fff; border: none;
  padding: 0.62rem 1.35rem;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: background 0.15s;
}
.btn-primary-ocean:hover { background: #145068; color: #fff; }

.btn-outline-ocean {
  background: transparent;
  color: var(--ocean); border: 1px solid var(--ocean);
  padding: 0.62rem 1.35rem; border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem; font-weight: 500;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: all 0.15s;
}
.btn-outline-ocean:hover { background: var(--ocean); color: #fff; }

.btn-cta-white {
  background: #fff;
  color: var(--ink);
  border: none;
  padding: 0.65rem 1.4rem;
  border-radius: 6px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.875rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  display: inline-block; transition: opacity 0.15s;
}
.btn-cta-white:hover { opacity: 0.88; color: var(--ink); }

/* Full-width button variant */
.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ── FORM ELEMENTS ── */
.form-group { margin-bottom: 1.1rem; }

.form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-control {
  width: 100%;
  border: 1.5px solid var(--input-border);
  border-radius: var(--input-radius);
  padding: 0.65rem 0.9rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
}
.form-control::placeholder { color: #aab4be; }
.form-control:focus {
  border-color: var(--input-focus);
  box-shadow: 0 0 0 3px rgba(26, 95, 122, 0.1);
}
.form-control.is-invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(224, 62, 62, 0.08);
}

/* Input with icon */
.input-wrap {
  position: relative;
}
.input-wrap .form-control {
  padding-left: 2.5rem;
}
.input-wrap .input-icon {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  pointer-events: none;
}
.input-wrap .input-icon-right {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 0.85rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color 0.15s;
}
.input-wrap .input-icon-right:hover { color: var(--ocean); }

.form-hint {
  font-size: 0.77rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.form-error {
  font-size: 0.77rem;
  color: var(--danger);
  margin-top: 0.3rem;
  display: none;
}
.form-control.is-invalid + .form-error { display: block; }

/* ── AUTH ALERT ── */
.auth-alert {
  background: var(--danger-light);
  border: 1px solid #f5c6c6;
  border-left: 4px solid var(--danger);
  border-radius: 7px;
  padding: 0.85rem 1rem;
  font-size: 0.82rem;
  color: var(--danger);
  display: none;
  gap: 10px;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}
.auth-alert.show { display: flex; }
.auth-alert i { font-size: 0.9rem; flex-shrink: 0; margin-top: 2px; }
.auth-alert ul { margin: 0; padding-left: 1rem; display: flex; flex-direction: column; gap: 3px; }
.auth-alert ul li { line-height: 1.5; }

.form-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
  font-size: 0.78rem;
  color: var(--muted);
}
.form-divider::before,
.form-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--sand);
  border-bottom: 1px solid var(--sand-dark);
  padding: 18px 0;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--body);
}
.trust-item i { color: var(--ocean); font-size: 0.85rem; }

/* ── HERO (landing page) ── */
.hero {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -100px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,95,122,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ocean-light);
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 1.4rem;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 1.1rem;
  font-weight: 700;
}
.hero h1 em { font-style: italic; font-weight: 400; color: var(--ocean); }
.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 420px;
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.7;
}
.search-wrap {
  background: var(--white);
  border: 2px solid var(--ocean);
  border-radius: 8px;
  display: flex;
  max-width: 500px;
  overflow: hidden;
}
.search-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 0.8rem 1rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--ink);
  background: transparent;
}
.search-wrap input::placeholder { color: #aab4be; }
.search-wrap button {
  background: var(--ocean);
  color: #fff;
  border: none;
  padding: 0.8rem 1.2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer;
  display: flex; align-items: center; gap: 6px;
  transition: background 0.15s;
  white-space: nowrap;
}
.search-wrap button:hover { background: #145068; }
.quick-links {
  margin-top: 1rem;
  display: flex; flex-wrap: wrap;
  gap: 0.45rem; align-items: center;
}
.quick-label { font-size: 0.77rem; color: var(--muted); }
.quick-chip {
  font-size: 0.77rem;
  background: var(--sand);
  color: var(--body);
  padding: 0.22rem 0.65rem;
  border-radius: 20px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.quick-chip:hover { background: var(--ocean-light); color: var(--ocean); }
.hero-numbers {
  display: flex; gap: 2.5rem;
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--ink); line-height: 1;
}
.hero-num-label { font-size: 0.77rem; color: var(--muted); margin-top: 4px; }

/* Hero panel */
.hero-panel {
  background: var(--ocean);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.hero-panel::after {
  content: '';
  position: absolute;
  top: -30px; left: -30px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.panel-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  margin-bottom: 1.4rem;
  line-height: 1.3;
}
.panel-job {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
  border: 1px solid rgba(255,255,255,0.12);
  transition: background 0.15s;
  cursor: pointer;
}
.panel-job:hover { background: rgba(255,255,255,0.16); }
.panel-job:last-child { margin-bottom: 0; }
.panel-job-title { font-size: 0.88rem; font-weight: 600; margin-bottom: 0.2rem; }
.panel-job-meta { font-size: 0.75rem; color: rgba(255,255,255,0.65); display: flex; gap: 0.8rem; align-items: center; }
.panel-badge {
  font-size: 0.65rem;
  background: rgba(13,148,136,0.4);
  color: #7fffd4;
  padding: 0.12rem 0.5rem;
  border-radius: 3px; font-weight: 600;
}
.panel-footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 6px;
}

/* ── JOB CARDS ── */
.jobs-section {
  padding: 72px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.filter-row {
  display: flex; gap: 0.45rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-btn {
  font-size: 0.8rem;
  padding: 0.32rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 5px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--ocean); color: var(--ocean); }
.filter-btn.active { background: var(--ocean); color: #fff; border-color: var(--ocean); }

.job-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.2rem 1.3rem;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  height: 100%; display: flex; flex-direction: column;
}
.job-card:hover {
  border-color: var(--ocean);
  box-shadow: 0 6px 24px rgba(26,95,122,0.09);
  transform: translateY(-2px);
}
.job-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 0.75rem;
}
.job-logo {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--ocean-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--ocean); flex-shrink: 0;
}
.job-type-badge {
  font-size: 0.68rem;
  padding: 0.16rem 0.5rem;
  border-radius: 4px;
  background: var(--teal-light);
  color: var(--teal);
  font-weight: 600;
}
.job-company { font-size: 0.77rem; color: var(--muted); margin-bottom: 0.25rem; }
.job-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.55rem;
  line-height: 1.3; letter-spacing: -0.01em;
}
.job-meta {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.job-meta-item {
  font-size: 0.77rem; color: var(--muted);
  display: flex; align-items: center; gap: 4px;
}
.job-meta-item i { font-size: 0.68rem; }
.job-pay { font-size: 0.82rem; font-weight: 600; color: var(--ocean); }
.job-tags {
  display: flex; flex-wrap: wrap; gap: 0.35rem;
  margin-top: auto; padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.job-tag {
  font-size: 0.7rem;
  background: var(--bg);
  color: var(--muted);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
}

/* ── CATEGORIES ── */
.cat-section {
  padding: 72px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.cat-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.35rem 1.25rem;
  background: var(--white);
  cursor: pointer;
  transition: all 0.18s;
  text-decoration: none; color: inherit; display: block;
}
.cat-card:hover { border-color: var(--ocean); background: var(--ocean); color: #fff; }
.cat-card:hover .cat-icon-wrap { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.9); }
.cat-card:hover .cat-count { color: rgba(255,255,255,0.55); }
.cat-icon-wrap {
  width: 42px; height: 42px;
  background: var(--ocean-light);
  color: var(--ocean);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; margin-bottom: 0.9rem;
  transition: all 0.18s;
}
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 700;
  margin-bottom: 0.2rem; letter-spacing: -0.01em;
}
.cat-count { font-size: 0.75rem; color: var(--muted); transition: color 0.18s; }

/* ── HOW IT WORKS ── */
.how-section {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.step-card {
  padding: 1.5rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  height: 100%;
}
.step-num-badge {
  width: 34px; height: 34px;
  background: var(--ocean-light);
  color: var(--ocean);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  margin-bottom: 1rem;
}
.step-icon-row { font-size: 1.2rem; color: var(--ocean); margin-bottom: 0.75rem; }
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--ink); margin-bottom: 0.35rem;
}
.step-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin: 0; }

/* ── DUAL CTA ── */
.dual-cta {
  padding: 80px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.cta-card {
  border-radius: 14px;
  padding: 2.5rem 2rem;
  height: 100%;
}
.cta-card.seekers { background: var(--ocean); color: #fff; }
.cta-card.employers { background: var(--ink); color: #fff; }
.cta-card .cta-pretitle {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.6;
  margin-bottom: 0.5rem;
}
.cta-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2; margin-bottom: 0.75rem;
}
.cta-card h3 em { font-style: italic; font-weight: 400; }
.cta-card p { font-size: 0.88rem; opacity: 0.65; margin-bottom: 1.6rem; max-width: 300px; }
.cta-card ul { list-style: none; padding: 0; margin-top: 1.5rem; }
.cta-card ul li {
  font-size: 0.82rem;
  opacity: 0.65;
  margin-bottom: 0.4rem;
  display: flex; align-items: center; gap: 8px;
}
.cta-card ul li i { opacity: 1; font-size: 0.7rem; }

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 52px 0 28px;
}
.footer-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 1.1rem;
  color: #fff; display: flex; align-items: center; gap: 8px;
  text-decoration: none;
}
.footer-brand-icon {
  width: 28px; height: 28px;
  background: var(--ocean-mid);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; color: #fff;
}
.footer-dot { color: var(--teal); }
.footer-desc { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 0.6rem; max-width: 210px; }
.footer-heading {
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  font-weight: 600; margin-bottom: 1rem;
}
.footer-link {
  display: block; font-size: 0.82rem;
  color: rgba(255,255,255,0.55); text-decoration: none;
  margin-bottom: 0.5rem; transition: color 0.15s;
}
.footer-link:hover { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.77rem; color: rgba(255,255,255,0.25);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.social-row { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-btn {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
  text-decoration: none; transition: all 0.15s;
}
.social-btn:hover { border-color: rgba(255,255,255,0.3); color: #fff; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.anim-fade-up   { animation: fadeUp 0.55s ease both; }
.anim-delay-1   { animation-delay: 0.1s; }
.anim-delay-2   { animation-delay: 0.2s; }
.anim-delay-3   { animation-delay: 0.3s; }
.anim-delay-4   { animation-delay: 0.35s; }
