/**
 * =====================================================
 * Help Us Transform Lives Section
 * Path: assets/css/transform-lives.css
 * =====================================================
 */

.transform-lives-section {
  background-color: rgba(0, 56, 34, 0.85) !important; /* Softened dark green with 85% opacity */
  position: relative;
  padding: 50px 0;
  overflow: hidden;
  color: #ffffff;
}

/* Background Watermark Pattern Icon */
.transform-bg-watermark {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='%23ffffff'%3E%3Cpath d='M464 256c0-114.9-93.1-208-208-208S48 141.1 48 256s93.1 208 208 208 208-93.1 208-208zm-208 96c-17.7 0-32-14.3-32-32v-48h-48c-17.7 0-32-14.3-32-32s14.3-32 32-32h48v-48c0-17.7 14.3-32 32-32s32 14.3 32 32v48h48c17.7 0 32 14.3 32 32s-14.3 32-32 32h-48v48c0 17.7-14.3 32-32 32z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.08; /* Soft watermark blend */
  pointer-events: none;
  z-index: 1;
}

.transform-lives-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Flexbox Layout: Text Left, Buttons Right */
.transform-lives-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* Text Block Styling */
.transform-text-block {
  max-width: 580px;
}

.transform-title {
  font-size: 28px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 0 10px 0 !important;
  line-height: 1.2 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.transform-description {
  font-size: 14px !important;
  color: #ffffff !important;
  opacity: 0.95;
  margin: 0 !important;
  line-height: 1.5 !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Button Group Styling */
.transform-buttons-group {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Base Button Style */
.btn-transform {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.btn-transform i {
  font-size: 12px;
}

/* Button 1: Donate Now (Orange Fill) */
.btn-donate {
  background-color: #f7941d !important;
  color: #ffffff !important;
  border: 1px solid #f7941d !important;
}

.btn-donate:hover {
  background-color: #e08312 !important;
  border-color: #e08312 !important;
  transform: translateY(-2px);
}

/* Button 2: Partner With Us (Transparent Dark Green Border) */
.btn-partner {
  background-color: rgba(0, 56, 34, 0.4) !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}

.btn-partner:hover {
  background-color: #00843d !important;
  border-color: #00843d !important;
  transform: translateY(-2px);
}

/* Button 3: Volunteer (Transparent Dark Green Border) */
.btn-volunteer {
  background-color: rgba(0, 56, 34, 0.4) !important;
  color: #ffffff !important;
  border: 1px solid #ffffff !important;
}

.btn-volunteer:hover {
  background-color: #00843d !important;
  border-color: #00843d !important;
  transform: translateY(-2px);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 991px) {
  .transform-lives-content {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .transform-text-block {
    max-width: 100%;
  }

  .transform-buttons-group {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .transform-buttons-group {
    flex-direction: column;
    width: 100%;
  }

  .btn-transform {
    width: 100%;
    justify-content: center;
  }
}