/* ===== PRAYER REQUEST PAGE STYLES ===== */

/* Hero Section */
.prayer-hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/prayer.jpg") no-repeat center top;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    text-align: center;
    margin-top: 140px;
  }
  
  .prayer-hero-content {
    max-width: 800px;
    padding: 0 var(--spacing-md);
    z-index: 2;
  }
  
  .prayer-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    animation: fadeInDown 1s ease-out;
  }
  
  .prayer-hero p {
    font-size: 1.5rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
    font-style: italic;
    font-family: var(--font-accent);
  }
  
  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
  }
  
  /* Prayer Ministry Section */
  .prayer-ministry {
    padding: 80px 0;
    background: var(--white);
  }
  
  .ministry-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .ministry-text {
    flex: 1;
    text-align: center;
  }
  
  .ministry-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    text-align: left;
  }
  
  .ministry-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* make it center */
    transform: translateX(-50%); /* true center */
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
  }
  
  .ministry-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .prayer-times {
    margin-top: 30px;
    background: rgba(var(--primary-rgb), 0.05);
    padding: 20px;
    border-radius: 10px;
  }
  
  .prayer-times h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
  }
  
  .prayer-times ul {
    list-style: none;
    padding: 0;
  }
  
  .prayer-times ul li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 1.05rem;
  }
  
  .prayer-times ul li i {
    color: var(--secondary);
    margin-right: 10px;
    min-width: 20px;
  }
  
  .ministry-image {
    flex: 1;
  }
  
  .ministry-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Prayer Request Form Section */
  .prayer-request-form {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(45, 62, 80, 0.05), rgba(45, 62, 80, 0.1));
  }
  
  .prayer-request-form .container {
    display: flex;
    gap: 40px;
    align-items: flex-start;
  }
  
  .form-container {
    flex: 2;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .form-header {
    background: var(--primary);
    color: var(--white);
    padding: 25px 30px;
    text-align: center;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 10px;
  }
  
  .form-header p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  #prayer-form {
    padding: 30px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45, 62, 80, 0.1);
    outline: none;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .checkbox-group {
    margin-top: 5px;
  }
  
  .checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
  }
  
  .checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    width: auto;
  }
  
  .btn-submit {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .btn-submit:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .form-footer {
    padding: 15px 30px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
    text-align: center;
  }
  
  .form-footer p {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .form-footer i {
    color: var(--primary);
  }
  
  /* Prayer Sidebar */
  .prayer-sidebar {
    flex: 1;
    position: sticky;
    top: 160px;
  }
  
  .sidebar-section {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }
  
  .sidebar-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
  }
  
  .sidebar-section h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%; /* make it center */
    transform: translateX(-50%); /* true center */
    width: 50px;
    height: 2px;
    background: var(--secondary);
  }
  
  .scripture-box {
    background: rgba(var(--secondary-rgb), 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .scripture-box p {
    font-size: 1rem;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
    font-family: var(--font-accent);
  }
  
  .scripture-box cite {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: normal;
    display: block;
    text-align: right;
  }
  
  .resource-list {
    list-style: none;
    padding: 0;
  }
  
  .resource-list li {
    margin-bottom: 12px;
  }
  
  .resource-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f5f5f5;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
  }
  
  .resource-link:hover {
    background: rgba(var(--secondary-rgb), 0.1);
    transform: translateX(5px);
  }
  
  .resource-link i {
    color: var(--secondary);
    font-size: 1.1rem;
  }
  
  .prayer-hotline {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    margin: 15px 0;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  /* Testimonials Section */
  .prayer-testimonials {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
  }
  
  .prayer-testimonials h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .prayer-testimonials h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial-slide {
    padding: 20px;
  }
  
  .testimonial-content {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  .testimonial-quote {
    position: relative;
    padding-left: 30px;
  }
  
  .testimonial-quote i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 2rem;
    color: var(--secondary);
    opacity: 0.3;
  }
  
  .testimonial-quote p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .testimonial-quote h3 {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
    text-align: right;
  }
  
  .slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 20px;
  }
  
  .slider-prev,
  .slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    color: var(--primary);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .slider-prev:hover,
  .slider-next:hover {
    background: var(--primary);
    color: var(--white);
  }
  
  .slider-dots {
    display: flex;
    gap: 10px;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .dot.active {
    background: var(--primary);
    transform: scale(1.2);
  }
  
  .share-testimony {
    margin-top: 50px;
    background: rgba(var(--secondary-rgb), 0.1);
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .share-testimony h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
  }
  
  .share-testimony p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
  }
  
  .btn-share {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-share:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Join Prayer Team Section */
  .join-prayer-team {
    padding: 80px 0;
    background: linear-gradient(to right, rgba(45, 62, 80, 0.05), rgba(45, 62, 80, 0.1));
    width: 100%;
  }
  
  .join-content {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  
  .join-text {
    flex: 1;
  }
  
  .join-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }
  
  .join-text h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
  }
  
  .join-text p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
  }
  
  .join-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
  }
  
  .join-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 1.05rem;
  }
  
  .join-benefits li i {
    color: var(--secondary);
    font-size: 1.1rem;
  }
  
  .btn-join {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .btn-join:hover {
    background: var(--secondary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .join-image {
    flex: 1;
  }
  
  .join-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
  
  /* Success Message and Button Styles */
  .success-message {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 
      0 10px 30px rgba(0, 0, 0, 0.1),
      0 4px 15px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(194, 164, 119, 0.2);
  }

  .success-message i {
    font-size: 4.5rem;
    color: #28a745;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(0 3px 6px rgba(40, 167, 69, 0.3));
    animation: pulseSuccess 2s ease-in-out infinite;
  }

  @keyframes pulseSuccess {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }

  .success-message h3 {
    font-size: 2.2rem;
    color: var(--primary, #2d3e50);
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }

  .success-message p {
    font-size: 1.2rem;
    color: var(--text-dark, #333);
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .success-actions {
    margin-top: 35px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
  }

  /* Enhanced Button Styles */
  .btn-return {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary, #2d3e50) 0%, #1a252f 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
      0 6px 20px rgba(45, 62, 80, 0.3),
      0 2px 10px rgba(45, 62, 80, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
  }

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

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

  .btn-return:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
      0 12px 35px rgba(45, 62, 80, 0.4),
      0 6px 20px rgba(45, 62, 80, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #34495e 0%, var(--primary, #2d3e50) 100%);
  }

  .btn-return:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
      0 8px 25px rgba(45, 62, 80, 0.3),
      0 3px 15px rgba(45, 62, 80, 0.2);
  }

  /* Primary Return Button (Return to Homepage) */
  .btn-return.primary {
    background: linear-gradient(135deg, var(--secondary, #c2a477) 0%, #a08b5a 100%);
    box-shadow: 
      0 6px 20px rgba(194, 164, 119, 0.4),
      0 2px 10px rgba(194, 164, 119, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }

  .btn-return.primary:hover {
    background: linear-gradient(135deg, #d4b896 0%, var(--secondary, #c2a477) 100%);
    box-shadow: 
      0 12px 35px rgba(194, 164, 119, 0.5),
      0 6px 20px rgba(194, 164, 119, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }

  .btn-submit-another {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
      0 6px 20px rgba(23, 162, 184, 0.3),
      0 2px 10px rgba(23, 162, 184, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    min-width: 180px;
    justify-content: center;
  }

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

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

  .btn-submit-another:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
      0 12px 35px rgba(23, 162, 184, 0.4),
      0 6px 20px rgba(23, 162, 184, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #20c997 0%, #17a2b8 100%);
  }

  .btn-submit-another:active {
    transform: translateY(-1px) scale(1.01);
    box-shadow: 
      0 8px 25px rgba(23, 162, 184, 0.3),
      0 3px 15px rgba(23, 162, 184, 0.2);
  }

  /* Add icons to buttons */
  .btn-return:not(.has-icon)::before {
    content: '\f015'; /* FontAwesome home icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
  }

  .btn-return.primary:not(.has-icon)::before {
    content: '\f015'; /* FontAwesome home icon */
  }

  .btn-submit-another:not(.has-icon)::before {
    content: '\f067'; /* FontAwesome plus icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 8px;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .success-actions {
      flex-direction: column;
      gap: 15px;
    }

    .btn-return,
    .btn-submit-another {
      width: 100%;
      max-width: 280px;
    }

    .success-message {
      padding: 40px 25px;
    }

    .success-message h3 {
      font-size: 1.8rem;
    }

    .success-message p {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 480px) {
    .success-message i {
      font-size: 3.5rem;
    }

    .success-message h3 {
      font-size: 1.6rem;
    }

    .success-message p {
      font-size: 1rem;
    }

    .btn-return,
    .btn-submit-another {
      padding: 14px 24px;
      font-size: 1rem;
    }
  }
  
  /* Animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .prayer-request-form .container {
      flex-direction: column;
    }
  
    .prayer-sidebar {
      position: static;
      width: 100%;
    }
  }
  
  @media (max-width: 992px) {
    .prayer-hero {
      height: 30vh;
      margin-top: 90px;
    }
  
    .prayer-hero h1 {
      font-size: 2.8rem;
    }
  
    .prayer-hero p {
      font-size: 1.3rem;
    }
  
    .ministry-content {
      flex-direction: column;
    }
  
    .ministry-text {
      order: 2;
    }
  
    .ministry-image {
      order: 1;
      margin-bottom: 30px;
    }
  
    .join-content {
      flex-direction: column;
    }
  
    .join-text {
      order: 2;
    }
  
    .join-image {
      order: 1;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 768px) {
    .prayer-hero h1 {
      font-size: 2.4rem;
    }
  
    .prayer-hero p {
      font-size: 1.1rem;
    }
  
    .ministry-text h2,
    .prayer-testimonials h2,
    .join-text h2 {
      font-size: 2rem;
    }
  
    .form-row {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .prayer-hero h1 {
      font-size: 2rem;
    }
  
    .prayer-hero p {
      font-size: 1rem;
    }
  
    .ministry-text h2,
    .prayer-testimonials h2,
    .join-text h2 {
      font-size: 1.8rem;
    }
  
    .form-header h2 {
      font-size: 1.5rem;
    }
  
    .btn-submit {
      font-size: 1rem;
    }
  }

