/* Welcome Message */
.welcome-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wave {
  font-size: 32px;
  animation: wave 2.5s infinite;
  transform-origin: 70% 70%;
  display: inline-block;
}

@keyframes wave {
  0%, 100% { transform: rotate(0deg); }
  10%, 30% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
}

.welcome-text {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.welcome-text strong {
  color: #fbbf24;
  font-weight: 800;
}

/* Explore Section */
.explore-section {
  padding: 80px 20px 60px;
  background: #f8fafc;
}

.section-title {
  text-align: center;
  font-size: 36px;
  color: #0e3b3a;
  font-weight: 800;
  margin-bottom: 50px;
  line-height: 1.3;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Responsive Grid Breakpoints */
@media (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.feature-card {
  background: #fff;
  padding: 50px 40px;
  border-radius: 24px;
  text-align: center;
  border: 3px solid #13a39b;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(19, 163, 155, 0.2);
  border-color: #0e3b3a;
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(19, 163, 155, 0.15);
}

.feature-icon {
  font-size: 50px;
  display: block;
}

.feature-card h3 {
  font-size: 20px;
  color: #0e3b3a;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* Search Section - Professional Design */
.search-section {
  padding: 60px 20px 80px;
  background: linear-gradient(135deg, #e0f2f1 0%, #b2dfdb 100%);
  position: relative;
  overflow: hidden;
}

.search-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(19, 163, 155, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.search-container-outer {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.search-title {
  font-size: 36px;
  color: #0e3b3a;
  font-weight: 800;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.search-subtitle {
  font-size: 18px;
  color: #64748b;
  margin: 0 0 40px 0;
  font-weight: 500;
  line-height: 1.5;
}

.search-form-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

/* Outer gradient container (purple/blue gradient) */
.search-box-professional {
  background: linear-gradient(145deg, #13a39b, #0e7c77);
  padding: 40px;
  border-radius: 40px;
  box-shadow:
    0 35px 60px rgba(0,0,0,0.2),
    inset 0 0 15px rgba(255,255,255,0.15);
  position: relative;
}

/* Inner white bubble container */
.search-box-professional::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #f8f8ff;
  border-radius: 80px;
  box-shadow:
    0 40px 45px rgba(14, 59, 58, 0.3),
    inset 0 0 6px rgba(255,255,255,0.8);
}

/* Input field */
.search-input-professional {
  position: relative;
  z-index: 2;
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 32px;
  color: #13a39b;
  font-weight: 600;
  padding: 35px 140px 35px 60px;
  text-align: left;
}

.search-input-professional::placeholder {
  color: #4db8b0;
  opacity: 0.9;
}

/* Floating circle search button */
.search-btn-professional {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 15px 40px rgba(14, 59, 58, 0.45),
    inset 0 4px 6px rgba(255,255,255,0.9);
  transition: all 0.3s ease;
}

.search-btn-professional:hover {
  transform: translateY(-50%) translateY(-4px);
  box-shadow:
    0 22px 55px rgba(14, 59, 58, 0.6),
    inset 0 4px 6px rgba(255,255,255,1);
}

.search-btn-professional:active {
  transform: translateY(-50%) translateY(-2px);
}

/* Search icon SVG */
.search-btn-professional svg {
  width: 38px;
  height: 38px;
  stroke: #13a39b;
  stroke-width: 3.5;
  fill: none;
  transition: all 0.3s ease;
}

.search-btn-professional:hover svg {
  stroke: #0e7c77;
  transform: rotate(15deg) scale(1.1);
}

/* Results Header with Filters */
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.results-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border: 2px solid #e5e7eb;
  background: #fff;
  color: #475569;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-btn:hover {
  border-color: #13a39b;
  color: #13a39b;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #0e3b3a 0%, #13a39b 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(19, 163, 155, 0.3);
}

.star-icon {
  font-size: 16px;
}

/* Favorite Button on Cards */
.favorite-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 4px;
  line-height: 1;
  opacity: 0.6;
}

.favorite-btn:hover {
  transform: scale(1.2);
  opacity: 1;
}

.favorite-btn.favorited {
  opacity: 1;
  animation: heartBeat 0.6s ease;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(1.1); }
  75% { transform: scale(1.2); }
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.card-info {
  flex: 1;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0e3b3a 0%, #13a39b 100%);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-weight: 600;
  font-size: 15px;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.4s ease;
  z-index: 9999;
  max-width: 300px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.toast.error {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

/* Responsive Design Updates */
@media (max-width: 768px) {
  .welcome-message {
    flex-direction: column;
    gap: 8px;
  }

  .wave {
    font-size: 28px;
  }

  .welcome-text {
    font-size: 18px;
    text-align: center;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .explore-section {
    padding: 50px 20px 40px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 40px 30px;
  }

  .feature-icon-wrapper {
    width: 90px;
    height: 90px;
  }

  .feature-icon {
    font-size: 45px;
  }

  .feature-card h3 {
    font-size: 18px;
  }

  .feature-card p {
    font-size: 14px;
  }

  .search-section {
    padding: 40px 20px 60px;
  }

  .search-title {
    font-size: 28px;
  }

  .search-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .search-form-wrapper {
    max-width: 100%;
  }

  .search-box-professional {
    padding: 30px;
    border-radius: 35px;
  }

  .search-box-professional::before {
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 65px;
  }

  .search-input-professional {
    font-size: 24px;
    padding: 28px 120px 28px 40px;
  }

  .search-btn-professional {
    width: 70px;
    height: 70px;
    right: 40px;
  }

  .search-btn-professional svg {
    width: 32px;
    height: 32px;
  }

  .results-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .results-filters {
    width: 100%;
  }

  .filter-btn {
    flex: 1;
    justify-content: center;
    min-width: 120px;
  }

  .toast {
    bottom: 20px;
    right: 20px;
    left: 20px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .welcome-text {
    font-size: 16px;
  }

  .explore-section {
    padding: 40px 15px 30px;
  }

  .search-section {
    padding: 30px 15px 50px;
  }

  .search-title {
    font-size: 24px;
  }

  .search-subtitle {
    font-size: 15px;
  }

  .search-box-professional {
    padding: 20px;
    border-radius: 30px;
  }

  .search-box-professional::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 55px;
  }

  .search-input-professional {
    font-size: 20px;
    padding: 24px 100px 24px 30px;
  }

  .search-btn-professional {
    width: 60px;
    height: 60px;
    right: 28px;
  }

  .search-btn-professional svg {
    width: 28px;
    height: 28px;
    stroke-width: 3;
  }

  .feature-card {
    padding: 30px 20px;
  }
}

/* Medium Screens (Tablets) */
@media (min-width: 769px) and (max-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feature-card {
    padding: 40px 30px;
  }

  .search-form-wrapper {
    flex-wrap: nowrap;
  }

  .search-input-main {
    min-width: 0;
  }
}

/* Large Screens */
@media (min-width: 1201px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .search-container {
    max-width: 900px;
  }
}

/* Hide old search form styling in hero */
.hero #searchForm {
  display: none;
}

/* Override any conflicting search styles */
#searchForm input[type="search"],
#searchForm input#searchInput {
  all: unset;
}

/* Search form should only use new styles in search-section */
.search-section #searchForm {
  display: flex;
}




/* SEARCH BAR */
.search-section-professional {
    padding: 40px 0 80px;
    background: radial-gradient(circle at top, #f7fcff 0%, #d6e9e7 60%, #c5dad7 100%);
}

.search-title-pro {
    text-align: center;
    font-size: 32px;
    color: #0e3b3a;
    font-weight: 800;
    margin-bottom: 10px;
}

.search-subtitle-pro {
    text-align: center;
    font-size: 16px;
    color: #64748b;
    margin-bottom: 30px;
    font-weight: 500;
}

.search-container-pro {
    max-width: 620px;
    margin: 0 auto;
    height: 80px;
    padding: 3px;
    border-radius: 999px;
    background: linear-gradient(135deg, #84efc3, #96dfd3) !important;
    box-shadow:
        0 30px 60px rgba(15, 40, 60, 0.45),
        0 0 0 1px rgba(255, 255, 255, 0.4);
}

.search-box-pro {
    position: relative;
    display: flex;
    align-items: center;
    top: 7.5px;
    width: 100%;
    height: 60px;
    border-radius: 999px;
    background: rgba(250, 252, 255, 0.98) !important;
    padding: 0 22px;
    padding-right: 0;
    overflow: hidden;

    box-shadow:
        0 18px 30px rgba(41, 55, 105, 0.35),
        inset 0 1px 4px rgba(255, 255, 255, 0.9);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.search-box-pro:focus-within {
    transform: translateY(-2px);
    box-shadow:
        0 24px 40px rgba(41, 55, 105, 0.45),
        inset 0 1px 4px rgba(255, 255, 255, 1);
}

/* Text field */
.search-box-pro input {
    flex: 1;
    width: 450px !important;
    height: 40px !important;
    border-radius: 5px !important;
    border: none;
    outline: none;
    background: transparent;
    font-size: 18px !important;
    color: #04093e;
    font-weight: 500;
    padding-right: 110px;      /* space so text never goes under button */
}

.search-box-pro input::placeholder {
    color: #b7bbe6;
    opacity: 0.9;
}

/* Yellow button – full pill with 999px on both sides */
.search-btn-pro {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    width: 100px !important;
    height: 100% !important;
    border: none;
    border-radius: 999px !important;      /* both sides rounded */
    background: linear-gradient(135deg, #ffc933, #f4b022);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow:
        0 18px 35px rgba(20, 25, 80, 0.5),
        inset 0 3px 5px rgba(255, 255, 255, 0.95);
    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease;
}

/* Hover / active effects */
.search-btn-pro:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #ffd645, #f7b823);
    box-shadow:
        0 24px 45px rgba(20, 25, 80, 0.6),
        inset 0 3px 5px rgba(255, 255, 255, 1);
}

.search-btn-pro:active {
    transform: translateY(0);
    box-shadow:
        0 14px 30px rgba(20, 25, 80, 0.5),
        inset 0 2px 3px rgba(255, 255, 255, 0.9);
}

.search-btn-pro svg {
    width: 22px;
    height: 22px;
    stroke: #5c63ff;
    stroke-width: 2.8;
    fill: none;
    transition: stroke 0.18s ease;
}

/* Icon turns white on hover */
.search-btn-pro:hover svg {
    stroke: #ffffff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
    .search-container-pro {
        max-width: 92%;
        height: 80px !important;
        padding: 3px !important;
        border-radius: 999px !important;
    }

    .search-box-pro {
        height: 60px !important;
        top: 7.5px !important;
        border-radius: 999px !important;
        padding: 0 22px !important;
        padding-right: 0 !important;
    }

    .search-btn-pro {
        width: 100px !important;
        height: 100% !important;
        border-radius: 999px !important;
    }

    .search-box-pro input {
        font-size: 14px;
        padding-right: 110px !important;
    }

    .search-btn-pro svg {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 480px) {
    .search-section-professional {
        padding: 30px 12px 60px;
    }

    .search-container-pro {
        max-width: 92%;
        height: 80px !important;
        padding: 3px !important;
        border-radius: 999px !important;
    }

    .search-box-pro {
        height: 60px !important;
        top: 7.5px !important;
        border-radius: 999px !important;
        padding: 0 22px !important;
        padding-right: 0 !important;
    }

    .search-btn-pro {
        width: 100px !important;
        height: 100% !important;
        border-radius: 999px !important;
    }

    .search-box-pro input {
        font-size: 13px;
        padding-right: 110px !important;
    }

    .search-btn-pro svg {
        width: 22px !important;
        height: 22px !important;
        stroke-width: 2.8 !important;
    }
}

/* Custom Confirmation Modal */
.confirm-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.2s ease;
}

.confirm-modal-overlay.show {
  display: flex;
}

.confirm-modal {
  background: white;
  border-radius: 16px;
  padding: 32px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

.confirm-modal-icon {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
}

.confirm-modal-title {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  margin-bottom: 12px;
}

.confirm-modal-message {
  font-size: 15px;
  color: #64748b;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.5;
}

.confirm-modal-buttons {
  display: flex;
  gap: 12px;
}

.confirm-modal-btn {
  flex: 1;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.confirm-modal-btn-cancel {
  background: #f1f5f9;
  color: #475569;
}

.confirm-modal-btn-cancel:hover {
  background: #e2e8f0;
}

.confirm-modal-btn-confirm {
  background: #ef4444;
  color: white;
}

.confirm-modal-btn-confirm:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*Live Garage Section */
.live-garage-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
  }

  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
  }

  .section1-title {
  font-size: 28px;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px; /* Add spacing between emoji and text */
}

.section-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 5px 0 0 3px; /* Left margin = emoji width + gap */
}

  .official-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }

  .official-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
  }

  .garage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
  }

  .loading-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
  }

  .spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e2e8f0;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
  }

  @keyframes spin {
    to { transform: rotate(360deg); }
  }

  .garage-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .garage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
  }

  .garage-card.status-available::before {
    background: linear-gradient(90deg, #10b981, #059669);
  }

  .garage-card.status-moderate::before {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
  }

  .garage-card.status-filling::before {
    background: linear-gradient(90deg, #f59e0b, #d97706);
  }

  .garage-card.status-full::before {
    background: linear-gradient(90deg, #ef4444, #dc2626);
  }

  .garage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .garage-top {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
  }

  .garage-name-block h4 {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin: 0 0 6px 0;
  }

  .garage-name-block p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
  }

  .percent-badge {
    font-size: 32px;
    font-weight: 900;
    padding: 8px 16px;
    border-radius: 12px;
    line-height: 1;
  }

  .status-available .percent-badge {
    background: #d1fae5;
    color: #047857;
  }

  .status-moderate .percent-badge {
    background: #dbeafe;
    color: #1e40af;
  }

  .status-filling .percent-badge {
    background: #fef3c7;
    color: #92400e;
  }

  .status-full .percent-badge {
    background: #fee2e2;
    color: #991b1b;
  }

  .availability-info {
    margin: 24px 0;
  }

  .spaces-count {
    font-size: 36px;
    font-weight: 900;
    color: #1e293b;
    margin: 0 0 4px 0;
  }

  .status-available .spaces-count {
    color: #10b981;
  }

  .status-moderate .spaces-count {
    color: #3b82f6;
  }

  .status-filling .spaces-count {
    color: #f59e0b;
  }

  .status-full .spaces-count {
    color: #ef4444;
  }

  .spaces-label {
    font-size: 14px;
    color: #64748b;
    margin: 0;
  }

  .capacity-bar {
    width: 100%;
    height: 10px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
  }

  .capacity-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.6s ease;
  }

  .status-available .capacity-fill {
    background: linear-gradient(90deg, #10b981, #059669);
  }

  .status-moderate .capacity-fill {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
  }

  .status-filling .capacity-fill {
    background: linear-gradient(90deg, #f59e0b, #d97706);
  }

  .status-full .capacity-fill {
    background: linear-gradient(90deg, #ef4444, #dc2626);
  }

  .garage-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
  }

  .capacity-text {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
  }

  .map-btn {
    padding: 10px 18px;
    background: #f1f5f9;
    color: #475569;
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
  }

  .map-btn:hover {
    background: #e2e8f0;
    transform: translateX(3px);
  }

  .data-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    font-size: 13px;
    color: #64748b;
  }

  #lastUpdate {
    font-weight: 600;
  }

  .data-source {
    color: #94a3b8;
  }

  @media (max-width: 768px) {
    .section-header {
      flex-direction: column;
      align-items: flex-start;
    }
    
    .garage-grid {
      grid-template-columns: 1fr;
    }
    
    .data-info {
      flex-direction: column;
      align-items: flex-start;
    }
  }