/* Custom Hero Slider Styles */

/* Hero Slider Container */
.hero-slider-section {
  position: relative;
  width: 100%;
  min-height: 80vh;
  overflow: hidden;
}

@media (min-width: 1200px) {
  .hero-slider-section {
    min-height: 718px !important;
  }

  .hero-slider,
  .hero-slide {
    min-height: 718px !important;
  }
}

.hero-slider {
  width: 100%;
  height: 80vh;
}

/* Individual Slide */
.hero-slide {
  position: relative;
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* Dark Overlay for Better Text Readability */
.hero-slide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

/* Slide Content Container */
.hero-slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.hero-slide-inner {
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 1s ease-out;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 768px) {
  .hero-slide-inner {
    padding-top: 50px;
  }
}

/* Slide Typography */
.hero-slide-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  opacity: 0.95;
  animation: fadeInDown 0.8s ease-out;
}

.hero-slide-title {
  color: #fff;
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-slide-description {
  color: #f5f5f5;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.4s both;
}

/* Slide Buttons */
.hero-slide-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-btn {
  display: inline-block;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.hero-btn-primary {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
}

.hero-btn-primary:hover {
  background: var(--second-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(247, 153, 96, 0.4);
  color: #fff;
}

.hero-btn-secondary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.hero-btn-secondary:hover {
  background: #fff;
  color: var(--second-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Slider Navigation Arrows */
.hero-slider .slick-prev,
.hero-slider .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 65px;
  height: 65px;
  background: var(--second-color);
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0;
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.3),
    0 0 0 0 rgba(247, 153, 96, 0.4);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 8px 25px rgba(247, 153, 96, 0.3),
      0 0 0 0 rgba(247, 153, 96, 0.4);
  }

  50% {
    box-shadow: 0 8px 25px rgba(247, 153, 96, 0.4),
      0 0 0 10px rgba(247, 153, 96, 0);
  }

  100% {
    box-shadow: 0 8px 25px rgba(247, 153, 96, 0.3),
      0 0 0 0 rgba(247, 153, 96, 0);
  }
}

.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
  background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
  border-color: var(--second-color);
  transform: translateY(-50%) scale(1.15) rotate(5deg);
  box-shadow: 0 12px 35px rgba(247, 153, 96, 0.5),
    0 0 0 0 rgba(247, 153, 96, 0);
  animation: none;
}

.hero-slider .slick-prev:active,
.hero-slider .slick-next:active {
  transform: translateY(-50%) scale(1.05);
}

.hero-slider .slick-prev {
  left: 40px;
}

.hero-slider .slick-next {
  right: 40px;
}

.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
  font-family: 'remixicon';
  font-size: 28px;
  color: #fff;
  opacity: 1;
  font-weight: bold;
  transition: all 0.3s ease;
}

.hero-slider .slick-prev:hover::before,
.hero-slider .slick-next:hover::before {
  color: var(--second-color);
  transform: scale(1.1);
}

.hero-slider .slick-prev::before {
  content: '\ea64';
  /* ri-arrow-left-s-line */
}

.hero-slider .slick-next::before {
  content: '\ea6e';
  /* ri-arrow-right-s-line */
}

/* Slider Dots */
.hero-slider .slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex !important;
  gap: 15px;
  padding: 15px 25px;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-slider .slick-dots li {
  margin: 0;
  width: auto;
  height: auto;
}

.hero-slider .slick-dots li button {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-size: 0;
  opacity: 0.7;
  position: relative;
  overflow: hidden;
}

.hero-slider .slick-dots li button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background: var(--second-color);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.hero-slider .slick-dots li button:hover {
  opacity: 1;
  transform: scale(1.3);
  border-color: var(--second-color);
  background: rgba(247, 153, 96, 0.2);
}

.hero-slider .slick-dots li button:hover::before {
  width: 8px;
  height: 8px;
}

.hero-slider .slick-dots li.slick-active button {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  border-color: var(--second-color);
  opacity: 1;
  width: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(247, 153, 96, 0.4),
    inset 0 1px 3px rgba(255, 255, 255, 0.3);
}

.hero-slider .slick-dots li.slick-active button::before {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
  border-radius: 12px;
}

/* Stats Counter */
.hero-stats {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 60px;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 50px;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-number {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-slide-title {
    font-size: 52px;
  }

  .hero-stats {
    gap: 40px;
    padding: 25px 40px;
  }
}

@media (max-width: 992px) {
  .hero-slide-title {
    font-size: 44px;
  }

  .hero-slide-description {
    font-size: 18px;
  }

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    width: 55px;
    height: 55px;
  }

  .hero-slider .slick-prev::before,
  .hero-slider .slick-next::before {
    font-size: 24px;
  }

  .hero-slider .slick-prev {
    left: 20px;
  }

  .hero-slider .slick-next {
    right: 20px;
  }

  .hero-slider .slick-dots {
    bottom: 35px;
    padding: 12px 20px;
    gap: 12px;
  }

  .hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
  }

  .hero-slider .slick-dots li.slick-active button {
    width: 40px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px 30px;
    bottom: 100px;
  }
}

@media (max-width: 768px) {

  .hero-slider-section,
  .hero-slider,
  .hero-slide {
    min-height: 80vh;
    height: auto;
  }

  .hero-slide-title {
    font-size: 36px;
  }

  .hero-slide-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
  }

  .hero-slide-description {
    font-size: 16px;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 14px;
  }

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    width: 50px;
    height: 50px;
  }

  .hero-slider .slick-prev::before,
  .hero-slider .slick-next::before {
    font-size: 20px;
  }

  .hero-slider .slick-dots {
    bottom: 25px;
    padding: 10px 18px;
    gap: 10px;
  }

  .hero-slider .slick-dots li button {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .hero-slider .slick-dots li.slick-active button {
    width: 35px;
  }

  .hero-stats {
    position: relative;
    bottom: 0;
    margin-top: 40px;
    transform: none;
    left: 0;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .hero-stat-label {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-slide-title {
    font-size: 28px;
  }

  .hero-slide-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
  }

  .hero-slider .slick-prev,
  .hero-slider .slick-next {
    width: 45px;
    height: 45px;
  }

  .hero-slider .slick-prev::before,
  .hero-slider .slick-next::before {
    font-size: 18px;
  }

  .hero-slider .slick-prev {
    left: 15px;
  }

  .hero-slider .slick-next {
    right: 15px;
  }

  .hero-slider .slick-dots {
    bottom: 20px;
    padding: 8px 15px;
    gap: 8px;
  }

  .hero-slider .slick-dots li button {
    width: 8px;
    height: 8px;
  }

  .hero-slider .slick-dots li.slick-active button {
    width: 30px;
  }
}

/* ========================================
   Donation Payment Page Styles
======================================== */

/* Donation Form Card */
.donation-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.3s ease;
  border: 1px solid rgba(247, 153, 96, 0.1);
}

.donation-form-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12) !important;
  transform: translateY(-2px);
}

.donation-form-title {
  color: #2c3e50;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.donation-form-title i {
  color: var(--second-color);
  font-size: 32px;
  animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  10%,
  30% {
    transform: scale(1.1);
  }

  20%,
  40% {
    transform: scale(1);
  }
}

/* Amount Selection */
.amount-selection-wrapper {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 25px;
  border-radius: 15px;
  border: 2px dashed #e0e0e0;
  transition: all 0.3s ease;
}

.amount-selection-wrapper:hover {
  border-color: var(--second-color);
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
}

.amount-label {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  display: flex;
  align-items: center;
}

