.site-footer {
    background-color: #0c4a6e;
    color: #fff;
    padding: 30px 20px 15px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 15px;
    justify-content: space-between;
}

.footer-map,
.footer-links {
    flex: 1 1 300px;
    min-width: 280px;
}

.footer-map h3,
.footer-links h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    border-bottom: 2px solid #f8f8f8;
    padding-bottom: 5px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #cbd5e1; /* lighter text */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #000000; /* black highlight */
}

.footer-copy {
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.footer-reviews {
  flex: 1 1 300px;
  min-width: 280px;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 6px;
}

.footer-reviews h3 {
  font-size: 1.3rem;
  border-bottom: 2px solid #f8f8f8;
  padding-bottom: 5px;
  color: #fff;
  margin-top: 0;
}

.google-review-box {
  color: #cbd5e1;
  font-size: 0.95rem;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 5px;
}

.google-review-box::-webkit-scrollbar {
  width: 6px;
}
.google-review-box::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 3px;
}

.footer-brands {
  flex: 1 1 300px;
  min-width: 280px;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
}

.footer-brands h3 {
  font-size: 1.3rem;
  border-bottom: 2px solid #f8f8f8;
  padding-bottom: 5px;
  color: #fff;
  margin-top: 0;
  margin-bottom: 20px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  justify-items: center;
}

.brand-icon img {
  width: 100%;
  max-width: 80px;
  height: auto;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
  border-radius: 4px;
}

.brand-icon img:hover {
  filter: grayscale(0%);
}



/* Responsive */
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 20px;
    }
}

/* Extra small screens (max-width: 400px) */
@media (max-width: 400px) {
    .footer-map,
    .footer-links {
        min-width: 100%;
    }

    .footer-map h3,
    .footer-links h3 {
        font-size: 1.1rem;
    }

    .footer-links ul li {
        margin-bottom: 8px;
    }

    .footer-copy {
        font-size: 0.85rem;
        padding: 0 10px;
    }
}
