/* ═══════════════════════════════════════════════════════
   REPORT CONCERNS — report-concerns.css
   Updated header/hero to match advertisements.css style
   Laguna BelAir 4 HOA
═══════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ── */
:root {
  --green-900: #062e22;
  --green-800: #0a4d3c;
  --green-700: #0e6650;
  --green-600: #138a6a;
  --green-400: #3dbe92;
  --green-200: #a8e6ce;
  --green-100: #d4f3e7;
  --green-50:  #edfaf4;

  --warm-50:   #faf9f6;
  --warm-100:  #f2f0eb;
  --warm-200:  #e4e0d8;

  --neutral-900: #1a1a1a;
  --neutral-700: #3d3d3d;
  --neutral-500: #6b7280;
  --neutral-400: #9ca3af;
  --neutral-300: #d1d5db;
  --neutral-200: #e9eaec;
  --neutral-100: #f3f4f6;
  --neutral-50:  #f9fafb;

  --red-600:   #c0392b;
  --red-50:    #fef2f2;
  --amber-600: #d97706;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;

  --shadow-xs: 0 1px 3px rgba(0,0,0,.07);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.09);
  --shadow-md: 0 4px 20px rgba(0,0,0,.11);
  --shadow-lg: 0 12px 40px rgba(10,77,60,.14);

  --radius:    14px;
  --radius-sm: 8px;

  --transition: .2s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm-50);
  color: var(--neutral-900);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ═══════════════════════════════════════════════════════
   HEADER / NAV (updated to match advertisements.css)
═══════════════════════════════════════════════════════ */
.top-header-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 18px 0;
  width: auto;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--transition);
}
.logo-link:hover { opacity: .8; }
.logo-image {
  width: 140px;
  height: auto;
  filter: drop-shadow(0 3px 8px rgba(0,0,0,.35));
}

.header-center-wrapper {
  background: #fff;
  padding: 8px 16px;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
}

.navbar-two-rows {
  display: flex;
  flex-direction: column;
  min-width: 680px;
}

.navbar-top-row {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--neutral-200);
}

.navbar-top-row a {
  color: var(--green-800);
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition);
}

.navbar-top-row a:hover { background: var(--green-50); }

.nav-sep {
  color: var(--neutral-300);
  font-size: 11px;
}

.navbar-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
}

.nav-link,
.dropdown-toggle {
  color: var(--green-800);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  border: none;
  background: none;
  transition: background var(--transition);
}

.nav-link:hover,
.dropdown:hover > .dropdown-toggle {
  background: var(--green-50);
}

.nav-link.active,
a.active {
  background: var(--green-50);
  color: var(--green-700);
  font-weight: 600;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle i.fa-chevron-down {
  font-size: 8px;
  transition: transform .25s;
}

.dropdown:hover .dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 210px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--green-800);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .22s ease;
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile dropdown toggle via JS */
.dropdown.dropdown-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown.dropdown-open .dropdown-toggle i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  font-size: 13px;
  color: var(--neutral-700);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all .18s;
}