.amount-label i {
  color: var(--second-color);
  font-size: 20px;
}

/* Amount Buttons */
.selectPricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.selectPricing .listItem {
  position: relative;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 18px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  color: #495057;
  overflow: hidden;
}

.selectPricing .listItem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}

.selectPricing .listItem .amount-value,
.selectPricing .listItem i {
  position: relative;
  z-index: 1;
}

.selectPricing .listItem:hover {
  border-color: var(--second-color);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(247, 153, 96, 0.3);
}

.selectPricing .listItem:hover::before {
  opacity: 0.1;
}

.selectPricing .listItem.active {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  border-color: var(--second-color);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.4);
}

.selectPricing .listItem.active::before {
  opacity: 0;
}

/* Popular Badge */
.popular-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: #fff;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

/* Custom Amount Button */
.selectPricing .custom-amount-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border-color: #667eea;
}

.selectPricing .custom-amount-btn::before {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  opacity: 0;
}

.selectPricing .custom-amount-btn:hover {
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.selectPricing .custom-amount-btn.active {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  border-color: #764ba2;
}

/* Custom Amount Box */
.custom-amount-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid #667eea;
  animation: slideDown 0.4s ease-out;
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.15);
}

.custom-amount-wrapper .contact-label {
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
  color: #2c3e50;
  font-size: 15px;
}

.custom-amount-wrapper .input-group {
  display: flex;
  gap: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.custom-amount-wrapper .input-group-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  color: #fff;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 18px;
}

.custom-amount-wrapper .form-control {
  border: 2px solid #e0e0e0;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}

.custom-amount-wrapper .form-control:focus {
  border-color: #667eea;
  box-shadow: none;
  outline: none;
}

.custom-amount-wrapper .btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  padding: 14px 25px;
  white-space: nowrap;
  border: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.custom-amount-wrapper .btn:hover {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  transform: scale(1.02);
}

/* Section Subtitles */
.section-subtitle {
  color: #2c3e50;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 2px solid #f0f0f0;
}

.section-subtitle i {
  color: var(--second-color);
  font-size: 24px;
  margin-right: 10px;
}

/* Donor Details Section */
.donor-details-section {
  margin-top: 30px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 15px;
}

.donor-details-section .custom-input {
  background: #fff;
  border: 2px solid #e0e0e0;
  padding: 14px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.donor-details-section .custom-input:focus {
  border-color: var(--second-color);
  box-shadow: 0 0 0 4px rgba(247, 153, 96, 0.1);
  outline: none;
}

.donor-details-section .custom-textarea {
  background: #fff;
  border: 2px solid #e0e0e0;
  padding: 14px 18px;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
  min-height: 100px;
  resize: vertical;
}

.donor-details-section .custom-textarea:focus {
  border-color: var(--second-color);
  box-shadow: 0 0 0 4px rgba(247, 153, 96, 0.1);
  outline: none;
}

/* Payment Method Section */
.payment-method-section {
  margin-top: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
  border-radius: 15px;
  border: 1px solid #e0e0e0;
}

.payment-method-option {
  margin-bottom: 15px;
}

.payment-method-option .form-check-input {
  display: none;
}

.payment-method-label {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #fff;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.payment-method-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.payment-method-label:hover {
  border-color: var(--second-color);
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.15);
  transform: translateX(5px);
}

.payment-method-label:hover::before {
  transform: scaleY(1);
}

.payment-method-option .form-check-input:checked+.payment-method-label {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  border-color: var(--second-color);
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.2);
}

.payment-method-option .form-check-input:checked+.payment-method-label::before {
  transform: scaleY(1);
}

.payment-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  border-radius: 12px;
  flex-shrink: 0;
}

.payment-icon i {
  font-size: 24px;
  color: #fff;
}

