/* ===============================
   AMP MICI - Footer Top Notice
================================ */

.amp-footer-top {
  background: #24113D;
  padding: 38px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.amp-footer-top-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.amp-footer-notice p {
  margin: 0;
  color: #D8D3E6;
  font-family: 'Tajawal', sans-serif;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 500;
}

.amp-footer-donate {
  flex: 0 0 auto;
}

.amp-footer-donate-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: 18px;
  background: #FF6F00;
  color: #FFFFFF !important;
  font-family: 'Tajawal', sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 16px 34px rgba(255, 111, 0, 0.26);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.amp-footer-donate-btn:hover {
  background: #FF8F00;
  color: #FFFFFF !important;
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(255, 111, 0, 0.34);
}

@media (max-width: 768px) {
  .amp-footer-top {
    padding: 34px 18px;
  }

  .amp-footer-top-container {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .amp-footer-donate-btn {
    width: 100%;
  }
}