/* ==========================================================================
   GetWarmNowVT - Main Design System & Stylesheet
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --navy-darkest: #071321;
  --navy-dark: #0B1C30;
  --navy-medium: #132A47;
  --navy-light: #1E3E64;
  --navy-accent: #0F2844;
  
  --primary-orange: #E67E22;
  --primary-orange-hover: #D35400;
  --primary-orange-light: #FDF2E9;
  
  --status-green: #10B981;
  --status-green-bg: #ECFDF5;
  --status-green-text: #065F46;
  
  --alert-yellow-bg: #FFFBEB;
  --alert-yellow-border: #FCD34D;
  --alert-yellow-text: #78350F;
  --alert-icon-color: #D97706;

  --text-main: #1F2937;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --text-white: #FFFFFF;

  --bg-main: #F4F6F9;
  --bg-card: #FFFFFF;
  --bg-subtle: #F8FAFC;
  
  --border-color: #E5E7EB;
  --border-light: #F3F4F6;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 35px rgba(0,0,0,0.12);
  
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Settings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(11, 28, 48, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-white);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.brand-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.05);
}

.brand-logo .brand-vt {
  color: #FF9F43;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 6px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--primary-orange);
  border-radius: 2px;
}

.mobile-menu-toggle {
  display: none;
  color: white;
  font-size: 1.5rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(7, 19, 33, 0.82) 0%, rgba(11, 28, 48, 0.92) 100%),
              url('assets/images/hero-bg.jpg') center/cover no-repeat;
  color: var(--text-white);
  padding: 80px 0 60px 0;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-content {
  max-width: 650px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #D35400 100%);
  color: var(--text-white);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(230, 126, 34, 0.35);
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(230, 126, 34, 0.5);
  background: linear-gradient(135deg, #F39C12 0%, var(--primary-orange) 100%);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  flex-wrap: wrap;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.badge-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--status-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--status-green);
}

.badge-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

/* ==========================================================================
   Search Card Section
   ========================================================================== */
.search-section {
  margin-top: -30px;
  position: relative;
  z-index: 100;
  margin-bottom: 36px;
}

.search-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
}

.search-main h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 4px;
}

.search-main p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.search-input-group {
  display: flex;
  gap: 12px;
  position: relative;
}

.input-with-icon {
  position: relative;
  flex: 1;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  width: 18px;
  height: 18px;
}

.search-input {
  width: 100%;
  padding: 13px 16px 13px 44px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: var(--transition);
  background-color: var(--bg-subtle);
}

.search-input:focus {
  outline: none;
  border-color: var(--navy-light);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(30, 62, 100, 0.15);
}

.btn-search {
  background-color: var(--navy-accent);
  color: var(--text-white);
  padding: 0 28px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-search:hover {
  background-color: var(--navy-dark);
  transform: translateY(-1px);
}

.search-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
  height: 100%;
}

.search-divider::before,
.search-divider::after {
  content: '';
  width: 1px;
  height: 40%;
  background-color: var(--border-color);
}

.search-location-btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.btn-location-alt {
  width: 100%;
  background-color: #EEF2F6;
  color: var(--navy-medium);
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
}

.btn-location-alt:hover {
  background-color: #E2E8F0;
  color: var(--navy-dark);
}

.location-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 10px;
  text-align: center;
}

/* Autocomplete Popup */
.autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  margin-top: 6px;
  z-index: 500;
  display: none;
  max-height: 220px;
  overflow-y: auto;
}

.autocomplete-dropdown.active {
  display: block;
}

.autocomplete-item {
  padding: 10px 16px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.15s;
}

.autocomplete-item:hover {
  background-color: var(--bg-subtle);
  color: var(--navy-medium);
}

/* ==========================================================================
   Quick Action Cards Grid
   ========================================================================== */
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.action-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.card-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.action-card.blue .card-icon-wrapper {
  background-color: #2563EB;
  color: white;
}

.action-card.orange .card-icon-wrapper {
  background-color: #E74C3C;
  color: white;
}

.action-card.green .card-icon-wrapper {
  background-color: #10B981;
  color: white;
}

.card-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 6px;
}

.card-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.card-link {
  font-size: 0.88rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.action-card.blue .card-link { color: #2563EB; }
.action-card.orange .card-link { color: #E74C3C; }
.action-card.green .card-link { color: #059669; }

.action-card:hover .card-link {
  gap: 10px;
}

/* ==========================================================================
   Map & Nearby Shelters Main Section
   ========================================================================== */
.shelter-finder-section {
  background-color: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-md);
  padding: 24px;
  margin-bottom: 32px;
}

.finder-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
}

.map-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  min-height: 480px;
}

#leaflet-map {
  width: 100%;
  height: 100%;
  min-height: 480px;
  z-index: 1;
}