.payment-method-option .form-check-input:checked+.payment-method-label .payment-icon {
  animation: bounceIn 0.5s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
  }

  50% {
    transform: scale(1.1);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.payment-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.payment-name {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
}

.payment-desc {
  font-size: 13px;
  color: #6c757d;
}

.payment-check {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.payment-check i {
  font-size: 18px;
  color: transparent;
  transition: color 0.3s ease;
}

.payment-method-option .form-check-input:checked+.payment-method-label .payment-check {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  border-color: var(--second-color);
}

.payment-method-option .form-check-input:checked+.payment-method-label .payment-check i {
  color: #fff;
}

.payment-logo {
  height: 25px;
  margin-left: auto;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.payment-method-option .form-check-input:checked+.payment-method-label .payment-logo {
  opacity: 1;
}

/* Custom Checkbox */
.custom-checkbox .checkmark-style {
  border: 2px solid var(--second-color);
  background: #fff;
  transition: all 0.3s ease;
}

.custom-checkbox .checkbox-style:checked~.checkmark-style {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  border-color: var(--second-color);
}

.custom-checkbox .checkbox-style:checked~.checkmark-style::after {
  border-color: #fff;
}

.terms-link {
  color: var(--second-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.terms-link:hover {
  color: var(--second-color);
  border-bottom-color: var(--second-color);
}

/* Donate Submit Button */
.donate-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  position: relative;
}

.donate-submit-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.donate-submit-btn:hover::before {
  width: 400px;
  height: 400px;
}

.donate-submit-btn:hover {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(247, 153, 96, 0.5);
}

.donate-submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(247, 153, 96, 0.4);
}

.donate-submit-btn i {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.donate-submit-btn:hover i:first-child {
  animation: heartbeat 1s infinite;
}

.donate-submit-btn:hover i:last-child {
  transform: translateX(5px);
}

/* Donation Summary Sidebar */
.donation-summary-wrapper {
  position: sticky;
  top: 100px;
}

.sticky-sidebar {
  transition: all 0.3s ease;
}

/* Campaign Card */
.campaign-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(247, 153, 96, 0.1);
}

.campaign-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.campaign-image {
  overflow: hidden;
  height: 250px;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.campaign-card:hover .campaign-image img {
  transform: scale(1.1);
}

.campaign-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
}

.campaign-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(247, 153, 96, 0.4);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.campaign-badge i {
  margin-right: 5px;
  animation: pulse 2s infinite;
}

.campaign-info {
  background: #fff;
}

.campaign-title {
  font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.4;
}

/* Campaign Progress */
.campaign-progress {
  margin-top: 15px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 10px;
  background: #e9ecef;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--second-color) 0%, var(--second-color) 100%);
  border-radius: 20px;
  transition: width 1s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.progress-stats small {
  font-size: 12px;
  font-weight: 600;
  color: #495057;
}

/* Donation Summary Card */
.donation-summary-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
  border: 1px solid rgba(247, 153, 96, 0.1);
}

.summary-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px dashed #e0e0e0;
}

.summary-icon {
  font-size: 48px;
  color: var(--second-color);
  display: block;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.summary-header .title {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.summary-header .subtitle {
  color: #6c757d;
  font-size: 14px;
  margin: 0;
}

/* Price Listing */
.priceListing {
  margin: 20px 0;
}

.priceListing .listing {
  list-style: none;
  padding: 0;
  margin: 0;
}

.priceListing .listItem {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

.priceListing .listItem:last-child {
  border-bottom: none;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price-row .leftCap {
  font-size: 15px;
  color: #495057;
  display: flex;
  align-items: center;
  margin: 0;
}

.price-row .leftCap i {
  color: var(--second-color);
  font-size: 20px;
}

.price-row .rightCap {
  font-size: 18px;
  color: #2c3e50;
  margin: 0;
}

.total-row {
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  padding: 15px;
  border-radius: 12px;
  margin-top: 10px;
  border: 2px solid var(--second-color);
}

.total-row .price-row .leftCap,
.total-row .price-row .rightCap {
  font-size: 20px;
  color: var(--second-color);
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid #4caf50;
}

.security-badge i {
  color: #4caf50;
  font-size: 22px;
}

.security-badge span {
  font-size: 13px;
  font-weight: 600;
  color: #2e7d32;
}

/* Trust Badges */
.trust-badges {
  margin-top: 20px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.trust-badges p {
  color: #6c757d;
  font-weight: 600;
}

.trust-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.trust-icons i {
  font-size: 28px;
  color: var(--second-color);
  transition: all 0.3s ease;
}

.trust-icons i:hover {
  transform: scale(1.2) rotate(10deg);
  color: var(--second-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .donation-summary-wrapper {
    position: static;
  }
}

@media (max-width: 992px) {
  .donation-form-card {
    padding: 30px !important;
  }

  .donation-form-title {
    font-size: 24px;
  }

  .selectPricing {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .donation-form-card {
    padding: 25px !important;
  }

  .donation-form-title {
    font-size: 22px;
  }

  .selectPricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .amount-selection-wrapper,
  .donor-details-section,
  .payment-method-section {
    padding: 20px;
  }

  .payment-method-label {
    padding: 15px;
  }

  .payment-icon {
    width: 40px;
    height: 40px;
  }

  .payment-icon i {
    font-size: 20px;
  }

  .donate-submit-btn {
    font-size: 16px;
    padding: 16px 30px;
  }

  .campaign-image {
    height: 200px;
  }

  .donation-summary-card {
    padding: 25px;
  }
}

@media (max-width: 576px) {
  .donation-form-card {
    padding: 20px !important;
  }

  .selectPricing {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .custom-amount-wrapper .input-group {
    flex-direction: column;
  }

  .custom-amount-wrapper .input-group-text,
  .custom-amount-wrapper .form-control,
  .custom-amount-wrapper .btn {
    border-radius: 8px !important;
  }

  .payment-method-label {
    flex-wrap: wrap;
  }

  .payment-logo {
    width: 100%;
    margin-top: 10px;
  }
}

/* Campaign detail page */
.campaign-hero-wrapper {
  padding-top: 70px;
}

.campaign-hero-card {
  border-radius: 28px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.campaign-hero-card .btn {
  border-radius: 12px;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.7);
}

.campaign-hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.15);
}

.campaign-hero-media img {
  display: block;
  height: 100%;
  object-fit: cover;
}

.campaign-status-pill {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  background: rgba(255, 255, 255, 0.9);
}

.campaign-status-pill.status-featured {
  top: auto;
  left: 18px;
  bottom: 18px;
  background: linear-gradient(120deg, #f59e0b, #f97316);
  color: #fff;
}

.campaign-status-pill.status-completed {
  background: #fef3c7;
  color: #92400e;
}

.campaign-status-pill.status-draft {
  background: #e2e8f0;
  color: #475569;
}

.campaign-gallery-thumbs {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.campaign-gallery-thumbs .thumb,
.campaign-gallery-thumbs .thumb-more {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.campaign-gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-hero-content .campaign-eyebrow {
  letter-spacing: 0.3em;
  font-size: 13px;
  color: #94a3b8;
}

.campaign-hero-content .campaign-title {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;
}

.campaign-hero-content .campaign-summary {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

.campaign-progress-wrapper {
  margin: 24px 0;
}

.progress-soft {
  background: #e2e8f0;
  border-radius: 999px;
  height: 12px;
}

.progress-soft .progress-bar {
  background: linear-gradient(90deg, #22c55e, #16a34a);
  border-radius: inherit;
}

.campaign-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.metric-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.07);
}

.metric-card .label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: #94a3b8;
  margin-bottom: 6px;
}

.metric-card .value {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
}

.metric-card .descriptor {
  font-size: 13px;
  color: #94a3b8;
}

.campaign-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-ghost {
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: transparent;
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-ghost:hover {
  background: rgba(148, 163, 184, 0.12);
}

.campaign-details-section .card-style {
  border-radius: 22px;
  padding: 32px;
}

.card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.card-head .label {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: #94a3b8;
  margin-bottom: 8px;
}

.card-head .card-title {
  font-size: 28px;
  margin: 0;
  color: #0f172a;
}

.badge-soft {
  padding: 10px 16px;
  border-radius: 12px;
  background: #f1f5f9;
  color: #475569;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.campaign-richtext p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.campaign-highlight-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 12px;
}

.campaign-highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: #f8fafc;
  color: #0f172a;
}

.campaign-highlight-list i {
  color: #2563eb;
  font-size: 20px;
}

.campaign-facts-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.campaign-facts-grid .label {
  font-size: 12px;
  color: #94a3b8;
  letter-spacing: 0.2em;
}

.campaign-facts-grid .value {
  font-size: 20px;
  color: #0f172a;
  margin: 0;
}

.campaign-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.campaign-gallery-grid .gallery-item {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

.campaign-gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.campaign-gallery-grid img:hover {
  transform: scale(1.05);
}

.recent-donors .donor-card-modern {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 12px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.05);
}

.donor-card-modern .donor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c084fc, #8b5cf6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.donor-card-modern .donor-name {
  margin: 0;
  font-size: 16px;
  color: #0f172a;
}

.donor-card-modern .donor-amount {
  color: #22c55e;
  font-weight: 700;
}

.donor-card-modern .donor-date {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 13px;
}

.campaign-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sticky-sidebar {
  position: sticky;
  top: 110px;
}

.campaign-meta .meta-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.campaign-meta .meta-list li {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: #0f172a;
}

.campaign-meta .meta-list span {
  color: #94a3b8;
  font-size: 14px;
}

.meta-actions .btn {
  border-radius: 12px;
}

.related-campaigns .related-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.related-campaigns .related-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.related-thumb {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f1f5f9;
}

.related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-title {
  font-weight: 600;
  color: #0f172a;
  display: block;
  margin-bottom: 6px;
}

.related-progress small {
  color: #94a3b8;
  font-size: 13px;
}

.quick-amount-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quick-amount-grid .btn {
  border-radius: 12px;
}

.pagination-modern nav {
  display: flex;
  justify-content: center;
}

@media (max-width: 991px) {
  .campaign-hero-wrapper {
    padding-top: 40px;
  }

  .campaign-hero-card {
    padding: 28px;
  }

  .campaign-hero-content .campaign-title {
    font-size: 30px;
  }

  .campaign-metrics-grid,
  .campaign-facts-grid {
    grid-template-columns: 1fr;
  }

  .campaign-details-section .card-style {
    padding: 24px;
  }

  .campaign-sidebar {
    position: static;
  }

  .sticky-sidebar {
    top: unset;
  }
}

@media (max-width: 576px) {
  .campaign-hero-card {
    padding: 20px;
  }

  .campaign-cta-group {
    flex-direction: column;
  }

  .related-campaigns .related-item {
    flex-direction: column;
  }

  .related-thumb {
    width: 100%;
    height: 180px;
  }

  .campaign-gallery-grid img {
    height: 180px;
  }
}

/* ========================================
   Modern Payment Methods Design
======================================== */

/* Payment Methods Container */
.payment-methods-modern {
  display: grid;
  gap: 16px;
}

/* Individual Payment Method Card */
.payment-method-card {
  position: relative;
}

.payment-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-label {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.payment-label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--second-color) 0%, var(--second-color) 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
  border-radius: 16px 0 0 16px;
}

.payment-label:hover {
  border-color: var(--second-color);
  box-shadow: 0 8px 24px rgba(247, 153, 96, 0.15);
  transform: translateY(-2px);
}

.payment-label:hover::before {
  transform: scaleY(0.3);
}

/* Active State */
.payment-radio:checked+.payment-label {
  background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
  border-color: var(--second-color);
  box-shadow: 0 8px 32px rgba(247, 153, 96, 0.25);
  transform: translateY(-2px);
}

.payment-radio:checked+.payment-label::before {
  transform: scaleY(1);
}

/* Payment Icon */
.payment-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 14px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.payment-icon i {
  font-size: 26px;
  color: #6b7280;
  transition: all 0.3s ease;
}

/* Stripe Icon Styling */
.stripe-icon {
  background: linear-gradient(135deg, #635bff 0%, #4f46e5 100%);
}

.stripe-icon i {
  color: #ffffff;
}

/* Bank Icon Styling */
.bank-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.bank-icon i {
  color: #ffffff;
}

/* PayPal Icon Styling */
.paypal-icon {
  background: linear-gradient(135deg, #003087 0%, #009cde 100%);
}

.paypal-icon i {
  color: #ffffff;
}

/* Active Icon Animation */
.payment-radio:checked+.payment-label .payment-icon {
  animation: iconBounce 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes iconBounce {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.2);
  }

  50% {
    transform: scale(0.95);
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Payment Details */
.payment-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.payment-title {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  display: block;
  transition: color 0.3s ease;
}

.payment-description {
  font-size: 13px;
  color: #6b7280;
  display: block;
}

.payment-radio:checked+.payment-label .payment-title {
  color: var(--second-color);
}

/* Payment Badges (Card Logos) */
.payment-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.card-logo {
  height: 24px;
  width: auto;
  opacity: 0.6;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.payment-radio:checked+.payment-label .card-logo {
  opacity: 1;
  filter: grayscale(0%);
  animation: cardLogoShow 0.5s ease;
}

@keyframes cardLogoShow {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Payment Check Circle */
.payment-check {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
  background: #ffffff;
}

.payment-check i {
  font-size: 16px;
  color: transparent;
  transition: all 0.3s ease;
  transform: scale(0);
}

.payment-label:hover .payment-check {
  border-color: var(--second-color);
  background: #fff8f3;
}

.payment-radio:checked+.payment-label .payment-check {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--second-color) 100%);
  border-color: var(--second-color);
  box-shadow: 0 4px 12px rgba(247, 153, 96, 0.4);
}

.payment-radio:checked+.payment-label .payment-check i {
  color: #ffffff;
  transform: scale(1);
  animation: checkShow 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkShow {
  0% {
    transform: scale(0) rotate(-180deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

/* Secure Badge */
.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #10b981;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #065f46;
  margin-top: 4px;
}

.secure-badge i {
  font-size: 14px;
  color: #10b981;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .payment-label {
    padding: 16px 18px;
    gap: 12px;
  }

  .payment-icon {
    width: 48px;
    height: 48px;
  }

  .payment-icon i {
    font-size: 22px;
  }

  .payment-title {
    font-size: 15px;
  }

  .payment-description {
    font-size: 12px;
  }

  .payment-badges {
    display: none;
  }

  .payment-check {
    width: 24px;
    height: 24px;
  }

  .payment-check i {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .payment-methods-modern {
    gap: 12px;
  }

  .payment-label {
    padding: 14px 16px;
    gap: 10px;
  }

  .payment-icon {
    width: 44px;
    height: 44px;
  }

  .payment-icon i {
    font-size: 20px;
  }

  .payment-title {
    font-size: 14px;
  }

  .payment-description {
    font-size: 11px;
  }
}

/* ========================================
   Form Validation Styles
======================================== */

/* Invalid Input Fields */
.custom-input.is-invalid,
select.is-invalid,
input.is-invalid {
  border-color: #ef4444 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.custom-input.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15) !important;
}

/* Valid Input Fields (Optional - for success state) */
.custom-input.is-valid,
select.is-valid,
input.is-valid {
  border-color: #10b981 !important;
  background-color: #f0fdf4 !important;
}

/* Error Message Styling */
.error-message {
  color: #ef4444;
  font-size: 13px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  animation: errorSlideIn 0.3s ease-out;
}

.error-message i {
  font-size: 16px;
  flex-shrink: 0;
}

@keyframes errorSlideIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Checkbox Validation */
.form-check.is-invalid {
  border: 1px solid #ef4444;
  padding: 10px;
  border-radius: 8px;
  background: #fef2f2;
}

/* Select Validation Arrow Fix */
select.is-invalid {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ef4444' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

/* Success state animation */
@keyframes successPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
}


.campaign-content {
  font-size: 16px;
  color: #4b5563;
}

.campaign-content h1,
.campaign-content h2,
.campaign-content h3,
.campaign-content h4,
.campaign-content h5,
.campaign-content h6 {
  color: #1a1a2e;
  margin-top: 1.5em;
  margin-bottom: 0.75em;
  font-weight: 600;
}

.campaign-content h2 {
  font-size: 22px;
}

.campaign-content h3 {
  font-size: 18px;
}

.campaign-content p {
  margin-bottom: 1em;
  color: #4b5563;
}

.campaign-content ul,
.campaign-content ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

.campaign-content li {
  margin-bottom: 0.5em;
}

.campaign-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1em 0;
}

.campaign-content blockquote {
  border-left: 4px solid var(--main-color, #056c7d);
  padding-left: 1em;
  margin: 1.5em 0;
  font-style: italic;
  color: #6b7280;
}

.campaign-content a {
  color: var(--main-color, #056c7d);
  text-decoration: underline;
}

.campaign-content a:hover {
  opacity: 0.8;
}

@media (min-width: 768px) {
  .header-right {
    display: flex !important;
  }
}

/* ============================================ */
/* DESKTOP NAVBAR STYLES */
/* ============================================ */

/* Desktop Navbar Layout - Logo on one side, Menu on other */
.desktop-navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* Desktop Donate Button */
.desktop-donate-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--main-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(247, 153, 96, 0.35);
  border: 2px solid transparent;
}

.desktop-donate-btn i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.desktop-donate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.45);
  background: var(--second-color);
  color: #fff;
}

.desktop-donate-btn:hover i {
  transform: scale(1.15);
}

/* Enhanced Menu Links */
.header-area-three .main-header .main-menu .listing .single-list .single {
  position: relative;
  padding: 20px 0;
}

.header-area-three .main-header .main-menu .listing .single-list .single::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--main-color), var(--second-color));
  transition: width 0.3s ease;
}

.header-area-three .main-header .main-menu .listing .single-list .single:hover::after {
  width: 100%;
}

/* ============================================ */
/* PREMIUM MOBILE NAVBAR STYLES */
/* ============================================ */

@media (max-width: 991px) {

  /* Logo Visibility on Mobile */
  .logo-large {
    display: none !important;
  }

  .logo-mobile {
    display: block !important;
  }

  .logo-mobile img {
    max-height: 40px;
    width: auto;
  }

  /* Mobile Header Enhancements */
  .header-bottom.header-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
  }

  /* Ensure body has padding for fixed header */
  body {
    padding-top: 80px;
  }

  /* Hamburger Toggle Button */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--second-color);
    border: none;
    border-radius: 12px;
    padding: 0;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(247, 153, 96, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2001;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(247, 153, 96, 0.4);
  }

  .mobile-menu-toggle:active {
    transform: scale(0.95);
  }

  .mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2.5px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Hamburger Animation to X */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1999;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Mobile Menu Panel */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2000;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.active {
    right: 0;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%);
    box-shadow: 0 4px 20px rgba(247, 153, 96, 0.2);
  }

  .mobile-menu-logo img {
    max-height: 45px;
  }

  .mobile-menu-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-menu-close:active {
    transform: scale(0.9);
    background: rgba(255, 255, 255, 0.3);
  }

  /* Mobile Menu List */
  .mobile-menu-list {
    list-style: none;
    padding: 24px 20px;
    margin: 0;
  }

  .mobile-menu-item {
    margin-bottom: 8px;
    animation: slideInRight 0.4s ease-out backwards;
  }

  .mobile-menu-item:nth-child(1) {
    animation-delay: 0.1s;
  }

  .mobile-menu-item:nth-child(2) {
    animation-delay: 0.15s;
  }

  .mobile-menu-item:nth-child(3) {
    animation-delay: 0.2s;
  }

  .mobile-menu-item:nth-child(4) {
    animation-delay: 0.25s;
  }

  .mobile-menu-item:nth-child(5) {
    animation-delay: 0.3s;
  }

  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(30px);
    }

    to {
      opacity: 1;
      transform: translateX(0);
    }
  }

  .mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    font-size: 17px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .mobile-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(247, 153, 96, 0.1), transparent);
    transition: left 0.5s ease;
  }

  .mobile-menu-link:hover::before,
  .mobile-menu-link:active::before {
    left: 100%;
  }

  .mobile-menu-link i {
    font-size: 22px;
    color: var(--second-color);
    transition: all 0.3s ease;
  }

  .mobile-menu-link:hover,
  .mobile-menu-link:active {
    background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%);
    color: white;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(247, 153, 96, 0.3);
    border-color: transparent;
  }

  .mobile-menu-link:hover i,
  .mobile-menu-link:active i {
    color: white;
    transform: scale(1.1);
  }

  /* Mobile Menu Footer */
  .mobile-menu-footer {
    padding: 20px 24px 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: auto;
  }

  .mobile-donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--main-color);
    color: white;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(247, 153, 96, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
  }

  .mobile-donate-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .mobile-donate-btn:hover::before,
  .mobile-donate-btn:active::before {
    left: 100%;
  }

  .mobile-donate-btn:active {
    transform: scale(0.97);
    box-shadow: 0 6px 20px rgba(247, 153, 96, 0.4);
  }

  .mobile-donate-btn i {
    font-size: 20px;
  }

  /* Mobile Menu Social */
  .mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .mobile-menu-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
    border: 2px solid rgba(247, 153, 96, 0.2);
    border-radius: 12px;
    color: var(--second-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .mobile-menu-social a:active {
    background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%);
    color: white;
    border-color: transparent;
    transform: scale(0.9);
    box-shadow: 0 4px 15px rgba(247, 153, 96, 0.3);
  }

  /* Prevent body scroll when menu is open */
  body.mobile-menu-open {
    overflow: hidden;
  }
}

