@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=DM+Serif+Display&display=swap');

/*
 * parkinglocator-redesign.css
 * ─────────────────────────────────────────────────────────────
 * New navy / gold design for the Robbins parking locator page.
 * Maps the new visual design onto existing HTML class names.
 * ─────────────────────────────────────────────────────────────
 *
 * Sections:
 *   1.  Design tokens
 *   2.  Base & layout
 *   3.  Navbar
 *   4.  Hamburger menu overlay
 *   5.  Parking locator layout
 *   6.  Search bar
 *   7.  Google Places autocomplete
 *   8.  Tabs
 *   9.  Lot list
 *   10. Facility popup
 *   11. Welcome modal (ParkingPopUp)
 *   12. Misc
 *   13. Animations
 *   14. Responsive
 * ─────────────────────────────────────────────────────────────
 */

/* ════════════════════════════════════════
   1. DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --navy:       #0d1b2e;
  --gold:       #ffc102;
  --gold-dark:  #e6ad00;
  --gold-text:  #152148;
  --white:      #ffffff;
  --light-gray: #f4f4f4;
  --mid-gray:   #888888;
  --text-dark:  #1a1a1a;
  --nav-h:      64px;
  --sidebar-w:  300px;
}

/* ════════════════════════════════════════
   2. BASE & LAYOUT
════════════════════════════════════════ */
html, body, #react, #wrapper, #fullpage {
  font-family: 'DM Sans', sans-serif;
}

html, body, #react {
  background: var(--navy);
}

/* Offset content below fixed navbar */
div#wrapper {
  padding-top: var(--nav-h);
  box-sizing: border-box;
}

div#fullpage {
  background: var(--navy);
}

div#fullpage div#main {
  overflow: hidden;
  background: var(--navy);
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  font-size: 13px;
}

/* ════════════════════════════════════════
   3. NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--navy);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
  border-bottom: 1px solid rgba(245, 194, 0, 0.15);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-icon {
  width: 42px; height: 42px;
  background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.logo-icon .p-letter { font-size: 22px; font-weight: 400; color: var(--gold-text); }
.logo-icon .car-icon { position: absolute; bottom: 4px; right: 4px; font-size: 8px; }
.logo-name {
  font-size: 14px; font-weight: 400; color: var(--gold);
  letter-spacing: 1px; text-transform: uppercase;
}

.nav-center { display: flex; gap: 24px; align-items: center; }
.nav-link {
  color: rgba(255, 255, 255, 0.7); text-decoration: none;
  font-size: 12px; font-weight: 400; letter-spacing: 0.8px;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-link:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 10px; }
.btn-nav {
  padding: 8px 16px; border-radius: 30px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 400;
  cursor: pointer; border: 2px solid var(--gold);
  text-decoration: none; transition: all 0.2s; white-space: nowrap;
}
.btn-nav-solid            { background: var(--gold); color: var(--gold-text); }
.btn-nav-solid:hover      { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--gold-text); }
.btn-nav-outline          { background: transparent; color: var(--gold); }
.btn-nav-outline:hover    { background: var(--gold); color: var(--gold-text); }

/* Hamburger button inside navbar — override global button defaults */
.navbar .hamburger {
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer;
  padding: 6px;
  display: flex; flex-direction: column; gap: 5px;
  margin-left: 4px;
  -webkit-appearance: none;
  appearance: none;
}
.navbar .hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px; transition: all 0.3s;
}

