/* ====================== GET INVOLVED SECTION ====================== */

.get-involved {
  padding: 2rem;
  position: relative;
  background: linear-gradient(135deg, #fff6fb 0%, #ffe9f0 100%);
}

/* Volunteer & Donor Blocks */
.cta-volunteer,
.cta-donor {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Backgrounds */
.cta-volunteer {
  background: linear-gradient(145deg, #f9e4f0, #fce8f3);
}

.cta-donor {
  background: linear-gradient(145deg, #ffe9e9, #fff1f1);
}

/* Hover Effect */
.cta-volunteer:hover,
.cta-donor:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(178, 24, 109, 0.2);
}

/* Headings & Paragraphs */
.cta-volunteer .section-title,
.cta-donor .section-title {
  font-size: 2rem;
  position: relative;
  display: inline-block;
  color: black;
}


.cta-volunteer .section-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: #b2186d;
  margin: 0.5rem auto;
  border-radius: 2px;
}

.cta-donor .section-title::after {
  content: "";
  display: block;
  width: 70%;
  height: 4px;
  background: #b2186d;
  margin: 0.5rem auto;
  border-radius: 2px;
}

/* Contact Info & Form Blocks */
.contact-info,
.contact-form-container {
  flex: 1 1 50%;
  background-color: #f3f2f2;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  margin-bottom: 1.5rem;
}

.contact-info:hover,
.contact-form-container:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(178, 24, 109, 0.15);
}

/* Headings & Text */
.contact-info h3,
.contact-form-container h3 {
  font-size: 1.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.contact-info a {
  color: #b2186d;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  text-decoration: underline;
  color: #962f5d;
}

/* Form Styling */
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.form-group label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: #0d4db4;
  text-align: left;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-group .contact-enquiry {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group .contact-enquiry:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(12, 40, 86, 0.2);
  outline: none;
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

/* Submit Button */
.btn-submit {
  background-color: #b2186d;
  color: #fff;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(178, 24, 109, 0.2);
}

.btn-submit:hover {
  background-color: #962f5d;
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(178, 24, 109, 0.3);
}

/* Contact List Inline */
.contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  max-width: 100%;
}

.contact-list p {
  margin: 0;
  display: flex;
  gap: 5px;
}

/* Form Status Messages */
.form-status {
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1rem;
  font-weight: 500;
  display: none;
}

.form-status.success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #10b981;
}

.form-status.error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #ef4444;
}

@media (max-width: 480px) {
.cta-volunteer .section-title, .cta-donor .section-title{
    font-size: 1.5rem;
}

.contact-info h3,
.contact-form-container h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.cta-volunteer p {
  line-height: 1.2;
  margin-bottom: 15px;
}

.cta-donor p {
    line-height: 1.2;
  margin-bottom: 15px;
  margin-top: 7px;
}

.banking-details p{
  line-height: 1;
  margin-bottom: 0;
}
}
