/* ============================================================
   Texas Police Salaries — Shared Styles
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy: #0a1f44;
  --red: #c41e3a;
  --gold: #fdb913;
  --light-gray: #f4f6f8;
  --dark-gray: #2c3e50;
  --white: #ffffff;
  --blue: #2563eb;
  --blue-hover: #1d4ed8;
  --font-heading: 'Bebas Neue', sans-serif;
}

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

body {
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================================
   SPONSORED DEPARTMENTS BANNER (top of every page)
   ============================================================ */
.site-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a2332 0%, #2d3e50 25%, #34495e 50%, #2d3e50 75%, #1a2332 100%);
  box-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.site-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px);
  z-index: 0;
  pointer-events: none;
}

.banner-inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.departments-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex: 1;
}

.department-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  cursor: pointer;
  padding: 0.25rem;
}

.department-logo:hover {
  transform: scale(1.08);
}

.department-logo img {
  height: 85px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  transition: filter 0.2s ease;
}

.department-logo:hover img {
  filter: drop-shadow(0 3px 8px rgba(255,215,0,0.4));
}

.banner-title {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  white-space: nowrap;
  padding: 0 1rem;
  border-left: 2px solid rgba(255,215,0,0.3);
}

/* ============================================================
   NAVIGATION BAR
   ============================================================ */
.site-nav {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo a {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 62px;
  width: auto;
}

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

.nav-links a {
  padding: 0.5rem 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--light-gray);
  color: var(--navy);
}

.nav-links a.active {
  color: var(--red);
}

/* ── Nav Right Buttons ── */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-btn {
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-btn-fb {
  background: #1877f2;
  color: white;
}

.nav-btn-fb:hover {
  background: #1664d8;
  transform: translateY(-1px);
}

.nav-btn-promote {
  background: white;
  color: var(--blue);
  border: 2px solid var(--blue);
}

.nav-btn-promote:hover {
  background: var(--blue);
  color: white;
  transform: translateY(-1px);
}

.nav-btn-update {
  background: #059669;
  color: white;
}

.nav-btn-update:hover {
  background: #047857;
  transform: translateY(-1px);
}

/* ── Hamburger Menu ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  z-index: 1001;
  order: -1;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 3px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ── Mobile Menu Overlay ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85%;
  height: 100%;
  background: var(--white);
  box-shadow: 4px 0 20px rgba(0,0,0,0.15);
  padding: 1rem 1.25rem;
  padding-top: 1.25rem;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-links {
  list-style: none;
  margin-bottom: 1rem;
}

.mobile-menu-links a {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-gray);
  border-radius: 8px;
  transition: background 0.2s;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
  background: var(--light-gray);
  color: var(--navy);
}

.mobile-menu-links a.active {
  color: var(--red);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-menu-actions .nav-btn {
  width: 100%;
  justify-content: center;
  padding: 8px 12px;
  font-size: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark-gray);
  color: white;
  padding: 3rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto 2rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-section h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
  color: white;
}

.footer-section p {
  opacity: 0.8;
  line-height: 1.8;
  font-size: 0.95rem;
  text-align: left;
}

.footer-links {
  list-style: none;
  text-align: left;
}

.footer-links li {
  margin-bottom: 0.7rem;
  text-align: left;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s;
  text-align: left;
  display: block;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-logo-center {
  text-align: center;
  margin: 2rem auto;
  max-width: 200px;
}

.footer-logo-center img {
  width: 100%;
  height: auto;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  text-align: center;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ============================================================
   WHAT CANDIDATES SEE (recruiter preview)
   ============================================================ */
.recruiter-preview-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
}
.recruiter-preview-inner {
  text-align: center;
}
.recruiter-preview-inner h2 {
  font-size: 2.2em;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
}
.recruiter-preview-subtitle {
  font-size: 1.1em;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.recruiter-preview-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #94a3b8;
  margin-bottom: 12px;
}
/* Desktop table mockup */
.recruiter-table-mockup {
  background: white;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  margin-bottom: 36px;
  text-align: left;
}
.recruiter-table-mockup table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.recruiter-table-mockup thead th {
  background: #f8fafc;
  color: #64748b;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: left;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}
.recruiter-table-mockup tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: #475569;
  border-bottom: 1px solid #f1f5f9;
}
.recruiter-table-dept {
  font-weight: 600;
  color: #1e293b;
}
.recruiter-table-link {
  color: #2563eb;
  font-size: 13px;
  font-weight: 500;
}
.recruiter-table-salary {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}
.recruiter-table-row-normal td {
  background: white;
}
.recruiter-table-row-faded td {
  opacity: 0.5;
}
.recruiter-table-row-highlight td {
  background: #fffbf0;
  font-weight: 600;
  color: #1e293b;
}
.recruiter-table-row-highlight td:first-child {
  border-left: 3px solid #f59e0b;
}
.recruiter-table-row-accordion td {
  background: transparent;
}
.recruiter-table-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, #0369a1, #0c4a6e);
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid #0369a1;
}
.recruiter-table-badge::before {
  content: '🎯';
  font-size: 12px;
}
.recruiter-table-expanded {
  position: relative;
  background: linear-gradient(135deg, #fefce8, #fff7ed);
  padding: 24px 28px;
}
/* Feature grid below table */
.recruiter-preview-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.recruiter-preview-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 2px solid #e2e8f0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.recruiter-preview-feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: #f59e0b;
}
.recruiter-preview-feature-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fefce8;
  border-radius: 10px;
  border: 1px solid #fcd34d;
}
.recruiter-preview-feature-item h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px 0;
}
.recruiter-preview-feature-item p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 968px) {
  .recruiter-preview-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .recruiter-preview-inner h2 {
    font-size: 1.6em;
  }
  .recruiter-table-mockup {
    overflow-x: auto;
  }
  .recruiter-preview-feature-grid {
    grid-template-columns: 1fr;
  }
  .recruiter-table-expanded {
    padding: 16px;
  }
}

