/* ------------------------------------------------------------support start------------------------------------------------------------ */
.section-support {
  background-color: rgb(248, 249, 250);
  line-height: 1.6;
  padding: 10px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.support-root {
  width: 100%;
  height: 100%;
  position: relative;
}

.support-main-wrapper {
  max-width: 900px;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.donation-header {
  margin-bottom: 20px;
  h1 {
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(44, 62, 80);
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  p {
    color: rgb(127, 140, 141);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
  }
}

.bank {
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  border: solid 2px rgba(4, 35, 86, 1);
  border-radius: 10px;
  padding: 5px;
}

.bank-logo {
  display: block;
  width: 70px;
  height: 70px;
  margin-right: 10px;
  img {
    width: 70px;
    height: auto;
  }
}

.bank-info {
  p {
    font-size: 13.5px;
    color: rgb(0, 0, 0);
    margin-bottom: 0px;
  }
  span {
    font-weight: 700;
    margin-right: 10px;
  }
}

/* .support-form {
  display: flex;
  width: 100%;
  background-color: rgb(250, 250, 250);
  border-radius: 20px;
  border: solid 5px rgb(4, 35, 86);
  padding: 25px;
} */

.donation-form {
  background-color: rgb(255, 255, 255);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 40px;
  /* display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px; */
}

.form-section {
  margin-bottom: 25px;
}

.section-title {
  font-size: 1.2rem;
  color: rgb(44, 62, 80);
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgb(236, 240, 241);
}

.donation-type {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.donation-receipt {
  width: 100%;
  height: 200px;
  border: 2px dashed rgb(230, 230, 230);
  border-radius: 15px;
  padding: 10px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-style: italic;
}

#file-input {
  cursor: pointer;
}

.donation-icon {
  display: flex;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin-bottom: 15px;
  img {
    width: 40px;
    height: 40px;
    transition: 0.5s;
  }
}

.donation-option {
  flex: 1;
  text-align: center;
  padding: 15px;
  border: 2px solid rgb(236, 240, 241);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  h3 {
    font-size: 20px;
    font-weight: 700;
    color: rgba(4, 35, 86, 1);
  }
}

.donation-option:hover {
  border-color: rgba(4, 35, 86, 1);
  background-color: rgb(248, 250, 255);
}

.donation-option:hover .gift {
  img {
    transform: rotate(22.5deg);
  }
}

.donation-option:hover .recurring {
  img {
    transform: rotate(45deg);
  }
}

.donation-option.selected {
  border-color: rgba(4, 35, 86, 1);
  background-color: rgba(4, 35, 86, 1);
  h3 {
    color: rgb(255, 255, 255);
  }
  p {
    color: rgb(255, 255, 255);
  }
  img {
    filter: brightness(0) invert(1);
  }
}

.frequency-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.frequency-option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 2px solid rgb(236, 240, 241);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.frequency-option:hover {
  border-color: rgba(4, 35, 86, 1);
  background-color: rgb(248, 250, 255);
}

.frequency-option.selected {
  border-color: rgba(4, 35, 86, 1);
  background-color: rgba(4, 35, 86, 1);
  color: rgb(255, 255, 255);
  p {
    color: rgb(255, 255, 255);
  }
}

.frequency-option input {
  margin-right: 12px;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  /* margin-bottom: 8px; */
  font-weight: 600;
  color: rgb(44, 62, 80);
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  width: 100%;
  padding: 15px;
  border: 2px solid rgb(236, 240, 241);
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

input[type="code"] {
  width: 50%;
  padding: 15px;
  border: 2px solid rgb(236, 240, 241);
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
  margin-bottom: 5px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="code"]:focus,
input[type="tel"]:focus {
  border-color: rgba(4, 35, 86, 1);
  outline: none;
}

.optional-contact {
  label {
    display: flex;
  }
  span {
    margin-left: 5px;
  }
}

.submit-btn {
  display: flex;
  /* background-color: rgba(4, 35, 86, 1);
  color: rgb(255, 255, 255);
  border: none;
  padding: 18px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: 100%; */
  margin-top: 10px;
  justify-content: center;
  text-transform: capitalize;
}

/* .submit-btn:hover {
  background-color: rgb(8, 21, 44);
} */

.submit-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  img {
    width: 20px;
    height: 20px;
  }
}

.security-note {
  text-align: center;
  span {
    color: rgb(127, 140, 141);
    font-size: 0.9rem;
  }
}

.left-column {
  border-right: 1px solid rgb(236, 240, 241);
  padding-right: 30px;
}

.right-column {
  padding-left: 30px;
}

@media (max-width: 768px) {
  .donation-form {
    grid-template-columns: 1fr;
    padding: 12.5px;
  }
  .left-column {
    border-right: none;
    border-bottom: 1px solid rgb(236, 240, 241);
    padding-right: 0;
    padding-bottom: 30px;
  }
  .right-column {
    padding-left: 0;
    padding-top: 30px;
  }
  .amount-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .donation-type {
    flex-direction: column;
  }
  .amount-options {
    grid-template-columns: 1fr;
  }
  .card-details {
    grid-template-columns: 1fr;
  }
  .card-details .form-group:last-child {
    grid-column: span 1;
  }
}

.impact-note {
  text-align: center;
  margin-bottom: 30px;
  h3 {
    font-weight: 700;
    text-transform: capitalize;
    color: rgb(44, 62, 80);
    margin-bottom: 10px;
  }
  p {
    font-weight: 600;
    font-style: italic;
    color: rgb(127, 140, 141);
  }
}
/* ------------------------------------------------------------support end------------------------------------------------------------ */