.dropdown-menu a:hover {
  background: var(--neutral-50);
  border-left-color: var(--green-800);
  padding-left: 21px;
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION (matching advertisements.css)
═══════════════════════════════════════════════════════ */
.hero-section {
  background-image: url('BG.png');
  background-size: cover;
  background-position: center;
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6,46,34,.82) 0%, rgba(10,77,60,.75) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 700;
  color: #fff;
  letter-spacing: .5px;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.hero-sub {
  color: rgba(255,255,255,.82);
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 300;
  max-width: 620px;
  letter-spacing: .2px;
}

/* ═══════════════════════════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════════════════════════ */
.page-main {
  flex: 1;
  max-width: 800px;
  margin: 0 auto 80px;
  padding: 40px 20px 70px;
  width: 100%;
}

/* ═══════════════════════════════════════════════════════
   IMPORTANT NOTICE SECTION
═══════════════════════════════════════════════════════ */
.notice-section {
  background-color: #fff5f5;
  border-left: 4px solid #c92a2a;
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}
.notice-section h2 {
  color: #c92a2a;
  font-family: var(--font-body);
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.notice-section h2 i { font-size: 22px; }
.notice-section p { margin-bottom: 12px; color: #333; line-height: 1.6; }
.emergency-notice {
  color: #c92a2a;
  font-weight: 600;
  background-color: #fff;
  padding: 12px;
  border-radius: 6px;
  margin: 15px 0;
}
.emergency-contacts {
  background-color: #fff;
  padding: 15px;
  border-radius: 6px;
  margin: 15px 0;
}
.emergency-contacts p { margin-bottom: 8px; font-weight: 600; color: var(--green-800); }
.emergency-contacts ul { margin-left: 20px; margin-bottom: 0; }
.emergency-contacts li { margin-bottom: 5px; }
.submission-note { font-size: 14px; color: #666; margin-bottom: 0 !important; }

/* ═══════════════════════════════════════════════════════
   FORM CARDS
═══════════════════════════════════════════════════════ */
.form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--neutral-200);
  border-left: 3px solid var(--green-800);
  animation: fadeUp .45s ease both;
}

.form-card:nth-child(2) { animation-delay: .05s; }
.form-card:nth-child(3) { animation-delay: .10s; }
.form-card:nth-child(4) { animation-delay: .15s; }

.card-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--neutral-100);
}

.card-header h2 {
  color: var(--green-800);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 4px;
}

.card-hint {
  font-size: 13.5px;
  color: var(--neutral-500);
}

/* ═══════════════════════════════════════════════════════
   FORM ELEMENTS
═══════════════════════════════════════════════════════ */
.field-block { margin-bottom: 24px; }
.field-block:last-child { margin-bottom: 0; }

.field-label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--neutral-700);
  margin-bottom: 8px;
}

.req {
  color: var(--red-600);
  margin-left: 3px;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--neutral-900);
  background: var(--neutral-50);
  transition: border-color .2s, box-shadow .2s, background .2s;
  outline: none;
  line-height: 1.6;
}

.field-input::placeholder,
.field-textarea::placeholder { color: var(--neutral-500); }

.field-input:focus,
.field-textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(10,77,60,.09);
  background: #fff;
}

.field-textarea { resize: vertical; min-height: 140px; }

.textarea-wrap { position: relative; }

.char-counter {
  position: absolute;
  bottom: 10px;
  right: 14px;
  font-size: 11px;
  color: var(--neutral-500);
  pointer-events: none;
}

.field-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--neutral-500);
  margin-top: 10px;
  line-height: 1.55;
}
.field-note i { color: var(--green-600); flex-shrink: 0; margin-top: 1px; font-size: 13px; }
.field-note strong { color: var(--neutral-700); }

.badge-optional {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 500;
  background: var(--neutral-100);
  color: var(--neutral-500);
  border-radius: 4px;
  padding: 1px 7px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Search type radio group */
.search-label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--neutral-700);
  margin: 0 0 10px;
}

.radio-group {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--neutral-700);
}
.radio-label input[type="radio"] {
  width: 17px; height: 17px;
  accent-color: var(--green-700);
  cursor: pointer;
  flex-shrink: 0;
}

/* Address fields block */
.address-fields { margin-bottom: 0; }

/* Map container (toggled by JS) */
.map-container { margin-top: 4px; }

/* Category select */
.field-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--neutral-300);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--neutral-900);
  background: var(--neutral-50);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.field-select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 4px rgba(10,77,60,.09);
  background-color: #fff;
}

/* ═══════════════════════════════════════════════════════
   MAP
═══════════════════════════════════════════════════════ */
.map-wrapper {
  position: relative;
  margin-bottom: 16px;
}

.leaflet-map {
  height: 380px;
  width: 100%;
  border-radius: 10px;
  border: 2px solid var(--neutral-200);
  box-shadow: var(--shadow-sm);
  z-index: 1;
}

.map-overlay-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6,46,34,.82);
  color: #fff;
  padding: 9px 18px;
  border-radius: 99px;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity .4s;
  z-index: 10;
}
.map-overlay-hint.hidden { opacity: 0; }

