/* ══════════════════════════════════════════════════
   CHD Shipping — Main Stylesheet
   Aesthetic: Maritime luxury — deep navy, gold, clean whites
   ══════════════════════════════════════════════════ */

:root {
  --navy:        #0f2547;
  --navy-mid:    #1a3c6e;
  --navy-light:  #2558a0;
  --gold:        #f4c842;
  --gold-dark:   #d4a820;
  --white:       #ffffff;
  --off-white:   #f7f9fc;
  --gray-100:    #eef2f7;
  --gray-200:    #dce4ef;
  --gray-400:    #8fa3bf;
  --gray-600:    #4a6080;
  --text:        #0d1f35;
  --text-muted:  #5a738f;
  --success:     #22c55e;
  --danger:      #ef4444;
  --warning:     #f59e0b;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(15,37,71,.10);
  --shadow-lg:   0 12px 48px rgba(15,37,71,.18);
  --transition:  .25s cubic-bezier(.4,0,.2,1);
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }

/* ── Layout Utilities ─────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-muted { color: var(--text-muted); }

/* ── Buttons ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(244,200,66,.35); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
button.btn { font: inherit; }

/* ── Form Inputs ──────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 500; font-size: .9rem; color: var(--gray-600); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  appearance: none;
}
.form-control:focus { outline: none; border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(37,88,160,.12); }
.form-control::placeholder { color: var(--gray-400); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px){ .form-row { grid-template-columns: 1fr; } }

.form-error { color: var(--danger); font-size: .85rem; margin-top: 4px; }
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  max-width: 520px;
  margin: 0 auto;
}
@media(max-width:600px){ .form-card { padding: 28px 20px; } }

/* ── Flash messages ───────────────────────────── */
.flash {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.flash-success { background: #dcfce7; color: #166534; border-left: 4px solid var(--success); }
.flash-error   { background: #fee2e2; color: #991b1b; border-left: 4px solid var(--danger); }
.flash-info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ── Status Badges ────────────────────────────── */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: .02em;
  white-space: nowrap;
}
.badge-pending   { background: #fef3c7; color: #92400e; }
.badge-transit   { background: #dbeafe; color: #1e40af; }
.badge-arrived   { background: #e0e7ff; color: #3730a3; }
.badge-out       { background: #fce7f3; color: #9d174d; }
.badge-delivered { background: #dcfce7; color: #166534; }
.badge-hold      { background: #fee2e2; color: #991b1b; }
.badge-cancelled { background: #f3f4f6; color: #6b7280; }

/* ══════════════════════════════════════════════
   HEADER / NAV
══════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15,37,71,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(244,200,66,.15);
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,.25);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-icon {
  width: 40px; height: 40px;
  background: var(--gold);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 18px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.logo-text span { color: var(--gold); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}
.main-nav a {
  color: rgba(255,255,255,.75);
  font-weight: 500;
  font-size: .9rem;
  transition: var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--white);
}
.main-nav a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-nav-outline {
  padding: 8px 18px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 8px;
  color: var(--white);
  font-size: .85rem;
  font-family: var(--font-display);
  font-weight: 600;
  transition: var(--transition);
}
.btn-nav-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-nav-solid {
  padding: 8px 18px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  font-size: .85rem;
  font-family: var(--font-display);
  font-weight: 700;
  transition: var(--transition);
}
.btn-nav-solid:hover { background: var(--gold-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

@media(max-width:900px){
  .hamburger { display: flex; }
  .main-nav, .nav-actions {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
    border-top: 1px solid rgba(244,200,66,.2);
  }
  .main-nav { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-actions { flex-direction: row; padding-top: 0; border-top: none; }
  .main-nav.open, .nav-actions.open { display: flex; }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #0c1f40 40%, #162d55 100%);
  display: flex;
  align-items: center;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 40%, rgba(244,200,66,.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(37,88,160,.2) 0%, transparent 70%);
}
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  overflow: hidden;
}
.hero-waves svg { width: 100%; height: 100%; }

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media(max-width:768px){ .hero-container { grid-template-columns: 1fr; text-align: center; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,200,66,.12);
  border: 1px solid rgba(244,200,66,.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero-desc { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 480px; }
@media(max-width:768px){ .hero-desc { margin: 0 auto 36px; } }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
@media(max-width:768px){ .hero-actions { justify-content: center; } }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
}
@media(max-width:768px){ .hero-stats { justify-content: center; } }
.stat-item { text-align: center; }
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: .8rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .04em; }

/* Track bar */
.track-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.track-bar h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 16px; }
.track-input-group { display: flex; gap: 10px; }
.track-input-group .form-control { flex: 1; }
@media(max-width:500px){ .track-input-group { flex-direction: column; } }

/* ══════════════════════════════════════════════
   SERVICES CARDS
══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  border: 2px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 20px;
}
.service-card h3 { color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: .92rem; margin-bottom: 16px; }
.service-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.service-meta span { font-size: .82rem; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }
.service-meta span i { color: var(--gold); width: 14px; }

/* ══════════════════════════════════════════════
   SECTION HEADER
══════════════════════════════════════════════ */
.section-header { margin-bottom: 16px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header h2 { color: var(--navy); }
.section-header p { color: var(--text-muted); max-width: 560px; margin-top: 10px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 10px auto 0; }

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.step-card { text-align: center; }
.step-number {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
}
.step-card h4 { color: var(--navy); margin-bottom: 8px; }
.step-card p { color: var(--text-muted); font-size: .9rem; }

/* ══════════════════════════════════════════════
   CTA BAND
══════════════════════════════════════════════ */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(244,200,66,.06);
  border-radius: 50%;
}
.cta-band h2 { color: var(--white); margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.65); margin-bottom: 32px; font-size: 1.05rem; }
.cta-band .btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   TRACKING PAGE
══════════════════════════════════════════════ */
.track-page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 100px 24px 60px;
  text-align: center;
  color: var(--white);
}
.track-page-hero h1 { color: var(--white); margin-bottom: 10px; }
.track-page-hero p { color: rgba(255,255,255,.65); margin-bottom: 32px; }
.track-form-wrap { max-width: 560px; margin: 0 auto; }
.track-form-wrap .track-input-group { background: var(--white); padding: 8px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.track-form-wrap .track-input-group .form-control { border: none; background: transparent; }
.track-form-wrap .track-input-group .form-control:focus { box-shadow: none; }

.track-result { max-width: 800px; margin: 48px auto; padding: 0 24px; }
.track-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.track-card-header {
  background: var(--navy);
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.track-card-header h3 { color: var(--white); font-size: 1rem; }
.track-card-header .tid { color: var(--gold); font-size: 1.15rem; }

.track-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border-bottom: 1px solid var(--gray-100);
}
.track-detail {
  padding: 20px 28px;
  border-right: 1px solid var(--gray-100);
}
.track-detail:last-child { border-right: none; }
.track-detail-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 4px; }
.track-detail-value { font-family: var(--font-display); font-weight: 600; color: var(--navy); }

.track-timeline { padding: 28px; }
.track-timeline h4 { color: var(--navy); margin-bottom: 20px; }
.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 9px; top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item { position: relative; padding-bottom: 24px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -22px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid var(--white);
}
.timeline-item.active::before { background: var(--gold); }
.timeline-item .ti-status { font-weight: 600; color: var(--navy); font-size: .92rem; }
.timeline-item .ti-location { color: var(--text-muted); font-size: .82rem; }
.timeline-item .ti-time { color: var(--gray-400); font-size: .78rem; }

/* ══════════════════════════════════════════════
   DASHBOARD
══════════════════════════════════════════════ */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
@media(max-width:900px){ .dashboard-layout { grid-template-columns: 1fr; } }

.sidebar {
  background: var(--navy);
  padding: 24px 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
@media(max-width:900px){ .sidebar { display: none; } }

.sidebar-logo {
  padding: 16px 24px 28px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 16px;
}
.sidebar-logo .logo-text { font-size: 1.1rem; }

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  color: var(--white);
  background: rgba(244,200,66,.08);
  border-left-color: var(--gold);
}
.sidebar-nav a i { width: 18px; font-size: .9rem; color: var(--gold); }
.sidebar-nav .nav-section {
  padding: 12px 24px 4px;
  font-size: .7rem;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--font-display);
}

.dashboard-main {
  background: var(--off-white);
  padding: 0;
  min-height: 100vh;
}
.dashboard-topbar {
  background: var(--white);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
  position: sticky;
  top: 0;
  z-index: 100;
}
.dashboard-topbar h2 { font-size: 1.1rem; color: var(--navy); }
.topbar-user {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: .88rem;
}
.avatar {
  width: 36px; height: 36px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .85rem;
}

.dashboard-content { padding: 32px; }

/* Stat cards */
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 32px; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 16px;
}
.stat-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 20px;
  flex-shrink: 0;
}
.stat-card-icon.blue   { background: #dbeafe; color: #2558a0; }
.stat-card-icon.gold   { background: #fef3c7; color: #b45309; }
.stat-card-icon.green  { background: #dcfce7; color: #16a34a; }
.stat-card-icon.purple { background: #ede9fe; color: #7c3aed; }
.stat-card-info p { font-size: .8rem; color: var(--text-muted); margin-bottom: 2px; }
.stat-card-info .val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--navy); }

/* Data table */
.data-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.data-card-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}
.data-card-header h3 { color: var(--navy); font-size: 1rem; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  font-family: var(--font-display);
  background: var(--gray-100);
  font-weight: 600;
}
.data-table td {
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--text);
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--off-white); }
.data-table .tracking-id { font-family: monospace; font-size: .82rem; color: var(--navy-light); font-weight: 600; }

/* ══════════════════════════════════════════════
   PAGE HERO (interior pages)
══════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 24px 56px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,.65); max-width: 560px; margin: 0 auto; }
.page-content { max-width: 1180px; margin: 0 auto; padding: 60px 24px; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}
@media(max-width:900px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:560px){ .footer-grid { grid-template-columns: 1fr; } }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-logo i { color: var(--gold); font-size: 1.3rem; }
.footer-logo strong { color: var(--gold); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 20px; }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: .9rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(244,200,66,.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: .87rem; transition: var(--transition); }
.footer-col ul a:hover { color: var(--gold); padding-left: 4px; }

address { font-style: normal; display: flex; flex-direction: column; gap: 10px; }
address p { display: flex; align-items: flex-start; gap: 10px; font-size: .87rem; }
address i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }

.footer-bottom {
  max-width: 1180px;
  margin: 48px auto 0;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .82rem;
}

/* ══════════════════════════════════════════════
   PAGINATION
══════════════════════════════════════════════ */
.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 28px; }
.page-btn {
  width: 36px; height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 600;
  font-family: var(--font-display);
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.page-btn:hover, .page-btn.active { background: var(--navy); color: var(--gold); }

/* ══════════════════════════════════════════════
   ABOUT / INFO SECTIONS
══════════════════════════════════════════════ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
@media(max-width:768px){ .two-col { grid-template-columns: 1fr; } }

.feature-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.feature-item { display: flex; align-items: flex-start; gap: 14px; }
.feature-item i { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.feature-item h4 { color: var(--navy); font-size: .95rem; margin-bottom: 3px; }
.feature-item p { color: var(--text-muted); font-size: .88rem; }

.img-block {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  aspect-ratio: 4/3;
  display: grid;
  place-items: center;
}
.img-block-icon { font-size: 5rem; color: rgba(244,200,66,.3); }

/* Responsive */
@media(max-width:600px){
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .dashboard-content { padding: 20px 16px; }
  .dashboard-topbar { padding: 0 16px; }
}

/* ══════════════════════════════════════════════
   ADMIN specific
══════════════════════════════════════════════ */
.admin-sidebar .sidebar-nav .nav-section { color: rgba(255,255,255,.35); }
.filter-bar { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-bottom: 20px; }
.filter-bar .form-control { width: auto; min-width: 140px; }
.action-btns { display: flex; gap: 6px; }

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,20,40,.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header h3 { color: var(--navy); }
.modal-close { background: none; border: none; font-size: 1.2rem; color: var(--gray-400); cursor: pointer; }
.modal-body { padding: 28px; }
.modal-footer { padding: 20px 28px; border-top: 1px solid var(--gray-100); display: flex; justify-content: flex-end; gap: 10px; }

/* Alerts/notice */
.notice {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 20px;
}
.notice-info { background: #dbeafe; color: #1e40af; border-left: 4px solid #3b82f6; }
.notice-warning { background: #fef3c7; color: #92400e; border-left: 4px solid var(--warning); }