.map-overlay-btn {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 10;
  background-color: white;
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-dark);
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.map-overlay-btn:hover {
  background-color: var(--bg-subtle);
}

.shelter-list-container {
  display: flex;
  flex-direction: column;
}

.shelter-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.shelter-list-header h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.filter-badge {
  font-size: 0.8rem;
  font-weight: 600;
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.shelters-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
  max-height: 420px;
  padding-right: 4px;
}

.shelters-list::-webkit-scrollbar {
  width: 6px;
}

.shelters-list::-webkit-scrollbar-thumb {
  background-color: #CBD5E1;
  border-radius: 3px;
}

.shelter-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  cursor: pointer;
}

.shelter-item:hover,
.shelter-item.active {
  border-color: var(--navy-light);
  background-color: #F8FAFC;
  box-shadow: var(--shadow-sm);
}

.shelter-item-left {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.shelter-icon {
  width: 42px;
  height: 42px;
  background-color: #EEF2F6;
  color: var(--navy-medium);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shelter-item.active .shelter-icon {
  background-color: var(--navy-medium);
  color: white;
}

.shelter-info h4 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.shelter-address {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.shelter-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.shelter-distance {
  font-weight: 600;
  color: var(--navy-light);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--status-green-text);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--status-green);
  box-shadow: 0 0 6px var(--status-green);
}

.status-badge.limited {
  color: #B45309;
}

.status-badge.limited .status-dot {
  background-color: #F59E0B;
  box-shadow: 0 0 6px #F59E0B;
}

.shelter-arrow {
  color: var(--text-light);
  font-size: 1.1rem;
  transition: var(--transition);
}

.shelter-item:hover .shelter-arrow {
  color: var(--navy-medium);
  transform: translateX(3px);
}

.shelter-list-footer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.view-all-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-medium);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-all-link:hover {
  color: var(--primary-orange);
}

/* ==========================================================================
   Cold Weather Alert Banner
   ========================================================================== */
.alert-banner {
  background-color: var(--alert-yellow-bg);
  border: 1px solid var(--alert-yellow-border);
  border-radius: var(--radius-lg);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.alert-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.alert-icon {
  width: 42px;
  height: 42px;
  background-color: rgba(217, 119, 6, 0.15);
  color: var(--alert-icon-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alert-text h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--alert-yellow-text);
  margin-bottom: 2px;
}

.alert-text p {
  font-size: 0.88rem;
  color: var(--alert-yellow-text);
  opacity: 0.9;
}

.btn-alert-action {
  background-color: white;
  color: var(--alert-yellow-text);
  border: 1px solid rgba(120, 53, 15, 0.2);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.btn-alert-action:hover {
  background-color: #FFFBEB;
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   Quick Contact & Resource Bar
   ========================================================================== */
.resource-bar {
  background-color: #EBF3FA;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
  border: 1px solid #D6E4F0;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.resource-item:hover {
  background-color: rgba(255, 255, 255, 0.6);
}

.resource-icon {
  width: 44px;
  height: 44px;
  background-color: white;
  color: var(--navy-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.resource-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: 2px;
}

.resource-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.35;
}

/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
  background-color: var(--navy-darkest);
  color: var(--text-white);
  padding: 60px 0 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col-brand .brand-logo {
  margin-bottom: 16px;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  max-width: 320px;
  line-height: 1.5;
}

.footer-program {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 540px;
}

.footer-program a {
  color: #FF9F43;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-program a:hover {
  color: #FFAE5D;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary-orange);
}

.footer-badges-col {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: center;
}

.footer-partner-logo {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.footer-partner-logo:hover {
  transform: scale(1.06);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

/* Geolocation Pulse Animation */
@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

/* ==========================================================================
   Modals
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(7, 19, 33, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background-color: white;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  position: relative;
}

.modal-backdrop.active .modal-container {
  transform: scale(1);
}

.modal-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--bg-subtle);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.modal-close:hover {
  background-color: #E2E8F0;
  color: var(--navy-dark);
}

.modal-body {
  padding: 28px;
}

.modal-footer {
  padding: 20px 28px;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
}

/* Specific Modal Styles */
.shelter-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
  margin-bottom: 20px;
}

.detail-box {
  background-color: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  border: 1px solid var(--border-light);
}

.detail-box label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 4px;
}

.detail-box span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy-dark);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background-color: #EEF2F6;
  color: var(--navy-medium);
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .search-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .search-divider {
    display: none;
  }
  .finder-grid {
    grid-template-columns: 1fr;
  }
  .quick-actions-grid {
    grid-template-columns: 1fr;
  }
  .resource-bar {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-badges-col {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background-color: var(--navy-dark);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .main-nav.open {
    display: flex;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .hero-badges {
    gap: 20px;
  }
  .alert-banner {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-alert-action {
    width: 100%;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
