/* ==========================================================
   MASSAGE ARMY SPA - FOOTER EXTRA STRUCTURE
   ========================================================== */

.mas-footer-extra {
  max-width: 1100px;
  margin: 20px auto 0;
  padding: 0 16px;
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  box-sizing: border-box;
}

/* Header Text */
.mas-footer-intro {
  text-align: center;
  color: #ffffff;
  margin-bottom: 24px;
}

.mas-footer-intro strong {
  font-size: 16px;
  color: #ffdeaa;
  display: block;
  margin-bottom: 4px;
}

.mas-footer-intro p {
  font-size: 13px;
  margin: 0;
  opacity: 0.9;
  line-height: 1.4;
}

/* Grid Layout Media */
.mas-footer-media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: start;
}

.mas-footer-media-item {
  display: flex;
  flex-direction: column;
}

/* Label Judul Media (Maps & Video) */
.mas-footer-media-label {
  font-size: 13px;
  font-weight: 700;
  color: #ffdeaa;
  margin-bottom: 8px;
  text-align: center !important; /* Memaksa teks di tengah */
  width: 100%;                  /* Memenuhi lebar container */
  display: block;                /* Memastikan elemen bersifat block */
  letter-spacing: 0.3px;
}

/* Responsive Embed Wrapper (16:9) */
.mas-footer-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* Ratio 16:9 */
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.05);
}

.mas-footer-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Visitor Counter Wrapper */
.mas-footer-counter {
  text-align: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
}

.mas-footer-counter img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  display: inline-block;
}

/* OPTIMASI MOBILE */
@media (max-width: 768px) {
  .mas-footer-extra {
    margin-top: 10px;
    padding: 0 10px;
  }

  .mas-footer-intro strong {
    font-size: 14.5px;
  }

  .mas-footer-intro p {
    font-size: 12px;
  }

  .mas-footer-media-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mas-footer-media-label {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .mas-footer-counter {
    margin-top: 16px;
    padding-top: 12px;
  }
}