/*─────────────────────────────────────────────────────*/
/*  Shaybee Ultimate Footer                           */
/*─────────────────────────────────────────────────────*/
.site-footer {
  background: #2c2c2c;            /* deep charcoal */
  color: #ddd;                    /* light grey text */
  padding: 4rem 0 2rem;
  position: relative;
  overflow: hidden;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
}

/* Ensure only footer links get this style */
.footer-col a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #A67B5B;                 /* almond-tea accent */
}

/*─────────────────────── Columns ───────────────────────*/
.footer-col {
  margin-bottom: 2rem;
}
.footer-col h5 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.footer-col h5::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #A67B5B;
  margin-top: 0.5rem;
}

/*─────────────────── Quick Links List ───────────────────*/
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}
.footer-links li i {
  margin-right: 0.5rem;
  color: #A67B5B;
}

/*──────────────────── Social Icons ──────────────────────*/
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: transparent;     /* no extra circle */
  border-radius: 0;            /* remove round */
  color: #ddd;
  font-size: 1.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover {
  color: #A67B5B;
  transform: translateY(-2px);
}

/* If you have SVG or <img> inside, ensure it inherits: */
.social-icons a svg,
.social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/*────────────────── Newsletter Signup ──────────────────*/
.footer-newsletter {
  margin-top: 2rem;
}
.footer-newsletter input,
.footer-newsletter button {
  font-size: 0.9rem;
  outline: none;
}
.footer-newsletter input {
  width: calc(100% - 110px);
  padding: 0.6rem 1rem;
  border: 1px solid #444;
  border-radius: 50px 0 0 50px;
  background: #3a3a3a;
  color: #eee;
}
.footer-newsletter input::placeholder {
  color: #bbb;
}
.footer-newsletter button {
  width: 110px;
  border: none;
  background: #A67B5B;
  color: #fff;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.footer-newsletter button:hover {
  background: #8f674c;
}

/*────────────────── App Download Badges ─────────────────*/
.app-badges {
  margin-top: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.app-badges img {
  height: 45px;
  filter: brightness(0.85);
  transition: filter 0.2s ease;
}
.app-badges img:hover {
  filter: brightness(1);
}

/*──────────────────── Footer Bottom ─────────────────────*/
.footer-bottom {
  border-top: 1px solid #444;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #777;
  text-align: center;
}

/*──────────────────── Responsive ─────────────────────*/
@media (max-width: 576px) {
  .footer-col {
    text-align: center;
  }
  .footer-newsletter input,
  .footer-newsletter button {
    width: 100%;
    border-radius: 50px;
    margin-bottom: 0.5rem;
  }
  .app-badges {
    justify-content: center;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
}
/*─────────────────────────────────────────────────────*/
/*  Shaybee Footer: responsive map embed              */
/*─────────────────────────────────────────────────────*/
.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;  /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  margin-top: 1rem;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Katalog badge */
.catalog-badge {
  display: inline-block;
  overflow: hidden;
  border-radius: 8px;
}

/* Ukuran badge */
.catalog-img {
  max-width: 120px;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}

/* Hover effect—sedikit membesar */
.catalog-badge:hover .catalog-img {
  transform: scale(1.05);
}
