/* ===============================
   FOOTER
================================ */

.site-footer {
  background: #ffffff;
  border-top: 1px solid #E8D7A8;
  padding-top: 40px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr; /* added location column */
  gap: 50px;
  padding-bottom: 30px;
  align-items: start;
}

/* TITLES */
.footer-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #1C1C1C;
  margin-bottom: 16px;
  text-transform: uppercase;
}

/* TEXT */
.footer-text {
  font-size: 14.5px;
  color: #444;
  line-height: 1.7;
}

.footer-contact {
  font-size: 14.5px;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.4;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  font-size: 14.5px;
  color: #444;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #C8A04F;
}

/* ===============================
   LOCATION / MAP
================================ */

.footer-location {
  max-width: 260px;
}

.footer-map {
  width: 100%;
  height: 140px;                /* compact footer map */
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #E8D7A8;
  background: #f8f8f8;
}

.footer-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(15%) contrast(1.05);
}

/* Map link */
.footer-map-link {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #C8A04F;
  text-decoration: none;
}

.footer-map-link:hover {
  text-decoration: underline;
}

/* ===============================
   FOOTER BOTTOM
================================ */

.footer-bottom {
  border-top: 1px solid #E8D7A8;
  padding: 10px 0;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13.5px;
  color: #666;
}

.footer-bottom p {
  margin: 0;
}

.footer-credit {
  color: #666;
}

/* ===============================
   CTA SECTION FIX
================================ */

.section.cta-section {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-location {
    max-width: 100%;
  }

  .footer-map {
    height: 180px;
  }

  .footer-bottom-flex {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
}

/* ===============================
   WHATSAPP BUTTON
================================ */

.whatsapp-button {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #25D366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;

  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.whatsapp-button img {
  width: 22px;
  height: 22px;
}

.whatsapp-button:hover {
  transform: translateY(-3px);
}
