/* ============================================================
   1st Fleet Financing — Global Stylesheet
   Design: Corporate Prestige (Navy + Gold + White)
   Fonts: Playfair Display (headings) + Inter (body) via CDN
   ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --navy:       #1a3a52;
  --navy-dark:  #0f2336;
  --navy-light: #234e6e;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --light-grey: #e9ecef;
  --mid-grey:   #6c757d;
  --dark-grey:  #343a40;
  --text:       #212529;
  --border:     #dee2e6;
  --shadow-sm:  0 2px 8px rgba(26,58,82,.08);
  --shadow-md:  0 4px 20px rgba(26,58,82,.14);
  --shadow-lg:  0 8px 40px rgba(26,58,82,.20);
  --radius:     6px;
  --radius-lg:  12px;
  --transition: 0.25s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; color: var(--mid-grey); }
.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
  display: block;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }
.text-center { text-align: center; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.flex { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-1 { gap: .5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
  font-weight: 700;
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.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,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .85rem; }

/* ── Navigation ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.navbar-logo-box {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .05em;
  flex-shrink: 0;
}
.navbar-brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.2;
}
.navbar-brand-text span { display: block; font-size: .7rem; font-weight: 400; color: var(--mid-grey); font-family: 'Inter', sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-weight: 500;
  font-size: .9rem;
  color: var(--dark-grey);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all var(--transition); }
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: .75rem 1.5rem;
  font-weight: 500;
  color: var(--dark-grey);
  border-bottom: 1px solid var(--light-grey);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--navy); background: var(--off-white); }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-label {
  display: inline-block;
  background: rgba(201,168,76,.2);
  color: var(--gold-light);
  border: 1px solid rgba(201,168,76,.4);
  border-radius: 50px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; line-height: 1.7; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label { font-size: .8rem; color: rgba(255,255,255,.65); margin-top: .25rem; }
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-wrap img { width: 100%; height: 420px; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: .75rem;
}
.hero-badge-icon { width: 36px; height: 36px; background: var(--navy); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1rem; }
.hero-badge-text { font-size: .75rem; font-weight: 600; color: var(--navy); line-height: 1.3; }
.hero-badge-text span { display: block; color: var(--mid-grey); font-weight: 400; }

/* ── Section Headings ───────────────────────────────────────── */
.section-heading { margin-bottom: 3rem; }
.section-heading.text-center { max-width: 640px; margin-left: auto; margin-right: auto; }
.section-heading h2 { margin-bottom: .75rem; }
.section-heading p { color: var(--mid-grey); font-size: 1.05rem; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0;
}
.divider.center { margin: 1rem auto; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon {
  width: 56px; height: 56px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--navy);
}
.card-icon.gold { background: rgba(201,168,76,.12); color: var(--gold); }
.card h3 { margin-bottom: .75rem; font-size: 1.2rem; }
.card p { color: var(--mid-grey); font-size: .95rem; margin-bottom: 0; }

/* ── Services Grid ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card-img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 1.5rem; }
.service-card-body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.service-card-body p { color: var(--mid-grey); font-size: .9rem; margin-bottom: 1rem; }
.service-tag {
  display: inline-block;
  background: rgba(26,58,82,.08);
  color: var(--navy);
  border-radius: 50px;
  padding: .2rem .75rem;
  font-size: .75rem;
  font-weight: 600;
  margin-right: .35rem;
  margin-bottom: .35rem;
}

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0;
}
.stats-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: .85rem; color: rgba(255,255,255,.7); margin-top: .4rem; }

/* ── Process Steps ──────────────────────────────────────────── */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.step-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-content h4 { margin-bottom: .4rem; font-size: 1.05rem; }
.step-content p { color: var(--mid-grey); font-size: .9rem; margin: 0; }

