:root {
  /* Brand Colors - Aligned with website */
  --salvation-primary: #004799;
  --salvation-primary-light: #0066cc;
  --salvation-secondary: #ffbf00;
  --salvation-secondary-light: #ffd633;

  /* Neutrals */
  --salvation-white: #ffffff;
  --salvation-black: #000000;
  --salvation-gray-50: #f8fafc;
  --salvation-gray-100: #f1f5f9;
  --salvation-gray-200: #e2e8f0;
  --salvation-gray-300: #cbd5e1;
  --salvation-gray-600: #475569;
  --salvation-gray-700: #334155;
  --salvation-gray-800: #1e293b;

  /* Apple-Style Shadows */
  --salvation-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
  --salvation-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
  --salvation-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --salvation-shadow-lg: 0 10px 24px rgba(0, 0, 0, 0.1);
  --salvation-shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --salvation-transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --salvation-transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --salvation-transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Salvation Prayer Section */
#salvation-prayer-section {
  background: linear-gradient(180deg,
    var(--salvation-white) 0%,
    var(--salvation-gray-50) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

#salvation-prayer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%,
    rgba(0, 71, 153, 0.03) 0%,
    transparent 70%);
  pointer-events: none;
}

/* Section Header - Apple Style */
#salvation-prayer-section .salvation-header {
  text-align: center;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  position: relative;
  z-index: 1;
}

#salvation-prayer-section .salvation-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(0, 71, 153, 0.08) 0%, rgba(255, 191, 0, 0.08) 100%);
  border: 1.5px solid rgba(0, 71, 153, 0.2);
  border-radius: 100px;
  color: var(--salvation-primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  box-shadow: var(--salvation-shadow-sm);
}

#salvation-prayer-section .salvation-label i {
  color: var(--salvation-secondary);
  font-size: 0.875rem;
}

#salvation-prayer-section .salvation-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--salvation-gray-800);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

#salvation-prayer-section .salvation-subtitle {
  font-size: 1.125rem;
  color: var(--salvation-gray-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

/* Prayer Card - Apple Inspired */
.prayer-card {
  max-width: 1100px;
  margin: 0 auto 48px;
  background: var(--salvation-white);
  border-radius: 28px;
  padding: 48px;
  border: 1px solid var(--salvation-gray-200);
  box-shadow: var(--salvation-shadow-xl);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: cardZoomIn 0.8s ease 0.3s forwards;
}

@keyframes cardZoomIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.prayer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg,
    var(--salvation-primary) 0%,
    var(--salvation-secondary) 100%);
  border-radius: 28px 28px 0 0;
}

.prayer-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
    rgba(0, 71, 153, 0.02) 0%,
    rgba(255, 191, 0, 0.02) 100%);
  pointer-events: none;
  border-radius: 28px;
}

/* Quote Marks - Apple Style */
.prayer-quote-mark {
  position: absolute;
  top: 40px;
  left: 40px;
  font-size: 8rem;
  font-family: Georgia, serif;
  background: linear-gradient(135deg, var(--salvation-primary) 0%, var(--salvation-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  line-height: 1;
  z-index: 0;
}

/* Prayer Text */
.prayer-text {
  position: relative;
  z-index: 1;
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--salvation-gray-700);
  text-align: center;
  margin: 0;
  font-weight: 400;
}

.prayer-text strong,
.prayer-text .highlight {
  color: var(--salvation-primary);
  font-weight: 600;
}

/* AMEN Badge - Special Styling */
.amen-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 16px 36px;
  background: linear-gradient(135deg,
    rgba(255, 191, 0, 0.15) 0%,
    rgba(255, 191, 0, 0.08) 100%);
  border: 2px solid var(--salvation-secondary);
  border-radius: 100px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--salvation-gray-800);
  letter-spacing: 1px;
  box-shadow: var(--salvation-shadow-md);
  transition: all var(--salvation-transition-base);
  position: relative;
  z-index: 1;
}

.amen-badge i {
  color: var(--salvation-secondary);
  font-size: 1.25rem;
}

.amen-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--salvation-shadow-lg);
}

/* Action Buttons */
.prayer-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.prayer-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--salvation-white);
  border: 1.5px solid var(--salvation-gray-300);
  border-radius: 100px;
  color: var(--salvation-gray-700);
  font-size: 0.938rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--salvation-transition-base);
  box-shadow: var(--salvation-shadow-sm);
  position: relative;
  overflow: hidden;
}

.prayer-action-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--salvation-primary);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.prayer-action-btn:active::before {
  width: 300px;
  height: 300px;
}

.prayer-action-btn:hover {
  transform: translateY(-2px);
  border-color: var(--salvation-primary);
  color: var(--salvation-primary);
  box-shadow: var(--salvation-shadow-md);
}