/* iPhone SE and smaller screens */
@media (max-width: 375px) {
  .mobile-menu {
    width: 90%;
  }

  .mobile-menu-link {
    font-size: 16px;
    padding: 14px 18px;
  }
}

/* ============================================ */
/* DONATION DETAILS PAGE STYLES */
/* ============================================ */

/* Fotorama Gallery Custom Styles */
.campaign-gallery-section {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

.fotorama__nav-wrap {
  margin-top: 15px;
}

.fotorama__thumb {
  border: 3px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fotorama__thumb:hover {
  border-color: var(--second-color);
  transform: scale(1.05);
}

.fotorama__active .fotorama__thumb {
  border-color: var(--second-color);
}

@media (max-width: 768px) {
  .campaign-gallery-section {
    padding: 20px !important;
    border-radius: 20px;
  }

  .campaign-gallery-section h4 {
    font-size: 18px !important;
  }

  .fotorama__arr {
    width: 40px;
    height: 40px;
  }
}

/* Stripe Card Section Styles */
.stripe-card-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
  border: 2px solid #e3e8ff;
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
  animation: slideDown 0.4s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sticky Mobile Donate Button */
.sticky-donate-btn {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.sticky-donate-btn:hover {
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 12px 35px rgba(247, 153, 96, 0.5);
}

.sticky-donate-btn i {
  margin-right: 8px;
  font-size: 18px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 8px 25px rgba(247, 153, 96, 0.4);
  }

  50% {
    box-shadow: 0 8px 35px rgba(247, 153, 96, 0.6);
  }

  100% {
    box-shadow: 0 8px 25px rgba(247, 153, 96, 0.4);
  }
}

.sticky-donate-btn.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(100px);
}

@media (max-width: 768px) {
  .sticky-donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.stripe-header {
  border-bottom: 2px solid #e3e8ff;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.stripe-header h4 {
  color: #4f46e5;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.stripe-header h4 i {
  font-size: 22px;
}

.stripe-header .text-muted {
  color: #10b981 !important;
  font-weight: 500;
}

.stripe-card-box {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.stripe-form-group {
  margin-bottom: 20px;
}

.stripe-label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stripe-label i {
  color: #6366f1;
  font-size: 16px;
}

.stripe-element {
  min-height: 44px;
  padding: 12px 16px !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  transition: all 0.3s ease;
  font-size: 15px;
}

.stripe-element:hover {
  border-color: #c7d2fe !important;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.05);
}

.stripe-element:focus,
.stripe-element.StripeElement--focus {
  border-color: #6366f1 !important;
  box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
  outline: none;
}

.stripe-element.StripeElement--invalid {
  border-color: #ef4444 !important;
}

.stripe-element.StripeElement--complete {
  border-color: #10b981 !important;
  background: #f0fdf4 !important;
}

.stripe-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 14px;
  animation: shake 0.5s;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-10px);
  }

  75% {
    transform: translateX(10px);
  }
}