/* ════════════════════════════════════════
   4. HAMBURGER MENU OVERLAY
════════════════════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0; background: var(--white); z-index: 2000;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid #f0f0f0; flex-shrink: 0;
}
.menu-top-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.menu-top-logo-icon {
  width: 38px; height: 38px; background: var(--gold); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
}
.menu-top-logo-icon span { font-size: 20px; font-weight: 400; color: var(--gold-text); }
.menu-top-logo-name {
  font-size: 13px; font-weight: 400; color: var(--navy);
  letter-spacing: 1px; text-transform: uppercase;
}

.menu-close {
  background: var(--navy) !important; color: var(--white) !important;
  width: 38px; height: 38px; border-radius: 50% !important;
  border: none !important;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 400; cursor: pointer; padding: 0 !important;
  touch-action: manipulation; flex-shrink: 0;
  -webkit-appearance: none; appearance: none;
}
.menu-close:hover { background: #1a2f52 !important; }

.menu-nav-actions {
  display: none; flex-direction: column; gap: 10px; padding: 20px 24px 0;
}
.menu-nav-btn {
  display: block; width: 100%; padding: 13px 20px; border-radius: 30px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
  text-align: center; text-decoration: none; transition: all 0.2s;
  touch-action: manipulation; box-sizing: border-box;
}
.menu-nav-btn-solid          { background: var(--gold); color: var(--gold-text); border: 2px solid var(--gold); }
.menu-nav-btn-solid:hover    { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--gold-text); }
.menu-nav-btn-outline        { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.menu-nav-btn-outline:hover  { background: var(--navy); color: var(--white); }

.menu-divider { height: 1px; background: #eee; margin: 16px 24px 0; display: none; }

.menu-links {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  overflow-y: auto; padding: 10px 0;
}
.menu-link {
  text-decoration: none; color: var(--text-dark); font-size: 24px; font-weight: 400;
  font-family: 'DM Sans', sans-serif; padding: 10px 24px;
  transition: color 0.2s; text-align: center; width: 100%;
  touch-action: manipulation; display: block;
}
.menu-link:hover, .menu-link:active { color: var(--gold-dark); }
.menu-link.muted { color: #bbb; font-size: 18px; }

/* ════════════════════════════════════════
   5. PARKING LOCATOR LAYOUT
════════════════════════════════════════ */
div#parking_locator {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  position: relative;
}

/* Left panel → sidebar */
div#parking_locator div#left {
  width: var(--sidebar-w);
  background: var(--white);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow: hidden;
  z-index: 50;
  border-right: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

/* Map panel → fills remaining space */
div#parking_locator div#right {
  flex: 1;
  flex-grow: 1;
  position: relative;
}

/* ════════════════════════════════════════
   6. SEARCH BAR
════════════════════════════════════════ */
div#search {
  padding: 12px;
  background: var(--navy);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex: 0;
  flex-shrink: 0;
}

div#search input#search_address {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  width: auto;
}

input#search_address::placeholder   { color: rgba(255, 255, 255, 0.4); }
input#search_address:focus          { border-color: var(--gold); }

div#parking_locator div#left div#search button#search_button {
  padding: 9px 12px;
  background: var(--gold);
  color: var(--gold-text);
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: 0;
  flex-shrink: 0;
}
div#parking_locator div#left div#search button#search_button:hover {
  background: var(--gold-dark);
}

/* Filter icon button */
div#search button#filter_button {
  padding: 9px 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  margin-left: -4px;
  position: relative;
}
#filter_button .filter-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--gold-text);
  font-size: 10px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: 'DM Sans', sans-serif;
}
div#search button#filter_button:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
div#search button#filter_button.filter-active {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 193, 2, 0.1);
}

/* ── Filter pills bar ── */
#filters-bar {
  display: flex;
  flex-direction: row;
  gap: 6px;
  padding: 0 12px 10px;
  background: var(--navy);
  overflow-x: auto;
  flex-shrink: 0;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
#filters-bar::-webkit-scrollbar              { height: 4px; }
#filters-bar::-webkit-scrollbar-track        { background: transparent; }
#filters-bar::-webkit-scrollbar-thumb        { background: var(--gold); border-radius: 4px; }
#filters-bar::-webkit-scrollbar-button       { display: none; width: 0; height: 0; }
#filters-bar .filter-pill {
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s ease;
}
#filters-bar .filter-pill:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
#filters-bar .filter-pill.filter-pill-active {
  background: var(--gold);
  color: var(--gold-text);
  border-color: var(--gold);
  font-weight: 600;
}

/* ════════════════════════════════════════
   7. GOOGLE PLACES AUTOCOMPLETE
════════════════════════════════════════ */
.pac-container {
  font-family: 'DM Sans', sans-serif !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 0 6px 6px !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
  z-index: 9999 !important;
}
.pac-item          { padding: 8px 12px !important; font-size: 13px !important; cursor: pointer !important; }
.pac-item:hover    { background: #fffbea !important; }
.pac-item-selected { background: #fffbea !important; }
.pac-matched       { color: var(--navy) !important; font-weight: 400 !important; }
.pac-icon          { display: none !important; }

/* ════════════════════════════════════════
   8. TABS
════════════════════════════════════════ */
div#parking_locator div#left div#results {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
  overflow: hidden;
  padding-top: 0;
}

div#results_tabs {
  display: flex;
  border-bottom: 2px solid #eee;
  flex-shrink: 0;
}

/* Hide the spacer divs between tabs */
div.results_tabs_spacer {
  display: none;
}