/* ── Financing Options ──────────────────────────────────────── */
.financing-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.financing-card.featured {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  position: relative;
}
.financing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  padding: .3rem 1.25rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.financing-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.financing-card .price { font-size: 1rem; color: var(--mid-grey); margin-bottom: 1.5rem; }
.financing-list { margin-bottom: 2rem; }
.financing-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem 0;
  border-bottom: 1px solid var(--light-grey);
  font-size: .9rem;
  color: var(--dark-grey);
}
.financing-list li:last-child { border-bottom: none; }
.financing-list li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── CTA Section ────────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact Form ───────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.75rem; }
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
  flex-shrink: 0;
}
.contact-info-text h4 { font-size: 1rem; margin-bottom: .2rem; }
.contact-info-text p, .contact-info-text a { font-size: .9rem; color: var(--mid-grey); margin: 0; }
.contact-info-text a:hover { color: var(--navy); }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .4rem; color: var(--dark-grey); }
.form-control {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,82,.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-note { font-size: .8rem; color: var(--mid-grey); margin-top: .5rem; }
.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 1rem;
  display: none;
}
.alert-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.alert-error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-filters { display: flex; gap: .75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: .5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  font-size: .85rem;
  font-weight: 600;
  color: var(--mid-grey);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 240px; object-fit: cover; transition: transform .4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(26,58,82,.6);
  display: flex; align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text { color: var(--white); font-size: .9rem; font-weight: 600; }

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
  line-height: 1;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: .5rem;
}
.footer-tagline { font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: 1.25rem; }
.footer h4 { color: var(--white); font-size: .9rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; font-family: 'Inter', sans-serif; }
.footer ul li { margin-bottom: .6rem; }
.footer ul li a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer ul li a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: .75rem; margin-bottom: .75rem; font-size: .88rem; }
.footer-contact-item a { color: rgba(255,255,255,.65); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Page Banner ────────────────────────────────────────────── */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 4rem 0;
}
.page-banner h1 { color: var(--white); margin-bottom: .5rem; }
.page-banner p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 0; }
.breadcrumb { display: flex; gap: .5rem; font-size: .85rem; color: rgba(255,255,255,.55); margin-bottom: .75rem; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── Admin Panel ────────────────────────────────────────────── */
.admin-wrap { min-height: 100vh; background: var(--off-white); }
.admin-header {
  background: var(--navy-dark);
  color: var(--white);
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 100;
}
.admin-header-inner { display: flex; align-items: center; justify-content: space-between; }
.admin-header h1 { font-size: 1.1rem; color: var(--white); margin: 0; }
.admin-header a { color: rgba(255,255,255,.7); font-size: .85rem; }
.admin-header a:hover { color: var(--white); }
.admin-nav {
  background: var(--navy);
  padding: .5rem 0;
}
.admin-nav-inner { display: flex; gap: 0; }
.admin-nav a {
  padding: .65rem 1.25rem;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.admin-nav a:hover, .admin-nav a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.admin-content { padding: 2rem 0; }
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.admin-card-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.admin-card-header h3 { font-size: 1rem; margin: 0; }
.admin-card-body { padding: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.admin-table th {
  text-align: left;
  padding: .75rem 1rem;
  background: var(--off-white);
  font-weight: 700;
  color: var(--dark-grey);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  border-bottom: 1px solid var(--border);
}
.admin-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--light-grey); vertical-align: top; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--off-white); }
.badge {
  display: inline-block;
  padding: .2rem .65rem;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
}
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-read { background: #d1fae5; color: #065f46; }
.badge-responded { background: #e0e7ff; color: #3730a3; }
.badge-submitted { background: #dbeafe; color: #1d4ed8; }
.badge-review { background: #fef3c7; color: #92400e; }
.badge-approved { background: #d1fae5; color: #065f46; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.admin-login-wrap {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex; align-items: center; justify-content: center;
}
.admin-login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.admin-login-card h2 { text-align: center; margin-bottom: .5rem; }
.admin-login-card .lead { text-align: center; margin-bottom: 2rem; }
.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-card .label { font-size: .82rem; color: var(--mid-grey); margin-top: .35rem; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .hero-stats { gap: 1.5rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .admin-table { font-size: .8rem; }
  .admin-table th, .admin-table td { padding: .5rem .75rem; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
