.footer {
  background: #228bd9;
  color: #ffffff;
  padding: 20px 0 26px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 14px;
  gap: 20px;
}

.footer-company {
  flex: 1;
  min-width: 280px;
}

.footer-brand {
  font-size: 40px;
  font-weight: 800;
}

.footer-brand span {
  font-size: 18px;
  font-weight: 700;
}

.footer-map {
  width: min(100%, 520px);
  flex-shrink: 0;
}

.footer-map-frame {
  position: relative;
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
}

.footer-map-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
}

.footer-map-open-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: underline;
}

.footer-contact {
  margin-top: 12px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: 6px;
}

.label {
  width: 80px; /* adjust based on longest label */
  font-weight: 600;
}

.value {
  flex: 1;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  padding-top: 10px;
  white-space: nowrap;
  overflow-x: auto;
  text-align: center;
  font-size: 12px;
  color: #ffffff;
}

@media (max-width: 767px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-map {
    width: 100%;
  }

  .footer-brand {
    font-size: 30px;
  }

  .footer-brand span {
    display: block;
    font-size: 14px;
  }
}
