/* ========================================= */
/*              UNIFIED FOOTER               */
/* ========================================= */
.site-footer {
  background: #142c44; /* Matching the deep blue from the design */
  color: #92a4b8;
  padding: 50px 0 0 !important;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.site-footer-wrapper {
  padding: 0 20px !important;
}

.site-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.site-footer-col {
  display: flex;
  flex-direction: column;
}

.site-footer-col h3 {
  color: #ffaa00;
  font-size: 14px;
  margin-bottom: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Col 1: Brand & Location */
.site-footer-logo {
  max-width: 270px;
  margin-top: -30px;
  margin-bottom: -35px;
  margin-left: -10px;
}

.site-footer-col p {
  line-height: 1.6;
  font-size: 13px;
  color: #a4b5c7;
  margin-bottom: 15px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}

.location-icon {
  color: #ffaa00;
  font-size: 16px;
  margin-top: 3px;
}

.location-item p {
  margin-bottom: 0;
}

/* Social Icons */
.site-footer-social {
  display: flex;
  gap: 12px;
}

.site-footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  transition: transform 0.3s, filter 0.3s;
  text-decoration: none;
}

.site-footer-social a:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.social-phone { background: #0d6efd; }
.social-wa { background: #25d366; }
.social-ig { background: #e1306c; }
.social-email { background: #6c757d; }

/* Col 2: Contact List & Quick Links */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #a4b5c7;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.contact-list li a:hover {
  color: #fff;
}

.icon-circle {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffaa00;
  font-size: 12px;
  flex-shrink: 0;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 25px;
}

.site-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.site-footer-links li a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #a4b5c7;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}

.site-footer-links li a::before {
  content: '›';
  color: #ffaa00;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.site-footer-links li a:hover {
  color: #ffaa00;
}

/* Col 3: Map */
.site-footer-map {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.site-footer-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Bottom Bar */
.site-footer-bottom {
  background: #0b1d39;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 13px;
  color: #6a7c8f;
}

/* Responsive */
@media (max-width: 992px) {
  .site-footer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-footer-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