.location-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--neutral-500);
  margin-bottom: 14px;
  min-height: 24px;
  transition: color .3s;
}
.location-status.pinned { 
  color: var(--green-700); 
  font-weight: 500;
}
.location-status.detecting { 
  color: var(--neutral-600); 
  font-style: italic;
}
.location-status.detected { 
  color: var(--green-700); 
  font-weight: 500;
  animation: fadeInScale 0.4s ease-out;
}
.location-status i { font-size: 14px; }

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.btn-locate {
  background: none;
  border: 1.5px solid var(--green-600);
  color: var(--green-700);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, color .2s;
}
.btn-locate:hover {
  background: var(--green-50);
  color: var(--green-800);
}

/* ═══════════════════════════════════════════════════════
   UPLOAD ZONE
═══════════════════════════════════════════════════════ */
.upload-zone {
  border: 2px dashed var(--neutral-300);
  border-radius: var(--radius-sm);
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  position: relative;
  overflow: hidden;
}
.upload-zone:hover,
.upload-zone:focus {
  border-color: var(--green-500);
  background: var(--green-50);
  outline: none;
}
.upload-zone.dragover {
  border-color: var(--green-600);
  background: var(--green-50);
}

.upload-idle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 24px;
  pointer-events: none;
}
.upload-idle i {
  font-size: 34px;
  color: var(--green-400);
}
.upload-idle span {
  font-size: 14px;
  color: var(--neutral-700);
  font-weight: 500;
}
.upload-idle small { font-size: 11.5px; color: var(--neutral-500); }

.upload-preview {
  width: 100%;
  height: 100%;
  position: relative;
}
.upload-preview img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius-sm) - 2px);
}

.remove-photo {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,.6);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.remove-photo:hover { background: var(--red-600); }

/* ═══════════════════════════════════════════════════════
   TOGGLE (Anonymous Switch)
═══════════════════════════════════════════════════════ */
.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  padding: 18px 20px;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-sm);
  transition: background .2s;
}
.toggle-row:hover { background: var(--neutral-50); }

.toggle-text .field-label { cursor: pointer; }

.toggle-text small {
  display: block;
  font-size: 12px;
  color: var(--neutral-500);
  margin-top: 2px;
}

.toggle-switch {
  flex-shrink: 0;
  position: relative;
  width: 48px;
  height: 28px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-thumb {
  position: absolute;
  inset: 0;
  background: var(--neutral-300);
  border-radius: 99px;
  cursor: pointer;
  transition: background .25s;
}
.toggle-thumb::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,.2);
  transition: transform .25s;
}
.toggle-switch input:checked + .toggle-thumb { background: var(--green-600); }
.toggle-switch input:checked + .toggle-thumb::before { transform: translateX(20px); }

/* Reporter section */
.reporter-section {
  padding: 18px 0 0;
  animation: fadeUp .3s ease both;
}

/* ═══════════════════════════════════════════════════════
   CONFIRMATION + SUBMIT
═══════════════════════════════════════════════════════ */
.submit-card {
  border-top: 3px solid var(--green-800);
}

.confirm-row {
  margin-bottom: 28px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  font-size: 14px;
  color: var(--neutral-700);
  line-height: 1.65;
}

.checkbox-row input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-check {
  width: 22px;
  height: 22px;
  border: 2px solid var(--neutral-300);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all .2s;
}
.custom-check i {
  font-size: 11px;
  color: white;
  opacity: 0;
  transform: scale(0);
  transition: all .15s;
}

.checkbox-row input:checked + .custom-check {
  background: var(--green-700);
  border-color: var(--green-700);
}
.checkbox-row input:checked + .custom-check i {
  opacity: 1;
  transform: scale(1);
}