.stripe-error i {
  font-size: 18px;
  color: #dc2626;
}

.stripe-badges {
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.stripe-badges .badge {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
}

.stripe-badges .badge i {
  font-size: 16px;
  margin-right: 4px;
}

/* Loading State */
.stripe-element.loading {
  opacity: 0.6;
  pointer-events: none;
}

.stripe-element.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 12px;
  width: 16px;
  height: 16px;
  border: 2px solid #6366f1;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================ */
/* CREATIVE MOBILE DESIGN ENHANCEMENTS */
/* ============================================ */
@media (max-width: 768px) {

  /* Stripe Section Mobile */
  .stripe-card-section {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
    border: none;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.12);
  }

  .stripe-header h4 {
    font-size: 17px;
  }

  .stripe-card-box {
    padding: 18px;
    border-radius: 16px;
  }

  .stripe-badges .badge {
    font-size: 11px;
    padding: 8px 12px;
    border-radius: 20px;
  }

  /* Glassmorphism Campaign Card */
  .donate-details {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .donate-info {
    padding: 24px 20px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  }

  .donate-info-title .title {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Premium Progress Bar */
  .donate-progress-bar {
    height: 12px;
    border-radius: 20px;
    background: #e8ecf4;
    overflow: hidden;
    position: relative;
  }

  .donate-progress-bar .progress-fill,
  .donate-progress-bar .progress-bar {
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(90deg, var(--second-color), #e8844a, #ff7f50);
    background-size: 200% 100%;
    animation: shimmerProgress 2s ease-in-out infinite;
    position: relative;
  }

  .donate-progress-bar .progress-fill::after,
  .donate-progress-bar .progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressShine 2s ease-in-out infinite;
  }

  @keyframes shimmerProgress {
    0% {
      background-position: 0% 50%;
    }

    50% {
      background-position: 100% 50%;
    }

    100% {
      background-position: 0% 50%;
    }
  }

  @keyframes progressShine {
    0% {
      transform: translateX(-100%);
    }

    100% {
      transform: translateX(100%);
    }
  }

  /* Floating Stats Badges */
  .fund-raised,
  .donate-goal {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.1);
  }

  .fund-raised .amount,
  .donate-goal .amount {
    font-size: 24px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Modern Payment Method Cards */
  .payment-method-card {
    border-radius: 16px !important;
    border: 2px solid #e5e7eb !important;
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%) !important;
    padding: 16px !important;
    margin-bottom: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }

  .payment-method-card:hover,
  .payment-method-card:focus-within {
    border-color: #c7d2fe !important;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.12);
    transform: translateY(-2px);
  }

  .payment-method-card:has(.payment-radio:checked) {
    border-color: var(--second-color) !important;
    background: linear-gradient(145deg, #fff8f5 0%, #ffffff 100%) !important;
    box-shadow: 0 8px 30px rgba(247, 153, 96, 0.2);
  }

  .payment-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }

  .payment-icon.stripe-icon {
    background: linear-gradient(135deg, #635bff 0%, #7c3aed 100%);
    color: white;
  }

  .payment-icon.bank-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
  }

  /* Pill-Shaped Amount Buttons */
  .all-amount {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .amount-btn {
    flex: 1 1 calc(33.333% - 10px);
    min-width: 90px;
    padding: 14px 8px !important;
    border-radius: 50px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%) !important;
    border: 2px solid #e3e8ff !important;
    color: #4b5563 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(247, 153, 96, 0.2);
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: auto !important;
  }

  .amount-btn:hover,
  .amount-btn:active {
    border-color: #c7d2fe !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.1);
  }

  .amount-btn.active {
    background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%) !important;
    border-color: transparent !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(247, 153, 96, 0.35) !important;
  }

  /* Ensure Other button is fully clickable */
  #otherBtn {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
  }

  /* Custom Amount Box */
  #customAmountBox {
    margin-top: 16px;
    animation: slideDown 0.3s ease-out;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
    height: auto !important;
    overflow: visible !important;
  }

  #customAmountBox.show {
    display: block !important;
  }

  #customAmountInput {
    text-align: center;
    font-size: 18px !important;
    font-weight: 600;
    color: var(--second-color);
    width: 100%;
    display: block !important;
  }

  /* Premium Form Inputs */
  .custom-input,
  .form-control {
    border-radius: 14px !important;
    padding: 16px 8px !important;
    font-size: 16px !important;
    border: 2px solid #e5e7eb !important;
    background: #ffffff !important;
    transition: all 0.3s ease !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .custom-input:focus,
  .form-control:focus {
    border-color: var(--second-color) !important;
    box-shadow: 0 0 0 4px rgba(247, 153, 96, 0.15) !important;
    outline: none !important;
  }

  /* Premium Submit Button */
  .submit-btn {
    border-radius: 50px !important;
    padding: 18px 32px !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 10px 30px rgba(247, 153, 96, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
  }

  .submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }

  .submit-btn:hover::before {
    left: 100%;
  }

  .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 153, 96, 0.45);
  }

  .submit-btn:active {
    transform: translateY(-1px);
  }

  .submit-btn.outline {
    background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%) !important;
    border: 2px solid #e3e8ff !important;
    color: #4b5563 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  }

  /* Enhanced Section Headers */
  .payment-section .title,
  .amount .title,
  .donors-section .title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    position: relative;
    display: inline-block;
  }

  .payment-section .title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--second-color), #e8844a);
    border-radius: 2px;
  }

  /* Donor Cards Mobile */
  .donor-card {
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
  }

  .donor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  /* Related Campaigns Mobile */
  .related-post-section {
    background: linear-gradient(145deg, #ffffff 0%, #fafbff 100%);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  }

  .single-post {
    border-radius: 14px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  }

  /* Contact Form Mobile */
  .contact-us-section {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 24px;
    margin-top: 20px;
  }

  .contact-us-section h5 {
    color: white;
    font-weight: 600;
  }

  .contact-us-section .submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--second-color) 0%, #e8844a 100%) !important;
  }

  /* Mobile Spacing Improvements */
  .row.gy-24 {
    --bs-gutter-y: 1rem;
  }

  .payment-section {
    padding: 20px !important;
    border-radius: 20px;
    background: white;
  }

  /* Touch-Friendly Checkboxes */
  .custom-checkbox {
    min-height: 48px;
    display: flex;
    align-items: center;
  }

  .custom-checkbox input[type="checkbox"] {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }

  /* Smooth Page Transitions */
  .donate-details,
  .right-element>* {
    animation: fadeInUp 0.5s ease-out;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Success Modal Mobile */
  .donation-success-modal .modal-content {
    margin: 20px;
    padding: 30px 24px;
    border-radius: 24px;
  }

  .donation-success-modal .modal-icon i {
    font-size: 60px;
  }

  .donation-success-modal .modal-content h3 {
    font-size: 20px;
  }

  /* Hide desktop sidebar on mobile - show after form */
  .col-xxl-3.col-xl-4.col-lg-4 {
    margin-top: 24px;
  }
}

