/* ========= GLOBAL FOOTER ========= */
.global-footer {
  background: #0f813b;
  color: #fff;
  font-family: "Poppins", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  box-sizing: border-box;
  width: 100%;
}

/* ========= FLEX CONTAINER ========= */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 1300px;
  text-align: center;
}

/* ========= LEFT SIDE ========= */
.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  flex: 1 1 250px;
}

.footer-logo {
  width: clamp(100px, 6vw, 60px);
  height: auto;
}

.footer-brand h3 {
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  margin: 1;
  font-weight: 600;
  line-height: 1.2;
}

.footer-brand p {
  font-size: clamp(0.7rem, 1.4vw, 0.9rem);
  color: #e6e6e6;
  margin: 0;
}

/* ========= CENTER (APP + QR) ========= */
.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex: 1 1 300px;
  flex-wrap: wrap;
}

.app-btn img {
  height: clamp(30px, 4vw, 36px);
  width: auto;
  transition: transform 0.2s ease;
}

.app-btn img:hover {
  transform: scale(1.05);
}

.qr-code {
  width: clamp(45px, 7vw, 60px);
  height: auto;
  background: #fff;
  padding: 4px;
  border-radius: 4px;
}

.qr-text {
  font-size: clamp(0.7rem, 1.3vw, 0.85rem);
  color: #fff;
  white-space: nowrap;
}

/* ========= RIGHT SIDE ========= */
.footer-right {
  flex: 1 1 250px;
}

.footer-right p {
  font-size: clamp(0.7rem, 1.3vw, 0.85rem);
  color: #e6e6e6;
  margin: 0;
  text-align: right;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 100%;
    text-align: center;
  }

  .footer-center {
    flex-direction: column;
  }

  .qr-text {
    white-space: normal;
  }

  .footer-right p {
    text-align: center;
    line-height: 1.4;
  }
}
