/* ========================================
   FOOTER – footer.css
   ======================================== */

/* Footer Base */
.footer {
  background: #2d2d2d;
  color: #ccc;
  padding: 60px 0 30px;
  font-size: 14px;
}

/* Main Content – 3 Columns */
.footer-content {
  display: flex;
  gap: 50px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

/* Logo Column */
.footer-logo {
  flex: 1;
  min-width: 280px;
}

.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 15px;
  display: block;
}

.footer-logo .quote {
  font-style: italic;
  color: #aaa;
  line-height: 1.6;
  margin-top: 20px;
  font-size: 18px;
}

/* Contact Column */
.footer-contact {
  flex: 1;
  min-width: 280px;
}

.footer-contact h4 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-contact p {
  margin: 6px 0;
  color: #bbb;
}

.footer-contact p:first-of-type {
  margin-top: 0;
}

/* Map Column */
.footer-map {
  flex: 1;
  min-width: 300px;
}

.footer-map h5 {
  color: white;
  margin-bottom: 15px;
  font-size: 16px;
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  color: #999;
  font-size: 13px;
}

.footer-bottom span {
  color: #a61e3d;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .footer-map {
    order: -1; /* Map on top */
    width: 100%;
  }

  .footer-map iframe {
    height: 200px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}