/* ============================================================
   PROMOTE YOUR DEPARTMENT (pricing cards)
   ============================================================ */
.promo-section {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 0 20px;
}
.promo-container {
  background: white;
  border-radius: 20px;
  padding: 50px 40px;
  border: 2px solid #e2e8f0;
}
.promo-header {
  text-align: center;
  margin-bottom: 40px;
}
.promo-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  line-height: 1.2;
}
.promo-subtitle {
  font-size: 18px;
  color: #64748b;
  font-weight: 400;
}
.promo-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.promo-plan {
  background: white;
  border-radius: 16px;
  padding: 35px 30px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 3px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  text-align: center;
}
.promo-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
  border-color: #3b82f6;
}
.promo-plan-featured {
  border-color: #3b82f6;
  box-shadow: 0 8px 30px rgba(59, 130, 246, 0.15);
}
.promo-badge {
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}
.promo-price {
  text-align: center;
  margin-bottom: 25px;
}
.promo-amount {
  font-size: 48px;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
}
.promo-amount-original {
  font-size: 24px;
  font-weight: 700;
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 3px;
  line-height: 1;
  margin-bottom: 4px;
}
.promo-annual-original {
  color: #94a3b8;
  text-decoration: line-through;
  text-decoration-color: #ef4444;
  text-decoration-thickness: 2px;
}
.promo-intro-badge {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-block;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3);
  animation: introPulse 2s ease-in-out infinite;
}
@keyframes introPulse {
  0%, 100% { box-shadow: 0 2px 8px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 2px 16px rgba(245, 158, 11, 0.5); }
}
.promo-period {
  font-size: 18px;
  color: #64748b;
  font-weight: 500;
}
.promo-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  flex: 1;
  text-align: left;
}
.promo-feature {
  padding: 12px 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.promo-feature::before {
  content: '\2713';
  color: white;
  background: linear-gradient(135deg, #10b981, #059669);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.promo-tier-label {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tier-green {
  background: #dcfce7;
  color: #166534;
}
.tier-yellow {
  background: #fef9c3;
  color: #854d0e;
}
.tier-blue {
  background: #dbeafe;
  color: #1e40af;
}
.promo-tier-name {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 16px;
}
.promo-annual {
  text-align: center;
  font-size: 14px;
  color: #64748b;
  margin-top: -18px;
  margin-bottom: 25px;
}
.promo-savings {
  color: #059669;
  font-weight: 600;
}
.promo-feature-excluded {
  opacity: 0.45;
  text-decoration: line-through;
}
.promo-feature-excluded::before {
  content: '\2717' !important;
  background: linear-gradient(135deg, #94a3b8, #64748b) !important;
}
.promo-button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: white;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  box-sizing: border-box;
}
.promo-button:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  color: white;
}
.promo-footer {
  text-align: center;
  padding-top: 30px;
  border-top: 2px solid #e2e8f0;
}
.promo-footer-text {
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 968px) {
  .promo-plans { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  .promo-container { padding: 40px 25px; }
  .promo-title { font-size: 28px; }
  .promo-subtitle { font-size: 16px; }
  .promo-amount { font-size: 42px; }
  .promo-feature { font-size: 14px; }
}

/* ============================================================
   SHARED BUTTON STYLES
   ============================================================ */
.btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  font-family: 'Work Sans', sans-serif;
  color: white;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
  background: #a01629;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-police {
  background: #1e3a8a;
  color: white;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.btn-police:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.3);
}

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