/* Submit Button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-800);
  color: white;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 44px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: .02em;
  box-shadow: 0 4px 16px rgba(10,77,60,.28);
  transition: background .2s, transform .2s, box-shadow .2s;
  width: 100%;
}
.btn-submit:hover:not(:disabled) {
  background: var(--green-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,77,60,.32);
}
.btn-submit:active:not(:disabled) { transform: translateY(0); }
.btn-submit:disabled {
  background: var(--neutral-300);
  color: var(--neutral-500);
  cursor: not-allowed;
  box-shadow: none;
}

.btn-submit-loading { display: inline-flex; align-items: center; gap: 9px; }

.submit-note {
  text-align: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SUCCESS MODAL
═══════════════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,46,34,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn .25s ease;
}

.modal-card {
  background: #fff;
  border-radius: 20px;
  padding: 52px 44px 44px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(6,46,34,.3);
  animation: slideUp .3s cubic-bezier(.34,1.56,.64,1);
  position: relative;
}

.modal-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.modal-icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--green-100);
  position: absolute;
  animation: pulse 2s ease infinite;
}

.modal-icon {
  font-size: 40px;
  color: var(--green-700);
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.12); opacity: .6; }
}

.modal-card h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--green-900);
  margin-bottom: 12px;
}
.modal-card p {
  font-size: 14.5px;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 8px;
}

.modal-ref {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-800);
  background: var(--green-50);
  border: 1.5px dashed var(--green-400);
  border-radius: 8px;
  padding: 11px 26px;
  margin: 14px auto 6px;
  letter-spacing: 2px;
}

.modal-ref-note {
  font-size: 12px !important;
  font-style: italic;
  color: var(--neutral-400) !important;
  margin-bottom: 26px !important;
}

.modal-actions .btn-submit { max-width: 260px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
.footer {
  background: var(--green-800);
  color: #fff;
  padding: 50px 20px 20px;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,.25);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
  font-size: .88rem;
  line-height: 1.6;
}

.footer-links li i {
  margin-right: 7px;
  color: rgba(255,255,255,.7);
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}

.footer-links a:hover {
  color: #b8e6d5;
  padding-left: 4px;
}

.footer-logo-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.footer-logo-link {
  display: block;
  transition: opacity .25s;
}

.footer-logo-link:hover {
  opacity: .8;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.footer-bottom {
  text-align: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: .87rem;
  color: rgba(255,255,255,.7);
}

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ═══════════════════════════════════════════════════════
   LEAFLET OVERRIDES
═══════════════════════════════════════════════════════ */
.leaflet-control-zoom a { color: var(--green-900) !important; }
.leaflet-popup-content-wrapper { border-radius: 10px; box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1060px) {
  .top-header-container {
    flex-direction: column;
    padding: 14px 16px;
  }
  .header-center-wrapper {
    width: 100%;
  }
  .navbar-two-rows {
    min-width: auto;
    width: 100%;
  }
  .navbar-top-row {
    justify-content: center;
  }
  .navbar-bottom-row {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .footer-logo-section {
    grid-column: 1/-1;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 280px;
  }
  .hero-title {
    font-size: 34px;
  }
  .hero-sub {
    font-size: 14px;
    max-width: 90%;
  }
  .page-main {
    padding: 28px 16px 50px;
  }
  .nav-sep {
    display: none;
  }
  .navbar-top-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
  }
  .navbar-bottom-row {
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-section h3 {
    text-align: center;
  }
  .footer-links {
    text-align: center;
  }
  .footer-logo-section {
    justify-content: center;
  }
  .form-card { padding: 25px 20px; }
  .field-row-2 { grid-template-columns: 1fr; }
  .radio-group { flex-direction: column; gap: 12px; }
}

@media (max-width: 480px) {
  .logo-image {
    width: 100px;
  }
  .navbar-top-row a {
    padding: 3px 6px;
    font-size: 11px;
  }
  .navbar-bottom-row .nav-link,
  .navbar-bottom-row .dropdown-toggle {
    font-size: 11px;
    padding: 5px 7px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-sub {
    font-size: 12px;
  }
  .form-card { padding: 20px 15px; }
  .notice-section { padding: 20px 15px; }
  .btn-submit { padding: 12px 30px; font-size: 14px; }
  .modal-card { padding: 32px 18px 28px; }
}