/* ===================================
   CONTACT CARDS SECTION
   =================================== */
.contact-cards-section {
  background: #ffffff;
  padding: 60px 0;
}

.contact-cards-section .grid-3 {
  margin-bottom: 0;
}

.contact-card {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f3f4f6;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.contact-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  background: var(--primary-mid);
}

.contact-icon i {
  color: var(--primary-mid);
  font-size: 28px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
  color: white;
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: var(--text-mid);
  margin: 0;
}

.contact-card a {
  color: var(--primary-mid);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-card a:hover {
  color: var(--primary-dark);
}

/* ===================================
   ADDRESS & MAP SECTION
   =================================== */
.address-map-section {
  background: #f9fafb;
  padding: 80px 0;
}

.address-map-section .grid-2 {
  gap: 40px;
  align-items: flex-start;
}

.address-content .section-title.left-align {
  text-align: left;
  margin-bottom: 16px;
}

.address-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 20px;
}

.address-text i {
  color: var(--primary-mid);
  margin-right: 8px;
}

.social-media-wrapper {
  margin-top: 24px;
}

.social-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: scale(1.15);
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-icon.youtube {
  background: #ff0000;
}

.map-container {
  width: 100%;
}

.map-wrapper {
  width: 100%;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  width: 100%;
  height: 450px;
  background: var(--primary-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-gray);
}

.placeholder-content {
  text-align: center;
}

.placeholder-icon {
  font-size: 48px;
  margin-bottom: 12px;
  opacity: 0.4;
}

/* ===================================
   CONTACT FORM SECTION
   =================================== */
.contact-form-section {
  background: #ffffff;
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-description {
  color: var(--text-mid);
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 16px;
  line-height: 1.6;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-label i {
  color: var(--primary-mid);
  margin-right: 6px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
  font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--primary-mid);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-button {
  width: 100%;
  padding: 16px;
  background: var(--primary-mid);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.3);
}

.submit-button:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(var(--primary-rgb), 0.4);
}

.submit-button i {
  margin-right: 8px;
}

/* ===================================
   DONATION SECTION
   =================================== */
.donation-section {
  background: #f9fafb;
  padding: 80px 0;
}

.donation-container {
  max-width: 900px;
  margin: 0 auto;
}

.donation-grid {
  gap: 32px;
  align-items: stretch;
}

.donation-card {
  background: white;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.donation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.donation-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.qris-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.bank-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.donation-icon i {
  color: white;
  font-size: 28px;
}

.donation-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.donation-subtitle {
  color: var(--text-mid);
  font-size: 14px;
  margin-bottom: 28px;
}

/* QRIS Styles */
.qris-wrapper {
  max-width: 280px;
  margin: 0 auto;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 2px dashed var(--primary-light);
}

.qris-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.donation-footer {
  margin-top: 20px;
  font-size: 13px;
  color: var(--text-gray);
}

.donation-footer i {
  color: var(--primary-mid);
  margin-right: 4px;
}

/* Bank Transfer Styles */
.bank-details {
  background: #f9fafb;
  padding: 28px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  text-align: left;
}

.bank-detail-item {
  margin-bottom: 20px;
}

.bank-detail-item:last-child {
  margin-bottom: 0;
}

.bank-label {
  display: block;
  font-size: 12px;
  color: var(--text-gray);
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bank-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.rekening-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rekening-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-mid);
  letter-spacing: 1px;
  flex: 1;
  margin: 0;
}

.copy-button {
  padding: 10px 18px;
  background: var(--primary-mid);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.copy-button:hover {
  background: var(--primary-dark);
}

.copy-button.copied {
  background: #10b981;
}

.copy-button i {
  margin-right: 4px;
}

.info-box-orange {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #f59e0b;
}

.info-box-orange p {
  font-size: 13px;
  color: #92400e;
  margin: 0;
}

.info-box-orange i {
  margin-right: 6px;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 768px) {
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .donation-card {
    padding: 32px 24px;
  }

  .map-wrapper,
  .map-placeholder {
    height: 300px;
  }

  .contact-cards-section,
  .address-map-section,
  .contact-form-section,
  .donation-section {
    padding: 50px 0;
  }
}