div.results_tabs_item {
  flex: 1;
  padding: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #f8f8f8;
  color: var(--text-dark);
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  border-radius: 0;
}
div.results_tabs_item + div.results_tabs_item { border-left: none; }
div.results_tabs_item.results_tabs_active {
  background: var(--white);
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
}
div.results_tabs_item:hover { background: var(--light-gray); }

/* ════════════════════════════════════════
   9. LOT LIST
════════════════════════════════════════ */
div#list {
  flex: 1;
  flex-grow: 1;
  overflow-y: auto;
  background-color: var(--white);
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}
div#list::-webkit-scrollbar       { width: 4px; }
div#list::-webkit-scrollbar-track { background: transparent; }
div#list::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ── Lot item ── */
div.lot {
  padding: 14px 14px 10px;
  /* border-bottom: 1px solid #eee; */
  cursor: pointer;
  transition: background 0.15s;
  -webkit-tap-highlight-color: rgba(255, 193, 2, 0.15);
  touch-action: manipulation;
  user-select: none;
}
div.lot:nth-child(even) { background-color: transparent; }
div.lot:hover           { background: #fffbea; }

/* ── Lot title row ── */
div.lot_title {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 6px;
}

/* ── Distance badge ── */
div.lot_distance {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--gold-text);
  font-size: 10px; font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: -0.3px;
  padding: 0;
  text-align: center;
}

/* ── Lot name ── */
div.lot_name {
  flex: 1; min-width: 0;
  font-size: 14px; font-weight: 700;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: normal;
  padding: 0;
}

/* ── Rate row ── */
div.lot_rate {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  padding-left: 50px;
  flex-direction: row;
}
div.lot_rate_name {
  color: var(--mid-gray);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-weight: 400;
  flex-grow: 1;
  align-self: auto;
}
div.lot_rate_amount {
  font-weight: 400;
  color: var(--navy);
  align-self: auto;
}

/* ── More details link ── */
div.lot_details {
  text-align: right;
  margin-top: 8px;
  margin-bottom: 0;
}
div.lot_details:last-child { margin-bottom: 0; }

a.more_details {
  display: inline-block;
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a.more_details:hover        { color: var(--navy); text-decoration: underline; }
a.more_details:visited      { color: var(--gold-dark) !important; }

/* Tax disclaimer in list */
#tax_disclaimer_search {
  margin-top: 0.5em;
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 400;
  padding-left: 50px;
}

/* ════════════════════════════════════════
   10. FACILITY POPUP (FacilityDetails in PopUp overlay)
════════════════════════════════════════ */

/* The white card */
div#facility {
  background: var(--white);
  color: var(--text-dark);
  border: none;
  border-radius: 16px;
  width: 480px;
  max-width: 95vw;
  height: 82vh;
  max-height: 640px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  filter: none;
  padding: 0;
  margin: auto;
}

/* Scrollable body */
div#facility_padded {
  flex: 1;
  overflow-y: auto;
  padding: 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
div#facility_padded::-webkit-scrollbar       { width: 4px; }
div#facility_padded::-webkit-scrollbar-track { background: transparent; }
div#facility_padded::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Tab bar — fixed at top of facility modal (outside scrollable area) */
ul.nav.nav-tabs {
  display: flex;
  list-style: none;
  padding: 12px 12px 0;
  margin: 0;
  gap: 6px;
  background: var(--navy);
  border-radius: 16px 16px 0 0;
  flex-shrink: 0;
  border-bottom: none;
}

ul.nav.nav-tabs li.nav-item {
  flex: 1;
  display: flex;
}
ul.nav.nav-tabs li.nav-item:last-child {
  flex: 0 0 auto;
}

ul.nav.nav-tabs li.nav-item button.nav-link {
  flex: 1;
  padding: 11px 8px;
  text-align: center;
  font-size: 13px; font-weight: 400;
  cursor: pointer;
  border: none;
  border-radius: 8px 8px 0 0;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  width: 100%;
}
ul.nav.nav-tabs li.nav-item button.nav-link:hover:not(.active) {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
}
ul.nav.nav-tabs li.nav-item button.nav-link.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: inset 0 3px 0 0 var(--gold);
}

/* Close tab button inside facility modal */
ul.nav.nav-tabs li.nav-item button.closebutton {
  padding: 11px 16px;
  background: rgba(229, 57, 53, 0.15) !important;
  color: #ff8a85 !important;
  border-radius: 8px 8px 0 0 !important;
  border: none !important;
  float: none;
  margin: 0;
  font-size: 13px; font-weight: 400;
  cursor: pointer;
  flex-shrink: 0;
  white-space: nowrap;
}
ul.nav.nav-tabs li.nav-item button.closebutton:hover {
  background: #e53935 !important;
  color: var(--white) !important;
}