/* Small Mobile Adjustments (iPhone SE etc) */
@media (max-width: 375px) {
  .amount-btn {
    flex: 1 1 calc(50% - 8px);
    font-size: 14px !important;
    padding: 12px 6px !important;
  }

  .donate-info-title .title {
    font-size: 20px;
  }

  .submit-btn {
    padding: 16px 24px !important;
    font-size: 16px !important;
  }

  .sticky-donate-btn {
    padding: 12px 30px;
    font-size: 15px;
  }
}

/* Success Modal Styles */
.donation-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donation-success-modal .modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s;
}

.donation-success-modal .modal-content {
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  max-width: 500px;
  animation: slideUp 0.4s;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.donation-success-modal .modal-icon i {
  font-size: 80px;
  color: #10b981;
  animation: scaleIn 0.5s;
}

.donation-success-modal .modal-content h3 {
  margin: 20px 0;
  color: #1f2937;
  font-size: 24px;
}

.donation-success-modal .donation-info {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.donation-success-modal .donation-info p {
  margin: 8px 0;
  color: #374151;
}

.donation-success-modal .redirect-text {
  color: #6b7280;
  font-size: 14px;
  margin-top: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

@keyframes ri-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.ri-spin {
  animation: ri-spin 1s linear infinite;
}

/* ============================================ */
/* GALLERY PAGE STYLES */
/* ============================================ */

.gallery-album-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.gallery-album-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.album-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.album-cover {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f0f0f0;
}

.album-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-album-card:hover .album-img {
  transform: scale(1.05);
}

.album-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.album-placeholder i {
  font-size: 3rem;
  color: #aaa;
}

.album-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-album-card:hover .album-overlay {
  opacity: 1;
}

.album-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--second-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.album-icon i {
  font-size: 1.5rem;
  color: white;
}

.album-count {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
}

.album-info {
  padding: 20px;
}

.album-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.album-desc {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* ============================================ */
/* ALBUM DETAILS PAGE STYLES */
/* ============================================ */

.gallery-media-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.media-wrapper {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f0f0f0;
}

.media-img,
.media-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-media-item:hover .media-img,
.gallery-media-item:hover .media-video {
  transform: scale(1.05);
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-media-item:hover .media-overlay {
  opacity: 1;
}

.media-overlay i {
  font-size: 2rem;
  color: white;
}

.play-button {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--second-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-button i {
  font-size: 2rem;
  color: white;
  margin-left: 4px;
}

.video-wrapper .media-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.3);
}

.gallery-media-item:hover .video-wrapper .media-overlay {
  background: rgba(0, 0, 0, 0.5);
}

/* Other Albums */
.other-album-card {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.other-album-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.other-album-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.other-album-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.other-album-card:hover .other-album-img img {
  transform: scale(1.05);
}

.album-placeholder-sm {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.album-placeholder-sm i {
  font-size: 2rem;
  color: #aaa;
}

.other-album-title {
  padding: 15px;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
}

/* ============================================ */
/* PAYMENT SUCCESS PAGE STYLES */
/* ============================================ */

.detail-row:hover {
  background: #f9fafb;
  transform: translateX(4px);
}

.detail-row span span {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .detail-row {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px;
  }

  .detail-row strong {
    margin-left: 50px;
  }
}

/* ============================================ */
/* PAYMENT FAILED PAGE STYLES */
/* ============================================ */

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.animate-icon {
  animation: iconPulse 2s ease-in-out infinite;
}

.btn-primary-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3) !important;
}

.btn-outline:hover {
  background: #6B7280;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 114, 128, 0.3);
}

.detail-item {
  transition: all 0.3s;
}

.detail-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* ========================================
   Campaign Cover Image - Breadcrumb Background
======================================== */
.breadcrumb-bg[style*="--campaign-cover"]::before {
  background-image: var(--campaign-cover) !important;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.85;
}

/* ========================================
   Search Results Page Styles
======================================== */
.search-results-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 60vh;
}

/* Search Form Styling */
.search-form {
  background: #fff;
  padding: 8px;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid #eee;
  transition: all 0.3s ease;
}

.search-form:focus-within {
  border-color: var(--second-color);
  box-shadow: 0 15px 50px rgba(247, 153, 96, 0.15);
}

.search-form .input-group {
  gap: 0;
}

.search-form .form-control {
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  border-radius: 50px 0 0 50px;
  background: transparent;
}

.search-form .form-control:focus {
  box-shadow: none;
  outline: none;
}

.search-form .btn-primary {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.search-form .btn-primary:hover {
  transform: translateX(-3px);
  box-shadow: 0 8px 25px rgba(247, 153, 96, 0.4);
}

.search-form .btn-primary i {
  font-size: 18px;
}

/* Search Results Info */
.search-results-section .text-muted {
  font-size: 16px;
  color: #6c757d !important;
}

.search-results-section .text-muted strong {
  color: var(--second-color);
  font-weight: 700;
}

/* Search Tabs */
.search-results-section .nav-tabs {
  border: none;
  background: #fff;
  border-radius: 15px;
  padding: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: inline-flex;
  gap: 5px;
}

.search-results-section .nav-tabs .nav-link {
  border: none;
  border-radius: 10px;
  padding: 12px 25px;
  font-weight: 600;
  color: #495057;
  background: transparent;
  transition: all 0.3s ease;
}

.search-results-section .nav-tabs .nav-link:hover {
  background: #f8f9fa;
  color: var(--second-color);
}

.search-results-section .nav-tabs .nav-link.active {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(247, 153, 96, 0.3);
}

/* Section Headers */
.search-results-section h3 {
  position: relative;
  padding-left: 20px;
  color: #2c3e50;
  font-weight: 700;
}

.search-results-section h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 25px;
  background: linear-gradient(180deg, var(--second-color) 0%, var(--main-color) 100%);
  border-radius: 3px;
}

/* Search Result Cards */
.search-results-section .single-donation-item,
.search-results-section .single-blog {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.search-results-section .single-donation-item:hover,
.search-results-section .single-blog:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.search-results-section .donation-img img,
.search-results-section .blog-img img {
  height: 200px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.search-results-section .single-donation-item:hover .donation-img img,
.search-results-section .single-blog:hover .blog-img img {
  transform: scale(1.05);
}

.search-results-section .donation-info,
.search-results-section .blog-info {
  padding: 20px;
}

.search-results-section .donation-info .title a,
.search-results-section .blog-info .title a {
  color: #2c3e50;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-results-section .donation-info .title a:hover,
.search-results-section .blog-info .title a:hover {
  color: var(--second-color);
}

.search-results-section .donation-info .subtitle,
.search-results-section .blog-info .subtitle {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 10px;
}

/* Date Time Styling */
.search-results-section .date-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--second-color);
  font-size: 13px;
}

.search-results-section .date-time i {
  font-size: 16px;
}

/* View All Buttons */
.search-results-section .btn-primary-outline {
  border: 2px solid var(--second-color);
  color: var(--second-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.search-results-section .btn-primary-outline:hover {
  background: var(--second-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 153, 96, 0.3);
}

.search-results-section .btn-primary-fill {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  border: none;
}

.search-results-section .btn-primary-fill:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(247, 153, 96, 0.4);
  color: #fff;
}

/* No Results State */
.search-results-section .ri-search-line {
  color: #dee2e6 !important;
}

.search-results-section h4 {
  color: #495057;
  font-weight: 600;
}

/* Pagination Styling */
.search-results-section .pagination {
  gap: 5px;
  justify-content: center;
}

.search-results-section .pagination .page-link {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  color: #495057;
  font-weight: 600;
  transition: all 0.3s ease;
}

.search-results-section .pagination .page-link:hover {
  background: #f8f9fa;
  color: var(--second-color);
}

.search-results-section .pagination .page-item.active .page-link {
  background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
  color: #fff;
  box-shadow: 0 5px 15px rgba(247, 153, 96, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .search-form {
    border-radius: 15px;
    padding: 15px;
  }

  .search-form .form-control {
    border-radius: 10px;
    padding: 12px 15px;
    margin-bottom: 10px;
  }

  .search-form .btn-primary {
    border-radius: 10px;
    width: 100%;
    justify-content: center;
  }

  .search-form .input-group {
    flex-direction: column;
  }

  .search-results-section .nav-tabs {
    width: 100%;
    flex-wrap: wrap;
  }

  .search-results-section .nav-tabs .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }

  .search-results-section h3 {
    font-size: 20px;
  }
}

/* ========================================
   Footer Policy Links Styles
======================================== */
.footer-policy-links {
  margin-top: 15px;
  margin-bottom: 15px;
}

.footer-policy-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 10px;
}

.footer-policy-links a:hover {
  color: var(--second-color);
  text-decoration: underline;
}

.footer-policy-links .text-muted {
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 576px) {
  .footer-policy-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer-policy-links .text-muted {
    display: none;
  }
}

/* ========================================
   Program Category Sections
======================================== */
.program-section {
  --program-color: var(--main-color);
  --program-soft: #eef7f8;
  --program-border: rgba(5, 108, 125, 0.18);
  background: var(--program-soft);
  border-top: 1px solid var(--program-border);
  border-bottom: 1px solid var(--program-border);
}

.program-section + .program-section {
  border-top: 0;
}

.program-section--social {
  --program-color: #087f5b;
  --program-soft: #f0fbf6;
  --program-border: rgba(8, 127, 91, 0.18);
}

.program-section--emergency {
  --program-color: #c2412d;
  --program-soft: #fff5f2;
  --program-border: rgba(194, 65, 45, 0.18);
}

.program-section--seasonal {
  --program-color: #a76509;
  --program-soft: #fff9e8;
  --program-border: rgba(167, 101, 9, 0.2);
}

.program-section__header .title {
  color: #222;
}

.program-section__eyebrow,
.program-section__count {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--program-color);
  background: #fff;
  border: 1px solid var(--program-border);
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
}

.program-section__eyebrow {
  padding: 8px 16px;
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
}

.program-section__eyebrow i {
  font-size: 18px;
}

.program-section__count {
  padding: 7px 14px;
  margin-top: 14px;
  font-size: 13px;
}

.program-section .single-donate {
  border: 1px solid var(--program-border);
}

.program-section__button {
  background: var(--program-color) !important;
  border-color: var(--program-color) !important;
  color: #fff !important;
}

.program-section__button:hover {
  background: #1f2933 !important;
  border-color: #1f2933 !important;
  color: #fff !important;
}

.program-section__empty {
  color: #495057;
}

.program-badge {
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 24px);
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #1f2933;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  white-space: normal;
}

.program-badge--social-programs,
.program-filter__item--social-programs {
  --program-color: #087f5b;
  --program-soft: #e3f7ee;
  --program-border-strong: rgba(8, 127, 91, 0.28);
}

.program-badge--emergency-programs,
.program-filter__item--emergency-programs {
  --program-color: #c2412d;
  --program-soft: #ffe5de;
  --program-border-strong: rgba(194, 65, 45, 0.28);
}

.program-badge--seasonal-programs,
.program-filter__item--seasonal-programs {
  --program-color: #a76509;
  --program-soft: #fff0bd;
  --program-border-strong: rgba(167, 101, 9, 0.3);
}

.program-badge--social-programs,
.program-badge--emergency-programs,
.program-badge--seasonal-programs {
  color: var(--program-color);
  background: var(--program-soft);
  border-color: var(--program-border-strong);
}

.program-filter__item {
  background: #fff;
  border: 1px solid #dfe5e8;
  color: #334155;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  line-height: 1.2;
}

.program-filter__item--social-programs,
.program-filter__item--emergency-programs,
.program-filter__item--seasonal-programs {
  color: var(--program-color);
  background: var(--program-soft);
  border-color: var(--program-border-strong);
}

.program-filter__item:hover,
.program-filter__item.is-active {
  background: var(--program-color, var(--main-color));
  border-color: var(--program-color, var(--main-color));
  color: #fff;
}

@media (max-width: 767px) {
  .program-campaign-carousel.slick-initialized {
    display: block;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 42px;
  }

  .program-campaign-carousel.slick-initialized .slick-list {
    margin: 0 -8px;
    overflow: hidden;
  }

  .program-campaign-carousel.slick-initialized .slick-track {
    display: flex;
    align-items: stretch;
  }

  .program-campaign-carousel.slick-initialized .slick-slide {
    height: auto;
  }

  .program-campaign-carousel.slick-initialized .slick-slide > div,
  .program-campaign-carousel.slick-initialized .program-campaign-slide {
    height: 100%;
  }

  .program-campaign-carousel.slick-initialized .program-campaign-slide {
    padding-left: 8px;
    padding-right: 8px;
  }

  .program-campaign-carousel.slick-initialized .single-donate {
    height: 100%;
  }

  .program-carousel__arrow {
    position: absolute;
    top: calc(50% - 34px);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid var(--program-border);
    border-radius: 50%;
    background: #fff;
    color: var(--program-color);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.16);
  }

  .program-carousel__arrow i {
    font-size: 22px;
    line-height: 1;
  }

  .program-carousel__arrow--prev {
    left: 4px;
  }

  .program-carousel__arrow--next {
    right: 4px;
  }

  .program-campaign-carousel .slick-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex !important;
    justify-content: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .program-campaign-carousel .slick-dots li {
    display: inline-flex;
  }

  .program-campaign-carousel .slick-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.22);
    font-size: 0;
    line-height: 0;
  }

  .program-campaign-carousel .slick-dots .slick-active button {
    width: 24px;
    border-radius: 999px;
    background: var(--program-color);
  }

  .program-campaign-carousel .slick-disabled {
    opacity: 0.35;
  }
}