.prayer-action-btn i {
  font-size: 0.938rem;
  position: relative;
  z-index: 1;
}

.prayer-action-btn span {
  position: relative;
  z-index: 1;
}

.prayer-action-btn.primary {
  background: linear-gradient(135deg, var(--salvation-primary) 0%, var(--salvation-primary-light) 100%);
  border-color: var(--salvation-primary);
  color: white;
}

.prayer-action-btn.primary:hover {
  color: white;
  box-shadow: var(--salvation-shadow-lg);
}

/* Next Steps Section */
.next-steps-section {
  max-width: 1200px;
  margin: 48px auto 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.6s forwards;
}

.next-steps-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--salvation-gray-800);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.next-step-card {
  background: var(--salvation-white);
  border: 1px solid var(--salvation-gray-200);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all var(--salvation-transition-base);
  box-shadow: var(--salvation-shadow-sm);
}

.next-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--salvation-shadow-lg);
  border-color: var(--salvation-gray-300);
}

.next-step-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg,
    rgba(0, 71, 153, 0.1) 0%,
    rgba(255, 191, 0, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--salvation-primary);
  box-shadow: var(--salvation-shadow-sm);
  transition: all var(--salvation-transition-base);
}

.next-step-card:hover .next-step-icon {
  transform: scale(1.1);
  box-shadow: var(--salvation-shadow-md);
}

.next-step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--salvation-gray-800);
  margin-bottom: 12px;
}

.next-step-description {
  font-size: 0.938rem;
  color: var(--salvation-gray-600);
  line-height: 1.6;
  margin-bottom: 20px;
}

.next-step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--salvation-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all var(--salvation-transition-fast);
}

.next-step-link:hover {
  gap: 10px;
  color: var(--salvation-primary-light);
}

.next-step-link i {
  font-size: 0.75rem;
  transition: transform var(--salvation-transition-base);
}

.next-step-link:hover i {
  transform: translateX(4px);
}

/* Contact CTA */
.contact-cta {
  max-width: 850px;
  margin: 48px auto 0;
  background: linear-gradient(135deg,
    rgba(0, 71, 153, 0.05) 0%,
    rgba(255, 191, 0, 0.05) 100%);
  border: 1px solid var(--salvation-gray-200);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

.contact-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--salvation-gray-800);
  margin-bottom: 12px;
}

.contact-cta-text {
  font-size: 1rem;
  color: var(--salvation-gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--salvation-primary) 0%, var(--salvation-primary-light) 100%);
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: var(--salvation-shadow-md);
  transition: all var(--salvation-transition-base);
  position: relative;
  overflow: hidden;
}

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

.contact-cta-button:active::before {
  width: 300px;
  height: 300px;
}

.contact-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--salvation-shadow-xl);
  color: white;
}

.contact-cta-button i {
  position: relative;
  z-index: 1;
}

.contact-cta-button span {
  position: relative;
  z-index: 1;
}

/* Responsive Design - Apple Approach */
@media (max-width: 1024px) {
  #salvation-prayer-section {
    padding: 60px 0;
  }

  .prayer-card {
    padding: 40px;
  }

  .prayer-text {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  #salvation-prayer-section {
    padding: 48px 0;
  }

  #salvation-prayer-section .salvation-title {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
  }

  .prayer-card {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .prayer-quote-mark {
    font-size: 6rem;
    top: 30px;
    left: 20px;
  }

  .prayer-text {
    font-size: 1.063rem;
  }

  .amen-badge {
    font-size: 1.25rem;
    padding: 14px 32px;
  }

  .next-steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-cta {
    padding: 32px 24px;
  }
}

@media (max-width: 576px) {
  #salvation-prayer-section {
    padding: 40px 0;
  }

  .prayer-card {
    padding: 28px 20px;
    border-radius: 20px;
  }

  .prayer-quote-mark {
    font-size: 4rem;
    top: 20px;
    left: 15px;
  }

  .prayer-text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .amen-badge {
    font-size: 1.125rem;
    padding: 12px 28px;
  }

  .prayer-actions {
    flex-direction: column;
    gap: 12px;
  }

  .prayer-action-btn {
    width: 100%;
    justify-content: center;
  }

  .next-step-card {
    padding: 24px 20px;
  }

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

  .contact-cta-title {
    font-size: 1.25rem;
  }
}

/* Print Styles */
@media print {
  .prayer-actions,
  .next-steps-section,
  .contact-cta {
    display: none;
  }

  .prayer-card {
    box-shadow: none;
    border: 2px solid #000;
  }
}

/* Smooth Scroll Behavior */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