/* Section headings inside facility modal */
.facility_heading {
  font-size: 13px; font-weight: 600;
  color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.4;
  margin-top: 18px;
  margin-bottom: 8px;
  padding: 8px 0 6px;
  border-bottom: 2px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 8px;
}
.facility_heading img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

/* Address block */
#facility_padded .tab-content > div:first-child {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Facility h1 */
#facility_padded h1 {
  font-size: 20px; font-weight: 600;
  color: var(--navy);
  margin-top: 0;
  margin-bottom: 4px;
  line-height: 1.2;
  padding-top: 0;
  font-family: 'DM Sans', sans-serif;
}

/* Lot number text */
#facility_padded .tab-content {
  font-size: 12px;
  color: var(--text-dark);
  line-height: 1.5;
}

/* Street view image */
#facility_padded img[alt="street image"] {
  border-radius: 8px;
  margin-top: 12px;
  margin-bottom: 4px;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 200px;
}

/* Rates tables */
table.facility_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
  margin-top: 6px;
}
table.facility_table thead tr th {
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  text-align: left;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
table.facility_table tbody tr td {
  padding: 10px 12px;
  font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
  color: var(--text-dark);
  vertical-align: middle;
}
table.facility_table tbody tr:last-child td      { border-bottom: none; }
table.facility_table tbody tr:nth-child(even) td { background: #fafafa; }
table.facility_table .table_right                { text-align: right; }
table.facility_table td button {
  margin: 2px 0;
  white-space: nowrap;
  padding: 7px 14px;
  font-size: 12px;
  border-radius: 5px;
}
table.facility_table td button.buy_now {
  background: var(--gold);
  color: var(--gold-text);
}
table.facility_table td button.buy_now:hover {
  background: var(--gold-dark);
}
table.facility_table td button.apply_now {
  background: var(--navy);
  color: var(--white);
}
table.facility_table td button.wait_list_me {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
table.facility_table td button.wait_list_me:hover {
  background: var(--navy);
  color: var(--white);
}

/* Payment / mobile images */
.facility_images {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  padding: 4px 0;
}
.facility_images img {
  max-height: 40px;
  border-radius: 4px;
  padding: 0;
}

/* Amenities / specials text */
#facility_padded div[style*="marginLeft"] {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark);
}

/* Upcoming rates note */
#facility_padded h6 {
  font-size: 12px;
  font-weight: 600;
  color: #d97706;
  margin: 12px 0 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Disclaimer text */
#facility_disclaimer {
  font-size: 11px;
  color: var(--mid-gray);
  line-height: 1.5;
  border-top: 1px solid #eee;
  padding-top: 14px;
  margin-top: 18px;
  font-style: italic;
}

/* Tax disclaimer inside popup */
#tax_disclaimer {
  margin-top: 8px;
  color: var(--text-dark);
  font-weight: 400;
  font-size: 12px;
}

/* Facility Details tab — extra details */
.extraDetails .description {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin: 14px 0 4px;
}
.extraDetails ul.info {
  margin: 0 0 8px;
  padding-left: 20px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dark);
}
.extraDetails .Nodetails {
  text-align: center;
  padding: 32px 0;
  color: var(--mid-gray);
  font-size: 13px;
}

/* Scroll indicator — hidden in new design */
#bottom-scroll-message,
.bottom-scroll-message {
  display: none !important;
}

/* ════════════════════════════════════════
   11. WELCOME MODAL (ParkingPopUp)
════════════════════════════════════════ */
div#parkingpopup {
  position: fixed;
  top: 0; bottom: 0; left: 0; right: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 600;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
div#parkingpopup * {
  background-color: transparent;
  color: inherit;
}

div.find-parking__wrapper {
  background: var(--white) !important;
  color: var(--text-dark);
  border-radius: 12px;
  padding: 28px;
  width: 440px;
  max-width: 92%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  animation: modalIn 0.3s ease;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}

/* Close (X) button inside welcome modal */
div.find-parking__wrapper button.exitbtn.closebutton {
  position: absolute;
  top: 14px; right: 14px;
  background: none !important;
  border: none !important;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px !important;
  transition: all 0.2s;
  float: none;
  margin: 0;
}
div.find-parking__wrapper button.exitbtn.closebutton:hover {
  background: #f0f0f0 !important;
}

div.find-parking__intro {
  font-size: 11px; font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
  display: block;
}

