.tm-donation-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #eafaff, #ffffff, #dff5ff);
}

.tm-donation-grid {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 25px;
}

.tm-donation-grid > div {
  background: #fff;
  border-radius: 28px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

/* TITLES */

.tm-title {
  font-size: 32px;
  margin-bottom: 20px;
  color: #083b5b;
}

.tm-subtitle {
  color: #667085;
  margin-bottom: 20px;
}

/* DONATION FORM */

.tm-amount-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tm-amount-buttons button {
  flex: 1;
  min-width: 100px;
  border: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  background: #ecfbff;
  color: #0084a9;
  font-weight: 600;
  transition: 0.3s;
}

.tm-amount-buttons button:hover {
  background: #00aee6;
  color: #fff;
}

.tm-input {
  width: 100%;
  padding: 16px;
  border: 1px solid #d7edf6;
  border-radius: 12px;
  margin-bottom: 20px;
  outline: none;
}

.tm-frequency {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.tm-frequency-btn {
  flex: 1;
  border: none;
  padding: 14px;
  cursor: pointer;
  border-radius: 12px;
  background: #eef8fc;
}

.tm-frequency-active {
  background: linear-gradient(135deg, #00bfff, #008fd8);
  color: #fff;
}

.tm-donate-btn {
  display: block;
  text-align: center;
  text-decoration: none;
  padding: 16px;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  background: linear-gradient(135deg, #00bfff, #008fd8);
}

/* MESSAGE */

.tm-message-card {
  text-align: center;
  background: linear-gradient(180deg, #ffffff, #f3fcff);
}

.tm-message-icon {
  width: 110px;
  height: 110px;
  margin: auto auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #fff;
  background: linear-gradient(135deg, #00c8ff, #0097d8);
}

.tm-message-card h2 {
  color: #083b5b;
  margin-bottom: 15px;
}

.tm-message-card p {
  color: #667085;
  line-height: 1.8;
}

/* PAYMENT */

.tm-payment-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
}

.tm-payment-tab {
  flex: 1;
  border: none;
  cursor: pointer;
  padding: 14px;
  border-radius: 12px;
  background: #edfaff;
  color: #0084a9;
  font-weight: 600;
}

.tm-payment-tab.tm-active {
  background: linear-gradient(135deg, #00bfff, #008fd8);
  color: #fff;
}

.tm-bank-box {
  background: #f7fdff;
  border: 1px solid #d8eef6;
  padding: 25px;
  border-radius: 18px;
}

.tm-bank-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px dashed #d8eaf2;
}

.tm-bank-row:last-child {
  border: none;
}

.tm-bank-label {
  color: #0083a8;
  font-weight: 600;
}

.tm-bank-value {
  font-weight: 600;
  color: #1e293b;
}

.tm-qr-box {
  text-align: center;
}

.tm-qr-box img {
  width: 100%;
  max-width: 260px;
  border-radius: 15px;
}

/* TABLET */

@media (max-width: 991px) {
  .tm-donation-grid {
    grid-template-columns: 1fr;
  }

  .tm-payment-card {
    order: 1;
  }

  .tm-message-card {
    order: 2;
  }

  .tm-amount-card {
    order: 3;
  }
}

/* MOBILE */

@media (max-width: 576px) {
  .tm-donation-section {
    padding: 60px 15px;
  }

  .tm-donation-grid > div {
    padding: 25px;
  }

  .tm-payment-tabs {
    flex-direction: column;
  }

  .tm-bank-row {
    flex-direction: column;
    gap: 8px;
  }

  .tm-title {
    font-size: 26px;
  }

  .tm-message-icon {
    width: 85px;
    height: 85px;
    font-size: 35px;
  }
}