/* ============================================================
   PAGE HERO BANNER
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}
.page-hero p {
  font-size: 1.1rem;
  opacity: 0.85;
}

/* ============================================================
   SHARED UTILITY
   ============================================================ */
.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  width: 100%;
}

.section-header h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  text-align: center;
  width: 100%;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--dark-gray);
  opacity: 0.8;
  text-align: center;
  width: 100%;
}

/* ── Smooth Scroll Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   ACCESSIBILITY — Focus States
   ============================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.hidden {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Footer helper classes ── */
.footer-separator {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-small-link {
  font-size: 0.8rem;
}

/* ============================================================
   RESPONSIVE — Banner
   ============================================================ */
@media (max-width: 1200px) {
  .departments-row { gap: 1.5rem; }
  .department-logo img { height: 70px; max-width: 85px; }
}

@media (max-width: 992px) {
  .departments-row { gap: 1.2rem; }
  .department-logo img { height: 62px; max-width: 75px; }
  .banner-title { font-size: 0.85rem; }
}

@media (max-width: 768px) {
  .banner-inner {
    padding: 0.9rem 0.5rem;
    flex-direction: column;
    gap: 0.5rem;
  }
  .departments-row {
    gap: 0.4rem;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: center;
  }
  .department-logo { flex-shrink: 0; }
  .department-logo img { height: 48px; max-width: 58px; }
  .banner-title {
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    border-left: none;
    border-top: 2px solid rgba(255,215,0,0.3);
    padding: 0.5rem 0 0 0;
  }
}

@media (max-width: 576px) {
  .banner-inner { padding: 0.8rem 0.25rem; }
  .departments-row { gap: 0.3rem; }
  .department-logo img { height: 40px; max-width: 50px; }
  .banner-title { font-size: 0.75rem; letter-spacing: 1px; }
}

@media (max-width: 420px) {
  .departments-row { gap: 0.2rem; }
  .department-logo img { height: 36px; max-width: 44px; }
}

/* ============================================================
   RESPONSIVE — Navigation
   ============================================================ */
@media (max-width: 1100px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: block;
    pointer-events: none;
  }

  .mobile-menu.open {
    pointer-events: auto;
  }

}

/* ============================================================
   RESPONSIVE — Footer
   ============================================================ */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile Nav: Center Logo ── */
@media (max-width: 1100px) {
  .nav-inner {
    position: relative;
  }
  .nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