@media (max-width: 576px) {
  .program-section__eyebrow {
    font-size: 12px;
    padding: 7px 12px;
  }

  .program-section__count {
    font-size: 12px;
  }

  .program-filter__item {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   News / Article Content (TinyMCE output styling)
   ============================================================ */
.news-content {
  color: #444a48;
  font-size: 17px;
  line-height: 1.9;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Paragraphs */
.news-content p {
  margin: 0 0 1.4em;
  color: #4a4f4d;
}

.news-content p:last-child {
  margin-bottom: 0;
}

/* Headings */
.news-content h1,
.news-content h2,
.news-content h3,
.news-content h4,
.news-content h5,
.news-content h6 {
  color: #090E0D;
  font-weight: 700;
  line-height: 1.35;
  margin: 1.8em 0 0.7em;
}

.news-content h1:first-child,
.news-content h2:first-child,
.news-content h3:first-child,
.news-content h4:first-child {
  margin-top: 0;
}

.news-content h1 { font-size: 30px; }
.news-content h2 { font-size: 26px; }
.news-content h3 { font-size: 22px; }
.news-content h4 { font-size: 19px; }
.news-content h5 { font-size: 17px; }
.news-content h6 { font-size: 15px; }

/* Links */
.news-content a {
  color: var(--main-color, #0d7d6e);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s;
}

.news-content a:hover {
  opacity: .8;
}

/* Lists */
.news-content ul,
.news-content ol {
  margin: 0 0 1.4em;
  padding-left: 1.6em;
}

.news-content li {
  margin-bottom: 0.55em;
  line-height: 1.8;
}

.news-content ul li {
  list-style: disc;
}

.news-content ol li {
  list-style: decimal;
}

/* Bold / emphasis */
.news-content strong,
.news-content b {
  font-weight: 700;
  color: #2a2e2d;
}

/* Images */
.news-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.6em auto;
  display: block;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
}

.news-content figure {
  margin: 1.6em 0;
  text-align: center;
}

.news-content figure img {
  margin-bottom: .6em;
}

.news-content figcaption {
  font-size: 14px;
  color: #8a908e;
  text-align: center;
  font-style: italic;
}

/* Video & Embeds — responsive 16:9 */
.news-content video,
.news-content iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: 12px;
  margin: 1.8em auto;
  background: #000;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .12);
}

/* Blockquote */
.news-content blockquote {
  margin: 1.8em 0;
  padding: 18px 24px;
  border-left: 4px solid var(--main-color, #0d7d6e);
  background: #f7faf9;
  border-radius: 0 10px 10px 0;
  color: #3a3f3e;
  font-style: italic;
}

.news-content blockquote p {
  margin-bottom: 0;
}

/* Tables */
.news-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8em 0;
  font-size: 15px;
  overflow: hidden;
  border-radius: 8px;
}

.news-content table th,
.news-content table td {
  border: 1px solid #e5e8e7;
  padding: 12px 16px;
  text-align: left;
}

.news-content table th {
  background: #f3f6f5;
  font-weight: 700;
  color: #2a2e2d;
}

.news-content table tr:nth-child(even) td {
  background: #fafbfb;
}

/* Horizontal rule */
.news-content hr {
  border: 0;
  border-top: 1px solid #e5e8e7;
  margin: 2em 0;
}

/* Mobile */
@media (max-width: 768px) {
  .news-content {
    font-size: 16px;
    line-height: 1.8;
  }

  .news-content h1 { font-size: 25px; }
  .news-content h2 { font-size: 22px; }
  .news-content h3 { font-size: 19px; }
  .news-content h4 { font-size: 17px; }
}