div.find-parking__headline {
  font-family: 'DM Serif Display', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.2;
  display: block;
}

/* "Find Parking Near Me" / "Location Services OFF" button */
button#geo-locations-submit {
  width: 100%;
  padding: 14px;
  background: var(--gold) !important;
  color: var(--gold-text) !important;
  border: none !important;
  border-radius: 8px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px; font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center; justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  margin-bottom: 16px;
  font-size: 14px !important;
}
button#geo-locations-submit:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

/* "or search by address" label */
label.locations-form-label {
  display: block;
  margin: 14px 0 6px;
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* Search field inside welcome modal */
div.input-wrapper {
  display: flex;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  overflow: visible;
  transition: border-color 0.2s;
  position: relative;
  padding-bottom: 0;
}
div.input-wrapper:focus-within { border-color: var(--gold); }

div.input-wrapper input#search-locations {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-dark);
  border-radius: 8px 0 0 8px;
  background: var(--white);
  position: static;
  width: auto;
}
div.input-wrapper input#search-locations::placeholder { color: #aaa; font-style: normal; }

button#search-locations-submit {
  padding: 12px 16px;
  background: var(--navy) !important;
  border: none !important;
  cursor: pointer;
  color: var(--white) !important;
  font-size: 15px;
  border-radius: 0 8px 8px 0 !important;
  transition: background 0.2s;
  position: static;
  top: auto; right: auto;
  z-index: auto;
}
button#search-locations-submit:hover { background: #1e3460 !important; }

/* ════════════════════════════════════════
   12. MISC
════════════════════════════════════════ */
#specials { max-height: 24px; width: auto; }

/* Toggle sidebar button — hidden on desktop, visible on mobile */
#toggle-left-side { display: none; }

/* Hidden utility elements (geo map input, etc.) */
.hiddenMapElement { display: none !important; }

/* ════════════════════════════════════════
   13. ANIMATIONS
════════════════════════════════════════ */
@keyframes modalIn {
  from { transform: translateY(16px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0)    scale(1);    opacity: 1; }
}

/* ════════════════════════════════════════
   14. RESPONSIVE
════════════════════════════════════════ */

/* ── Tablet: hide center nav links, show hamburger actions ── */
@media (max-width: 1024px) {
  .nav-center       { display: none; }
  .btn-nav-outline  { display: none; }
  .menu-nav-actions { display: flex; }
  .menu-divider     { display: block; }
  .menu-link        { font-size: 22px; }
}

/* ── Mobile: sidebar becomes slide-in drawer ── */
@media (max-width: 768px) {
  :root { --nav-h: 58px; }
  .nav-center, .btn-nav-solid, .btn-nav-outline { display: none; }
  .logo-name { display: none; }

  /* Map fills entire screen; sidebar overlays from left */
  div#parking_locator div#left {
    position: fixed;
    top: var(--nav-h); bottom: 0; left: 0;
    width: min(340px, 90vw);
    transform: translateX(-100%);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.28);
    z-index: 600;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  div#parking_locator div#left.mobile-open {
    transform: translateX(0);
  }

  /* Backdrop when sidebar is open */
  .mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 599;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-backdrop.visible {
    opacity: 1;
    pointer-events: all;
  }

  /* FAB toggle button — gold circle with hamburger icon */
  #toggle-left-side {
    display: block;
    position: fixed;
    bottom: 24px; right: 18px;
    z-index: 700;
  }
  #toggle-left-side-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--gold-text);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    padding: 0;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  #toggle-left-side-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
  }
  #toggle-left-side-btn:active {
    transform: scale(0.95);
  }
  /* Hamburger bars inside FAB */
  #toggle-left-side-btn span.fab-bar {
    display: block;
    width: 22px; height: 2.5px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }

  div.find-parking__wrapper { padding: 20px; }
  div.find-parking__headline { font-size: 22px; }

  div#facility {
    height: 85vh;
    max-height: 85vh;
  }
}

/* ── Small mobile ── */
@media (max-width: 480px) {
  :root { --nav-h: 52px; }
  .logo-icon              { width: 36px; height: 36px; }
  .logo-icon .p-letter    { font-size: 18px; }
  .navbar .hamburger span { width: 20px; }
  .menu-link              { font-size: 20px; padding: 9px 24px; }
  .menu-link.muted        { font-size: 16px; }
}


.locations-form-label {
  display: flex !important;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.locations-form-label::before,
.locations-form-label::after {
  content: "";
  flex: 1;
  border-bottom: 1px solid #ccc;
}