@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #475569;
  background-color: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select, button {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  color: #0f172a;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}

h2 {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f172a;
}

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

.text-primary {
  color: #b91c1c;
}

.text-light {
  color: #94a3b8;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.section {
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}

.section-light {
  background-color: #f8fafc;
}

.section-dark {
  background-color: #0f172a;
  color: #ffffff;
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 {
  color: #ffffff;
}

.mt-xs {
  margin-top: 0.25rem;
}

.mt-sm {
  margin-top: 0.5rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mb-xs {
  margin-bottom: 0.25rem;
}

.mb-sm {
  margin-bottom: 0.5rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2rem;
}

.pt-xs {
  padding-top: 0.25rem;
}

.pt-sm {
  padding-top: 0.5rem;
}

.pt-md {
  padding-top: 1rem;
}

.pt-lg {
  padding-top: 1.5rem;
}

.pt-xl {
  padding-top: 2rem;
}

.pb-xs {
  padding-bottom: 0.25rem;
}

.pb-sm {
  padding-bottom: 0.5rem;
}

.pb-md {
  padding-bottom: 1rem;
}

.pb-lg {
  padding-bottom: 1.5rem;
}

.pb-xl {
  padding-bottom: 2rem;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

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

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #b91c1c;
  color: #ffffff;
  padding: 0.5rem 1rem;
  z-index: 60;
  transition: top 0.2s ease;
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus {
  top: 10px;
  outline: 3px solid #f59e0b;
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #f59e0b;
  outline-offset: 3px;
  border-radius: 0.25rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-family: inherit;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:active {
  transform: translateY(0);
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary {
  background: #b91c1c;
  color: #ffffff;
}
.btn-primary:hover {
  background: #991b1b;
}

.btn-secondary {
  background: transparent;
  color: #b91c1c;
  border: 2px solid #b91c1c;
}
.btn-secondary:hover {
  background: #b91c1c;
  color: #ffffff;
}

.btn-outline-light {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}
.btn-outline-light:hover {
  background: #ffffff;
  color: #b91c1c;
}

.btn-outline-primary {
  background: transparent;
  color: #b91c1c;
  border: 2px solid #b91c1c;
}
.btn-outline-primary:hover {
  background: #b91c1c;
  color: #ffffff;
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 3rem;
  font-size: 1.25rem;
}

.btn-block {
  width: 100%;
  display: flex;
}

.hero-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-fluid {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  max-height: 800px;
}
@media (max-width: 768px) {
  .carousel-fluid {
    height: 80vh;
    min-height: 400px;
  }
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide-bg .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-bg .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  z-index: 2;
}
.slide-content .slide-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.9);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.slide-content h1 {
  font-size: 3.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2.25rem;
  }
}
.slide-content .slide-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  max-width: 600px;
}
@media (max-width: 768px) {
  .slide-content .slide-subtitle {
    font-size: 1rem;
  }
}
.slide-content .slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}
.carousel-prev:hover,
.carousel-next:hover {
  background: #b91c1c;
}
@media (max-width: 768px) {
  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dots .dot.active {
  background: #b91c1c;
  width: 30px;
}
.carousel-dots .dot:hover {
  background: #ffffff;
}

.sermon-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sermon-card,
.news-card,
.event-item {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  padding: 1rem;
  border: 1px solid #e2e8f0;
}
.sermon-card:hover,
.news-card:hover,
.event-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.sermon-card .sermon-img,
.news-card .sermon-img,
.event-item .sermon-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.event-list .event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .event-list .event-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
}

.text-light {
  color: #94a3b8;
}

.contact-form-container {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.contact-form-container h3 {
  margin-bottom: 1.5rem;
  color: #0f172a;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.875rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #ffffff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #b91c1c;
  background: rgba(185, 28, 28, 0.05);
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23334155'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 20px;
}

.error-message {
  color: #b91c1c;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.error-message::before {
  content: "⚠️";
  font-size: 0.75rem;
}

.success-message {
  background: #b91c1c;
  color: #ffffff;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 1.5rem;
  animation: fadeIn 0.3s ease;
}
.success-message::before {
  content: "✓";
  margin-right: 0.25rem;
  font-weight: bold;
}

.required::after {
  content: " *";
  color: #b91c1c;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.checkbox-group,
.radio-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.checkbox-group input[type=checkbox],
.checkbox-group input[type=radio],
.radio-group input[type=checkbox],
.radio-group input[type=radio] {
  width: auto;
  margin-right: 0.25rem;
  cursor: pointer;
}
.checkbox-group label,
.radio-group label {
  margin-bottom: 0;
  cursor: pointer;
  font-weight: 400;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
}
.newsletter-form input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 2px solid #334155;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.newsletter-form input::placeholder {
  color: #64748b;
}
.newsletter-form input:focus {
  outline: none;
  border-color: #b91c1c;
  background: rgba(255, 255, 255, 0.15);
}
.newsletter-form button {
  white-space: nowrap;
}
@media (max-width: 768px) {
  .newsletter-form button {
    width: 100%;
  }
}

.custom-amount {
  margin: 1.5rem 0;
}
.custom-amount .amount-input-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 300px;
  margin: 0 auto;
}
.custom-amount .amount-input-wrapper .currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}
.custom-amount .amount-input-wrapper input {
  width: 150px;
  padding: 0.5rem;
  font-size: 1.5rem;
  text-align: center;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
}
.custom-amount .amount-input-wrapper input:focus {
  outline: none;
  border-color: #b91c1c;
}

.payment-methods {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}
.payment-methods .payment-icon {
  font-size: 2rem;
  color: #94a3b8;
  transition: all 0.3s ease;
  cursor: pointer;
}
.payment-methods .payment-icon:hover {
  color: #b91c1c;
  transform: scale(1.1);
}
.payment-methods .payment-icon.active {
  color: #b91c1c;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-loading {
  position: relative;
  color: transparent !important;
}
.btn-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 2px solid #ffffff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.site-header {
  position: sticky;
  top: 0;
  background: #ffffff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  z-index: 30;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo a .logo-img {
  height: 50px;
  width: auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .logo a .logo-img {
    height: 45px;
  }
}
@media (max-width: 768px) {
  .logo a .logo-img {
    height: 40px;
  }
}
.logo a .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #b91c1c;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .logo a .logo-text {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .logo a .logo-text {
    font-size: 1.25rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger .hamburger-line {
  width: 25px;
  height: 3px;
  background: #0f172a;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 10;
    gap: 3rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  .nav-menu.active {
    left: 0;
  }
}
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    transition: left 0.3s ease;
    z-index: 10;
    gap: 3rem;
  }
  .nav-menu.active {
    left: 0;
  }
}

.navbar-links {
  display: flex;
  gap: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-links {
    flex-direction: column;
    text-align: left;
    gap: 1rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .navbar-links {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    width: 100%;
  }
}
.navbar-links .nav-link {
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 0.25rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-links .nav-link {
    padding: 1rem;
    font-size: 1rem;
    display: block;
    border-bottom: 1px solid #f1f5f9;
  }
}
.navbar-links .nav-link:hover {
  color: #b91c1c;
  background: #f8fafc;
}
.navbar-links .nav-link.active {
  color: #b91c1c;
  font-weight: 600;
  position: relative;
}
.navbar-links .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #b91c1c;
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-links .nav-link.active::after {
    left: 1rem;
    transform: none;
    width: 40px;
    bottom: 8px;
  }
}
@media (max-width: 768px) {
  .navbar-links .nav-link {
    display: block;
    font-size: 1.25rem;
    padding: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .navbar-cta {
    width: 100%;
    text-align: left;
    margin-top: 1rem;
  }
  .navbar-cta .btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .navbar-cta {
    width: 100%;
    text-align: center;
  }
  .navbar-cta .btn {
    width: 100%;
    max-width: 200px;
  }
}

@media (min-width: 1024px) {
  .nav-menu {
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    box-shadow: none;
    flex-direction: row;
    gap: 2rem;
  }
  .navbar-links {
    flex-direction: row;
    gap: 1rem;
  }
  .navbar-links .nav-link {
    white-space: nowrap;
    border-bottom: none;
  }
  .navbar-links .nav-link.active::after {
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    bottom: -5px;
  }
  .hamburger {
    display: none;
  }
}
.nav-overlay {
  display: none;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .nav-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 600px; /* Fixed height instead of viewport height */
  overflow: hidden;
  background: #0f172a;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-carousel {
    height: 500px;
  }
}
@media (max-width: 768px) {
  .hero-carousel {
    height: 400px;
  }
}

.carousel-fluid {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}
.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slide-bg .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide-bg .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.3) 100%);
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #ffffff;
  z-index: 2;
  max-width: 800px;
}
@media (max-width: 768px) {
  .slide-content {
    text-align: center;
    align-items: center;
    padding: 0 1.5rem;
  }
}
.slide-content .slide-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.9);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}
@media (max-width: 768px) {
  .slide-content .slide-tag {
    font-size: 0.75rem;
  }
}
.slide-content h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slide-content h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 1.5rem;
  }
}
.slide-content .slide-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .slide-content .slide-subtitle {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .slide-content .slide-subtitle {
    font-size: 0.875rem;
  }
}
.slide-content .slide-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .slide-content .slide-buttons {
    justify-content: center;
    gap: 0.5rem;
  }
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}
.carousel-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.carousel-dots .dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}
.carousel-dots .dot.active {
  background: #b91c1c;
  width: 28px;
  border-radius: 5px;
}
@media (max-width: 768px) {
  .carousel-dots {
    bottom: 15px;
    gap: 8px;
  }
  .carousel-dots .dot {
    width: 8px;
    height: 8px;
  }
  .carousel-dots .dot.active {
    width: 20px;
  }
}

.carousel-slide.active .slide-content {
  animation: slideUp 0.6s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.service-times-section {
  background: #f8fafc;
}

.service-times-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service-times-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .service-times-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.service-card.featured {
  border: 2px solid #b91c1c;
  position: relative;
}
.service-card.featured::before {
  content: "Featured";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #b91c1c;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.service-card .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
}
.service-card .service-time {
  font-size: 1.25rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 0.25rem;
}
.service-card .service-note {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 1rem;
}

.quick-access-section {
  background: #ffffff;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .quick-access-section {
    padding: 3rem 0;
  }
}

.quick-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .quick-access-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .quick-access-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.quick-card-item {
  display: flex;
  flex-direction: column;
}

.quick-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.quick-card.active {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.quick-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.quick-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.quick-card-image:hover img {
  transform: scale(1.05);
}
.quick-card-image .quick-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #ffffff;
}
@media (max-width: 768px) {
  .quick-card-image .quick-card-overlay {
    padding: 1.5rem;
  }
}
.quick-card-image .quick-card-overlay h3 {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .quick-card-image .quick-card-overlay h3 {
    font-size: 1.25rem;
  }
}
.quick-card-image .quick-card-overlay p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  opacity: 0.9;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .quick-card-image .quick-card-overlay p {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
  }
}
.quick-card-image .quick-card-overlay .card-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(185, 28, 28, 0.9);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.quick-card-image .quick-card-overlay .card-toggle:hover {
  background: #b91c1c;
  gap: 0.5rem;
}
.quick-card-image .quick-card-overlay .card-toggle .toggle-icon {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}
.quick-card-image .quick-card-overlay .card-toggle.active .toggle-icon {
  transform: rotate(180deg);
}

.card-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  background: #f8fafc;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.card-dropdown.open {
  max-height: 500px;
  transition: max-height 0.5s ease-in;
}

.dropdown-inner {
  padding: 2rem;
}
@media (max-width: 768px) {
  .dropdown-inner {
    padding: 1.5rem;
  }
}
.dropdown-inner h4 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.dropdown-inner p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
}
.dropdown-inner ul {
  list-style: none;
  margin-bottom: 1.5rem;
}
.dropdown-inner ul li {
  padding: 0.25rem 0;
  color: #475569;
  font-size: 0.875rem;
}
.dropdown-inner .dropdown-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.dropdown-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dropdown-form input, .dropdown-form select, .dropdown-form textarea {
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
}
.dropdown-form input:focus, .dropdown-form select:focus, .dropdown-form textarea:focus {
  outline: none;
  border-color: #b91c1c;
}
.dropdown-form textarea {
  resize: vertical;
}
.dropdown-form .checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.dropdown-form .checkbox-group input {
  width: auto;
}
.dropdown-form .checkbox-group label {
  font-size: 0.875rem;
  color: #475569;
}

.resources-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.resources-links .resource-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.resources-links .resource-link:hover {
  background: #b91c1c;
  transform: translateX(5px);
}
.resources-links .resource-link:hover .resource-icon,
.resources-links .resource-link:hover span {
  color: #ffffff;
}
.resources-links .resource-link .resource-icon {
  font-size: 1.5rem;
}
.resources-links .resource-link span {
  color: #0f172a;
  font-weight: 500;
}

.quick-card-item.expanded .quick-card {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.about-section {
  background: #ffffff;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .about-content {
    order: 1;
  }
}
@media (max-width: 768px) {
  .about-content {
    order: 1;
  }
}
.about-content .section-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .section-tag {
    font-size: 0.75rem;
  }
}
.about-content h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .about-content h2 {
    font-size: 1.875rem;
  }
}
.about-content .about-divider {
  width: 60px;
  height: 3px;
  background: #b91c1c;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
}
.about-content .about-lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.6;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .about-lead {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .about-content .about-lead {
    font-size: 1rem;
  }
}
.about-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content p {
    font-size: 0.875rem;
  }
}
.about-content .about-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .about-stats {
    gap: 1.5rem;
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .about-content .about-stats {
    gap: 1.5rem;
    justify-content: center;
  }
}
.about-content .about-stats .stat {
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .about-stats .stat {
    text-align: left;
  }
}
@media (max-width: 768px) {
  .about-content .about-stats .stat {
    text-align: center;
  }
}
.about-content .about-stats .stat .stat-number {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
  color: #b91c1c;
  line-height: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .about-stats .stat .stat-number {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .about-content .about-stats .stat .stat-number {
    font-size: 1.875rem;
  }
}
.about-content .about-stats .stat .stat-label {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  display: block;
}
.about-content .about-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .about-buttons {
    justify-content: flex-start;
  }
}
@media (max-width: 768px) {
  .about-content .about-buttons {
    justify-content: center;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-content .about-buttons .btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

.about-image {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-image {
    order: 2;
    max-width: 100%;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .about-image {
    order: 2;
    max-width: 100%;
  }
}
.about-image .image-wrapper {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.about-image .image-wrapper .about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-image .image-wrapper .about-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
  }
}
.about-image .image-wrapper:hover .about-img {
  transform: scale(1.05);
}
.about-image .image-wrapper .image-caption {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-image .image-wrapper .image-caption {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}
.about-image .image-wrapper .image-caption .caption-badge {
  display: inline-block;
  background: #b91c1c;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  letter-spacing: 2px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-image .image-wrapper .image-caption .caption-badge {
    font-size: 0.75rem;
    padding: 4px 0.5rem;
    letter-spacing: 1px;
  }
}
.about-image .image-wrapper .image-caption .caption-badge:hover {
  background: #991b1b;
  transform: scale(1.05);
}
.about-image::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 0.75rem;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-image::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .about-image::before {
    display: none;
  }
}
.about-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 0.75rem;
  z-index: -1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-image::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .about-image::after {
    display: none;
  }
}

.about-teaser-section {
  background: #ffffff;
}

.about-teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .about-teaser-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.about-teaser-image {
  position: relative;
}
.about-teaser-image .about-img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.about-teaser-image .image-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
}

.about-teaser-content .lead {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.about-teaser-content .mission-vision {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}
@media (max-width: 768px) {
  .about-teaser-content .mission-vision {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.about-teaser-content .mission-vision .mission,
.about-teaser-content .mission-vision .vision {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 0.75rem;
}
.about-teaser-content .mission-vision .mission h3,
.about-teaser-content .mission-vision .vision h3 {
  margin-bottom: 0.5rem;
}
.about-teaser-content .mission-vision .mission p,
.about-teaser-content .mission-vision .vision p {
  margin-bottom: 0;
}

.fellowship-section {
  background: #f8fafc;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .fellowship-section {
    padding: 3rem 0;
  }
}

.fellowship-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-wrapper {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .fellowship-wrapper {
    grid-template-columns: 260px 1fr;
    gap: 3rem;
  }
}

/* ============================================ */
/* TAB LIST - MOBILE FIRST (Horizontal Scroll) */
/* ============================================ */
.fellowship-tab-list {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
  background: #f8fafc;
  padding: 0.5rem;
  gap: 0.25rem;
}
.fellowship-tab-list::-webkit-scrollbar {
  height: 3px;
}
.fellowship-tab-list::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 9999px;
}
.fellowship-tab-list::-webkit-scrollbar-thumb {
  background: #b91c1c;
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-tab-list {
    justify-content: center;
    overflow-x: visible;
    flex-wrap: wrap;
    padding: 1rem;
    gap: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .fellowship-tab-list {
    flex-direction: column;
    overflow-x: visible;
    padding: 1.5rem 0;
    gap: 0.25rem;
  }
}

.fellowship-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: none;
  border: none;
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  border-radius: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-tab {
    white-space: normal;
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .fellowship-tab {
    justify-content: flex-start;
    white-space: normal;
    padding: 1rem 2rem;
    border-radius: 0;
    text-align: left;
  }
}
.fellowship-tab .tab-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-tab .tab-icon {
    width: 22px;
    height: 22px;
  }
}
.fellowship-tab:hover {
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.05);
}
.fellowship-tab.active {
  color: #ffffff;
  background: #b91c1c;
}
@media (min-width: 1024px) {
  .fellowship-tab.active {
    background: #ffffff;
    color: #b91c1c;
    position: relative;
  }
  .fellowship-tab.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #b91c1c;
  }
}
.fellowship-tab.active .tab-icon {
  filter: brightness(0) invert(1);
}
@media (min-width: 1024px) {
  .fellowship-tab.active .tab-icon {
    filter: none;
  }
}

/* ============================================ */
/* CONTENT PANELS - MOBILE FIRST */
/* ============================================ */
.fellowship-content-panels {
  background: #ffffff;
  padding: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-content-panels {
    padding: 2rem;
  }
}

.fellowship-panel {
  animation: fadeIn 0.3s ease;
}
.fellowship-panel h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-panel h3 {
    font-size: 1.5rem;
  }
}
.fellowship-panel .panel-date {
  font-size: 0.75rem;
  color: #b91c1c;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-panel .panel-date {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
  }
}

/* Grid Layout - Mobile: Stack, Desktop: Side by Side */
.panel-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.panel-grid.reverse {
  flex-direction: column;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .panel-grid {
    gap: 2rem;
  }
}
@media (min-width: 1024px) {
  .panel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .panel-grid.reverse {
    direction: rtl;
  }
  .panel-grid.reverse > * {
    direction: ltr;
  }
}

.panel-text {
  flex: 1;
  order: 1;
}
@media (min-width: 1024px) {
  .panel-text {
    order: unset;
  }
}

.panel-image {
  flex: 1;
  order: 2;
}
@media (min-width: 1024px) {
  .panel-image {
    order: unset;
  }
}
.panel-image .panel-img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .panel-image .panel-img {
    max-height: 300px;
  }
}
@media (min-width: 1024px) {
  .panel-image .panel-img {
    max-height: none;
  }
}
.panel-image .image-caption {
  margin-top: 0.25rem;
  font-size: 10px;
  color: #94a3b8;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .panel-image .image-caption {
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }
}

/* Map Container - Mobile */
.map-container {
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.map-container iframe {
  width: 100%;
  height: 200px;
  display: block;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .map-container iframe {
    height: 250px;
  }
}
@media (min-width: 1024px) {
  .map-container iframe {
    height: 280px;
  }
}

/* Location List - Mobile Optimized */
.location-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.location-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}
.location-item .location-name {
  font-weight: 700;
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .location-item .location-name {
    font-size: 1rem;
  }
}
.location-item p {
  font-size: 0.75rem;
  color: #475569;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .location-item p {
    font-size: 0.875rem;
  }
}
.location-item .service-time {
  color: #b91c1c;
  font-weight: 500;
  font-size: 0.75rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .location-item .service-time {
    font-size: 0.875rem;
  }
}
.location-item .panel-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #b91c1c;
  text-decoration: none;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .location-item .panel-link {
    font-size: 0.875rem;
  }
}

/* Satellite List - Mobile */
.satellite-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1rem 0;
}

.satellite-item {
  padding: 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
}
.satellite-item .group-name {
  font-weight: 700;
  color: #0f172a;
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .satellite-item .group-name {
    font-size: 1rem;
  }
}
.satellite-item p {
  font-size: 0.75rem;
  color: #475569;
  margin-bottom: 0.25rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .satellite-item p {
    font-size: 0.875rem;
  }
}
.satellite-item .group-leader {
  font-size: 10px;
  color: #b91c1c;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .satellite-item .group-leader {
    font-size: 0.75rem;
  }
}

/* Online Platforms - Mobile: 1 column */
.online-platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .online-platforms {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  background: #f8fafc;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .platform-card {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
}
.platform-card .platform-icon {
  font-size: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .platform-card .platform-icon {
    font-size: 2rem;
  }
}
.platform-card span {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.875rem;
  flex: 1;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .platform-card span {
    font-size: 1rem;
  }
}
.platform-card small {
  font-size: 10px;
  color: #b91c1c;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .platform-card small {
    font-size: 0.75rem;
  }
}

/* Service Schedule - Mobile */
.service-schedule {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service-schedule {
    padding: 1.5rem;
  }
}
.service-schedule strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service-schedule strong {
    font-size: 1rem;
  }
}
.service-schedule ul {
  list-style: none;
}
.service-schedule ul li {
  padding: 0.25rem 0;
  font-size: 0.75rem;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .service-schedule ul li {
    font-size: 0.875rem;
  }
}
.service-schedule ul li::before {
  content: "🕊️";
  font-size: 10px;
}

/* Requirements Box - Mobile */
.requirements-box {
  background: rgba(185, 28, 28, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  margin: 1rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .requirements-box {
    padding: 1.5rem;
  }
}
.requirements-box strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .requirements-box strong {
    font-size: 1rem;
  }
}
.requirements-box ul {
  list-style: none;
}
.requirements-box ul li {
  padding: 0.25rem 0;
  font-size: 0.75rem;
  color: #475569;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .requirements-box ul li {
    font-size: 0.875rem;
  }
}

/* Forms - Mobile */
.fellowship-form {
  margin-top: 1rem;
}
.fellowship-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-form .form-row {
    flex-direction: row;
  }
}
.fellowship-form .form-row input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.fellowship-form input, .fellowship-form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.fellowship-form input:focus, .fellowship-form textarea:focus {
  outline: none;
  border-color: #b91c1c;
}
.fellowship-form textarea {
  resize: vertical;
}
.fellowship-form .btn {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .fellowship-form .btn {
    width: auto;
  }
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.featured-sermon-section {
  background: #f8fafc;
}

.featured-sermon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .featured-sermon-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.sermon-media {
  position: relative;
}
.sermon-media .sermon-thumb {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.sermon-media .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #b91c1c;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #ffffff;
  transition: all 0.3s ease;
}
.sermon-media .play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
  background: #991b1b;
}
@media (max-width: 768px) {
  .sermon-media .play-btn {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

.sermon-info .sermon-category {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.sermon-info h3 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.sermon-info .sermon-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: #94a3b8;
  font-size: 0.875rem;
}
.sermon-info .sermon-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 768px) {
  .sermon-info .sermon-meta {
    flex-wrap: wrap;
    gap: 1rem;
  }
}
.sermon-info p {
  margin-bottom: 1.5rem;
}
.sermon-info .sermon-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.community-impact-section {
  background: #ffffff;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}

.impact-card {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}
.impact-card:hover {
  transform: translateY(-5px);
  background: #ffffff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.impact-card .impact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.impact-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.impact-card p {
  color: #475569;
  margin-bottom: 0;
  font-size: 0.875rem;
}

.testimonies-teaser-section {
  background: #f8fafc;
  padding: 80px 0;
}

.testimonies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .testimonies-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .testimonies-grid {
    grid-template-columns: 1fr;
  }
}

.testimony-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimony-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimony-text {
  margin-bottom: 24px;
}
.testimony-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #334155;
  font-style: italic;
}
.testimony-text p::before {
  content: '"';
  font-size: 40px;
  color: #b91c1c;
  opacity: 0.3;
  line-height: 1;
  margin-right: 4px;
}

.testimony-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimony-author .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.testimony-author .author-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimony-author .author-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.testimony-author .author-info span {
  font-size: 12px;
  color: #b91c1c;
}

.events-teaser-section {
  background: #ffffff;
}

.events-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.event-card {
  display: flex;
  background: #f8fafc;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.event-card:hover {
  transform: translateX(10px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }
  .event-card:hover {
    transform: translateY(-5px);
  }
}

.event-date {
  background: #b91c1c;
  color: #ffffff;
  padding: 1.5rem;
  text-align: center;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .event-date {
    flex-direction: row;
    gap: 0.5rem;
    padding: 1rem;
  }
}
.event-date .event-day {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1;
}
.event-date .event-month {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.event-details {
  flex: 1;
  padding: 1.5rem;
}
.event-details h3 {
  margin-bottom: 0.5rem;
}
.event-details .event-time,
.event-details .event-location {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #94a3b8;
  font-size: 0.875rem;
  margin-right: 1.5rem;
  margin-bottom: 0.5rem;
}
.event-details .event-desc {
  margin-top: 0.5rem;
  color: #475569;
}

.contact-info-section {
  background: #f8fafc;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.contact-info h3:first-child {
  margin-top: 0;
}
.contact-info address {
  font-style: normal;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.contact-info .prayer-lines {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .contact-info .prayer-lines {
    grid-template-columns: 1fr;
  }
}
.contact-info .prayer-lines .prayer-line {
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  color: #b91c1c;
  text-align: center;
}
.contact-info .prayer-note {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.5rem;
}

.contact-form {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.contact-form h3 {
  margin-bottom: 1.5rem;
}
.contact-form .form-group {
  margin-bottom: 1rem;
}
.contact-form .form-group input,
.contact-form .form-group select,
.contact-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-group input:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-color: #b91c1c;
}
.contact-form .form-group textarea {
  resize: vertical;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.contact-form-container {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.contact-form-container h3 {
  margin-bottom: 1rem;
  color: #0f172a;
}
.contact-form-container .form-group {
  margin-bottom: 1rem;
}
.contact-form-container .form-group label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #0f172a;
}
.contact-form-container .form-group input,
.contact-form-container .form-group textarea,
.contact-form-container .form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form-container .form-group input:focus,
.contact-form-container .form-group textarea:focus,
.contact-form-container .form-group select:focus {
  outline: none;
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
.contact-form-container .form-group input.error,
.contact-form-container .form-group textarea.error,
.contact-form-container .form-group select.error {
  border-color: #b91c1c;
}
.contact-form-container .form-group textarea {
  resize: vertical;
}

.contact-info-container h3 {
  margin-bottom: 1rem;
  color: #0f172a;
}
.contact-info-container .contact-info-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  margin-bottom: 1rem;
}
.contact-info-container .contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
.contact-info-container .contact-info-card .info-item .info-icon {
  font-size: 1.5rem;
  min-width: 40px;
}
.contact-info-container .contact-info-card .info-item .info-content {
  flex: 1;
}
.contact-info-container .contact-info-card .info-item .info-content h4 {
  margin-bottom: 0.25rem;
  color: #0f172a;
}
.contact-info-container .contact-info-card .info-item .info-content p {
  color: #475569;
  line-height: 1.5;
}
.contact-info-container .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-info-container .social-links .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.contact-info-container .social-links .social-link:hover {
  background: #b91c1c;
  transform: translateY(-3px);
}
.contact-info-container .social-links .social-link:hover .social-icon {
  color: #ffffff;
}
.contact-info-container .social-links .social-link .social-icon {
  font-size: 1.2rem;
  color: #b91c1c;
  transition: all 0.3s ease;
}

.map-container {
  margin-top: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}

.site-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 64px 0 24px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer .footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.site-footer .footer-logo {
  max-width: 100px;
  margin-bottom: 20px;
}
.site-footer .social-links {
  display: flex;
  gap: 16px;
}
.site-footer .social-links a {
  display: inline-block;
  transition: transform 0.3s ease;
}
.site-footer .social-links a:hover {
  transform: translateY(-3px);
}
.site-footer .social-links a img {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
}
.site-footer .social-links a img:hover {
  opacity: 0.8;
}
.site-footer .footer-links h3,
.site-footer .footer-services h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer .footer-links h3::after,
.site-footer .footer-services h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #b91c1c;
}
.site-footer .footer-links ul,
.site-footer .footer-services ul {
  list-style: none;
}
.site-footer .footer-links ul li,
.site-footer .footer-services ul li {
  margin-bottom: 12px;
}
.site-footer .footer-links ul li a,
.site-footer .footer-services ul li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}
.site-footer .footer-links ul li a:hover,
.site-footer .footer-services ul li a:hover {
  color: #b91c1c;
}
.site-footer .footer-links ul li strong,
.site-footer .footer-services ul li strong {
  color: white;
}
.site-footer .footer-newsletter h3 {
  font-size: 18px;
  color: white;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.site-footer .footer-newsletter h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #b91c1c;
}
.site-footer .footer-newsletter p {
  font-size: 14px;
  margin-bottom: 16px;
}
.site-footer .newsletter-form {
  display: flex;
  gap: 12px;
}
@media (max-width: 576px) {
  .site-footer .newsletter-form {
    flex-direction: column;
  }
}
.site-footer .newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
}
.site-footer .newsletter-form input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #b91c1c;
}
.site-footer .newsletter-form button {
  white-space: nowrap;
}
.site-footer .copyright {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .copyright p {
  font-size: 14px;
  color: #94a3b8;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-xl {
  margin-top: 48px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-primary {
  background: #b91c1c;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: #991b1b;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(185, 28, 28, 0.3);
}

/* SECTION 1: PAGE HERO */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 8rem 0;
}
.page-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-hero .hero-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.9);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 1.875rem;
  }
}
.page-hero .hero-text {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .page-hero .hero-text {
    font-size: 1rem;
  }
}
.page-hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../assets/images/pastor.png");
  background-attachment: fixed;
}

/* SECTION 2: OUR STORY */
.story-section {
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-grid {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.story-content .lead {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 500;
}
.story-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.story-image {
  position: relative;
}
.story-image .about-img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.story-image .image-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #ffffff;
}

/* SECTION 3: PURPOSE CARDS */
.cards-section {
  background: #f8fafc;
}

.purpose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .purpose-cards {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .purpose-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.purpose-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.purpose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.purpose-card .card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.purpose-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
}
.purpose-card p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.purpose-card .scripture-ref {
  font-size: 0.75rem;
  color: #b91c1c;
  font-style: italic;
  margin-bottom: 0;
}

/* SECTION 4: PASTOR SECTION */
.pastor-section {
  background: #ffffff;
}

.pastor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 768px) {
  .pastor-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pastor-image {
  position: relative;
}
.pastor-image .pastor-img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pastor-image .pastor-years {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #b91c1c;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
}

.pastor-content .lead {
  font-size: 1.25rem;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
}
.pastor-content .pastor-signature {
  margin-top: 1.5rem;
  font-family: "Brush Script MT", cursive;
  font-size: 1.875rem;
  color: #b91c1c;
}

/* SECTION 5: CORE BELIEFS */
.beliefs-section {
  background: #f8fafc;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .beliefs-grid {
    grid-template-columns: 1fr;
  }
}

.belief-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.belief-card:hover {
  transform: translateY(-5px);
  border-color: #b91c1c;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.belief-card .belief-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.belief-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}
.belief-card p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
}
.belief-card .belief-scripture {
  font-size: 0.75rem;
  color: #b91c1c;
  font-weight: 500;
}

/* SECTION 6: STATISTICS (ANIMATED) */
.stats-section {
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  color: #ffffff;
  text-align: center;
  padding: 6rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.stat-item .stat-number {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* SECTION 7: FINAL CTA */
.cta-section {
  background: #0f172a;
  text-align: center;
  padding: 6rem 0;
}
.cta-section .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-section .cta-content h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
.cta-section .cta-content p {
  color: #94a3b8;
  font-size: 1.25rem;
  margin-bottom: 2rem;
}
.cta-section .cta-content .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.divider {
  width: 60px;
  height: 3px;
  background: #b91c1c;
  margin: 1rem 0 1.5rem;
  border-radius: 9999px;
}

.story-section {
  background: #ffffff;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .story-section {
    padding: 3rem 0;
  }
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 700px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .story-content {
    text-align: center;
    order: 1;
  }
}
.story-content .section-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-content .section-tag {
    font-size: 0.75rem;
  }
}
.story-content h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-content h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .story-content h2 {
    font-size: 1.875rem;
  }
}
.story-content .divider {
  width: 60px;
  height: 3px;
  background: #b91c1c;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-content .divider {
    margin-left: auto;
    margin-right: auto;
  }
}
.story-content .lead {
  font-size: 1.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 500;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-content .lead {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .story-content .lead {
    font-size: 1rem;
  }
}
.story-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-content p {
    font-size: 0.875rem;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 768px) {
  .story-content p {
    font-size: 0.875rem;
  }
}

.story-image {
  position: relative;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-image {
    order: 2;
    max-width: 80%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .story-image {
    max-width: 100%;
  }
}
.story-image .about-img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-image .about-img {
    max-height: 350px;
    object-fit: cover;
  }
}
.story-image .image-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0, 0, 0, 0.7);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .story-image .image-caption {
    font-size: 10px;
    bottom: 0.5rem;
    left: 0.5rem;
  }
}

.cards-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .cards-section {
    padding: 3rem 0;
  }
}
.cards-section {
  position: relative;
  overflow: hidden;
}
.cards-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cards-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}
.section-header .section-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}
.section-header h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.875rem;
  }
}
.section-header h2::before {
  content: "✦";
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: #b91c1c;
  font-size: 1.5rem;
  opacity: 0.5;
}
.section-header h2::after {
  content: "✦";
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  color: #b91c1c;
  font-size: 1.5rem;
  opacity: 0.5;
}
.section-header .section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #b91c1c, #f59e0b);
  margin: 0 auto 1rem;
  border-radius: 9999px;
}
.section-header .section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.purpose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .purpose-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
  }
}
@media (max-width: 768px) {
  .purpose-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 400px;
  }
}

.purpose-card {
  background: #ffffff;
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.purpose-card.animate-left {
  animation: slideInLeft 0.8s ease forwards;
}
.purpose-card.animate-center {
  animation: scaleIn 0.8s ease forwards;
}
.purpose-card.animate-right {
  animation: slideInRight 0.8s ease forwards;
}
.purpose-card.featured {
  background: linear-gradient(135deg, #ffffff, rgba(185, 28, 28, 0.02));
  border: 2px solid rgba(185, 28, 28, 0.1);
  transform: scale(1.02);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .purpose-card.featured {
    transform: scale(1);
  }
}
.purpose-card.featured .card-number {
  background: #b91c1c;
  color: #ffffff;
}
.purpose-card.featured .card-icon {
  background: linear-gradient(135deg, #f1f5f9, rgba(185, 28, 28, 0.09));
}
.purpose-card.featured .card-hover-line {
  background: linear-gradient(90deg, #b91c1c, #f59e0b);
}
.purpose-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.purpose-card:hover .card-hover-line {
  width: 80px;
}
.purpose-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
}
.purpose-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.purpose-card .card-icon .icon-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
}
.purpose-card .card-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  background: #f1f5f9;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  font-family: monospace;
  transition: all 0.3s ease;
}
.purpose-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.purpose-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: #b91c1c;
  border-radius: 9999px;
}
.purpose-card p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  min-height: 120px;
}
@media (max-width: 768px) {
  .purpose-card p {
    min-height: auto;
  }
}
.purpose-card .card-footer {
  margin-top: auto;
}
.purpose-card .scripture-ref {
  font-size: 0.75rem;
  color: #b91c1c;
  font-style: italic;
  font-weight: 500;
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(185, 28, 28, 0.05);
  border-radius: 0.25rem;
}
.purpose-card .card-hover-line {
  width: 0;
  height: 2px;
  background: #b91c1c;
  margin: 1rem auto 0;
  transition: width 0.4s ease;
  border-radius: 9999px;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .purpose-card {
    padding: 2rem;
  }
  .purpose-card p {
    min-height: auto;
  }
  .purpose-card.featured {
    transform: scale(1);
  }
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
}
@media (max-width: 768px) {
  .purpose-card {
    padding: 1.5rem;
  }
  .purpose-card .card-icon {
    width: 60px;
    height: 60px;
  }
  .purpose-card .card-icon .icon-img {
    width: 35px;
    height: 35px;
  }
  .purpose-card h3 {
    font-size: 1.25rem;
  }
}
.pastor-section {
  background: #ffffff;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .pastor-section {
    padding: 3rem 0;
  }
}

.pastor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .pastor-grid {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .pastor-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.pastor-image {
  position: relative;
}
.pastor-image .pastor-img {
  width: 100%;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.pastor-image .pastor-years {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: #b91c1c;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.875rem;
}

.pastor-content .section-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.pastor-content h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .pastor-content h2 {
    font-size: 1.875rem;
  }
}
.pastor-content .divider {
  width: 60px;
  height: 3px;
  background: #b91c1c;
  margin-bottom: 1.5rem;
  border-radius: 9999px;
}
.pastor-content .lead {
  font-size: 1.25rem;
  color: #0f172a;
  font-style: italic;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .pastor-content .lead {
    font-size: 1rem;
  }
}
.pastor-content p {
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .pastor-content p {
    font-size: 0.875rem;
  }
}
.pastor-content .pastor-signature {
  margin-top: 1.5rem;
  font-family: "Brush Script MT", cursive;
  font-size: 1.875rem;
  color: #b91c1c;
}

.beliefs-section {
  background: #f8fafc;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .beliefs-section {
    padding: 3rem 0;
  }
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .beliefs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.belief-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.belief-card:hover {
  transform: translateY(-5px);
  border-color: #b91c1c;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.belief-card .belief-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.belief-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-weight: 700;
}
.belief-card p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.belief-card .belief-scripture {
  font-size: 0.75rem;
  color: #b91c1c;
  font-weight: 500;
  display: block;
}

.stats-section {
  background: #0f172a;
  color: #ffffff;
  text-align: center;
  padding: 6rem 0;
}

.section-headers h2 {
  font-size: 2.25rem;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.section-tags {
  display: inline-block;
  background: rgba(185, 28, 28, 0.9);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
}

.stats-header {
  margin-bottom: 4rem;
}
.stats-header .stats-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  color: #ffffff;
}
.stats-header h2 {
  font-size: 2.25rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .stats-header h2 {
    font-size: 1.875rem;
  }
}
.stats-header .stats-divider {
  width: 60px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 auto 1rem;
  border-radius: 9999px;
}
.stats-header .stats-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .stats-header .stats-subtitle {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 280px;
    margin: 0 auto;
  }
}

.stat-item {
  text-align: center;
}
.stat-item .stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .stat-item .stat-icon {
    font-size: 2rem;
  }
}
.stat-item .stat-number {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1;
  color: #ffffff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .stat-item .stat-number {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .stat-item .stat-number {
    font-size: 3rem;
  }
}
.stat-item .stat-label {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 768px) {
  .stat-item .stat-label {
    font-size: 0.875rem;
  }
}
.stat-item .stat-description {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .stat-item .stat-description {
    font-size: 10px;
  }
}

.stats-footer {
  text-align: center;
  margin-top: 4rem;
}
.stats-footer .stats-credit {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .stats-footer .stats-credit {
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
  }
}

.cta-section {
  text-align: center;
  padding: 6rem 0;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
.cta-section .cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.6s ease;
}
@media (max-width: 768px) {
  .cta-section h2 {
    font-size: 1.875rem;
  }
}
.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease 0.1s both;
}
@media (max-width: 768px) {
  .cta-section p {
    font-size: 1rem;
  }
}
.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.2s both;
}
.cta-section .cta-note {
  font-size: 0.75rem;
  margin-top: 1.5rem;
  animation: fadeInUp 0.6s ease 0.3s both;
}
.cta-section .cta-note span {
  display: inline-block;
  padding: 0.25rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}

.cta-visit {
  background-image: url("../../assets/images/fellowshiping.png");
  background-color: #0f172a;
  background-blend-mode: overlay;
}
.cta-visit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(53, 14, 14, 0.285);
  z-index: 0;
}
.cta-visit h2, .cta-visit p {
  color: #ffffff;
}
.cta-visit .btn-primary {
  background: #ffffff;
  color: #b91c1c;
}
.cta-visit .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}
.cta-visit .btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.cta-visit .btn-outline-light:hover {
  background: #ffffff;
  color: #b91c1c;
  transform: translateY(-3px);
}
.cta-visit .cta-note span {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.8);
}

.cta-involved {
  background: #0f172a;
}
.cta-involved h2, .cta-involved p {
  color: #ffffff;
}
.cta-involved .btn-primary {
  background: #b91c1c;
  color: #ffffff;
}
.cta-involved .btn-primary:hover {
  background: #991b1b;
  transform: translateY(-3px);
}
.cta-involved .btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.cta-involved .btn-outline-light:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-3px);
}
.cta-involved .cta-note span {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.cta-decision {
  background: #b91c1c;
}
.cta-decision h2, .cta-decision p {
  color: #ffffff;
}
.cta-decision .btn-primary {
  background: #ffffff;
  color: #b91c1c;
}
.cta-decision .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}
.cta-decision .btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.cta-decision .btn-outline-light:hover {
  background: #ffffff;
  color: #b91c1c;
  transform: translateY(-3px);
}
.cta-decision .cta-note span {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn-primary, .btn-outline-light {
  transition: all 0.3s ease;
}

.sermons-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url("../../../assets/images/pastor4.png");
  background-size: cover;
  background-position: center;
  min-height: 40vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 6rem 0;
}
.sermons-hero .hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.sermons-hero .hero-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.9);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.sermons-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
@media (max-width: 768px) {
  .sermons-hero h1 {
    font-size: 1.875rem;
  }
}
.sermons-hero .hero-text {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sermons-hero .hero-text {
    font-size: 1rem;
  }
}

.media-filters-section {
  background: #ffffff;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.media-filters {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.media-filters .media-filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 9999px;
}
.media-filters .media-filter-btn:hover {
  color: #b91c1c;
}
.media-filters .media-filter-btn.active {
  background: #b91c1c;
  color: #ffffff;
}
@media (max-width: 768px) {
  .media-filters .media-filter-btn {
    padding: 0.25rem 1.5rem;
    font-size: 0.875rem;
  }
}

.category-filters-section {
  background: #f8fafc;
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.category-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.category-filters .category-filter-btn {
  background: none;
  border: none;
  padding: 0.25rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 9999px;
}
.category-filters .category-filter-btn:hover {
  color: #b91c1c;
}
.category-filters .category-filter-btn.active {
  background: #ffffff;
  color: #b91c1c;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.featured-sermon-section {
  background: #ffffff;
  padding: 6rem 0;
}

.featured-sermon-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .featured-sermon-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .featured-sermon-wrapper {
    grid-template-columns: 1fr;
  }
}

.featured-video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.featured-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.featured-info h3 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}
@media (max-width: 768px) {
  .featured-info h3 {
    font-size: 1.5rem;
  }
}
.featured-info .featured-preacher {
  font-size: 1rem;
  color: #b91c1c;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.featured-info .featured-date {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}
.featured-info .featured-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.featured-info .featured-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.audio-sermons-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.audio-sermons-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audio-series {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
.audio-series:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.series-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #ffffff;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s ease;
}
.series-header:hover {
  background: rgba(185, 28, 28, 0.02);
}
.series-header .series-info {
  flex: 1;
}
.series-header .series-info .series-date {
  font-size: 0.75rem;
  color: #b91c1c;
  font-weight: 600;
  display: block;
  margin-bottom: 0.25rem;
}
.series-header .series-info h3 {
  font-size: 1.25rem;
  margin: 0 0 0.25rem;
  color: #0f172a;
}
@media (max-width: 768px) {
  .series-header .series-info h3 {
    font-size: 1rem;
  }
}
.series-header .series-info .series-count {
  font-size: 0.75rem;
  color: #94a3b8;
}
.series-header .series-arrow {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: transform 0.3s ease;
}
.series-header.active .series-arrow {
  transform: rotate(180deg);
}

.series-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  border-top: 1px solid transparent;
  background: #f8fafc;
}
.series-content.open {
  max-height: 800px;
  transition: max-height 0.5s ease-in;
  border-top-color: #e2e8f0;
}

.sermon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.sermon-item:last-child {
  border-bottom: none;
}
.sermon-item .sermon-details {
  flex: 2;
}
.sermon-item .sermon-details h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
@media (max-width: 768px) {
  .sermon-item .sermon-details h4 {
    font-size: 0.875rem;
  }
}
.sermon-item .sermon-details .sermon-preacher {
  font-size: 0.875rem;
  color: #94a3b8;
  margin: 0;
}
.sermon-item .sermon-details .sermon-duration {
  font-size: 0.75rem;
  color: #b91c1c;
  margin-top: 0.25rem;
}
.sermon-item .sermon-player {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 250px;
}
.sermon-item .sermon-player audio {
  width: 100%;
  height: 40px;
  border-radius: 0.5rem;
}
.sermon-item .sermon-player .download-btn {
  color: #475569;
  text-decoration: none;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}
.sermon-item .sermon-player .download-btn:hover {
  color: #b91c1c;
}

@media (max-width: 768px) {
  .sermon-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .sermon-item .sermon-player {
    width: 100%;
  }
}
.audio-series {
  display: block;
}
.audio-series.hidden {
  display: none;
}

.video-sermons-section {
  background: #ffffff;
  padding: 6rem 0;
}

.video-sermons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .video-sermons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .video-sermons-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.video-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.video-card:hover .video-thumbnail .play-video-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-card .video-thumbnail {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.video-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-card .video-thumbnail .play-video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(185, 28, 28, 0.9);
  border: none;
  border-radius: 9999px;
  font-size: 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}
.video-card .video-thumbnail .play-video-btn:hover {
  background: #b91c1c;
  transform: translate(-50%, -50%) scale(1.2);
}
@media (max-width: 768px) {
  .video-card .video-thumbnail .play-video-btn {
    opacity: 1;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
.video-card .video-thumbnail .video-duration {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: #ffffff;
  padding: 2px 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}
.video-card .video-thumbnail:hover img {
  transform: scale(1.05);
}
.video-card .video-info {
  padding: 1rem;
}
.video-card .video-info h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
  line-height: 1.4;
}
.video-card .video-info .video-preacher {
  font-size: 0.875rem;
  color: #b91c1c;
  margin-bottom: 0.25rem;
}
.video-card .video-info .video-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.video-modal.active {
  display: flex;
}
.video-modal .video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  background: #0f172a;
  border-radius: 0.75rem;
  overflow: hidden;
}
.video-modal .video-modal-content .modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}
.video-modal .video-modal-content .modal-close:hover {
  color: #b91c1c;
}
.video-modal .video-modal-content .modal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-modal .video-modal-content .modal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal .video-modal-content .modal-info {
  padding: 1rem;
}
.video-modal .video-modal-content .modal-info h3 {
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.video-modal .video-modal-content .modal-info p {
  color: #94a3b8;
}

.video-card {
  display: block;
}
.video-card.hidden {
  display: none;
}

.event-filters-section {
  background: #ffffff;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 9;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.event-filters {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.event-filters .filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 9999px;
}
.event-filters .filter-btn:hover {
  color: #b91c1c;
}
.event-filters .filter-btn.active {
  background: #b91c1c;
  color: #ffffff;
}
@media (max-width: 768px) {
  .event-filters .filter-btn {
    padding: 0.25rem 1.5rem;
    font-size: 0.75rem;
  }
}

.event-details-section {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}
.event-details-section.active {
  display: flex;
}

.event-details-wrapper {
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 1rem;
  position: relative;
  animation: slideUp 0.3s ease;
}
.event-details-wrapper::-webkit-scrollbar {
  width: 5px;
}
.event-details-wrapper::-webkit-scrollbar-track {
  background: #e2e8f0;
}
.event-details-wrapper::-webkit-scrollbar-thumb {
  background: #b91c1c;
  border-radius: 9999px;
}

.event-details-content {
  position: relative;
}
.event-details-content .close-details {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.event-details-content .close-details img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}
.event-details-content .close-details:hover {
  background: #b91c1c;
}

.event-details-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.event-details-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-details-info {
  padding: 2rem;
}
.event-details-info .event-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.event-details-info h2 {
  font-size: 1.875rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
.event-details-info .event-datetime {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.event-details-info .event-datetime .datetime-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.event-details-info .event-datetime .datetime-item img {
  width: 20px;
  height: 20px;
}
.event-details-info .event-datetime .datetime-item span {
  font-size: 0.875rem;
  color: #475569;
}
.event-details-info .event-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.event-details-info .event-details-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.event-details-info .event-details-actions .add-to-calendar-btn,
.event-details-info .event-details-actions .share-event-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.event-details-info .event-details-actions .add-to-calendar-btn img,
.event-details-info .event-details-actions .share-event-btn img {
  width: 18px;
  height: 18px;
}
.event-details-info .event-details-actions .add-to-calendar-btn {
  background: #b91c1c;
  border: none;
  color: #ffffff;
}
.event-details-info .event-details-actions .add-to-calendar-btn img {
  filter: brightness(0) invert(1);
}
.event-details-info .event-details-actions .add-to-calendar-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
}
.event-details-info .event-details-actions .share-event-btn {
  background: transparent;
  border: 2px solid #cbd5e1;
  color: #0f172a;
}
.event-details-info .event-details-actions .share-event-btn:hover {
  border-color: #b91c1c;
  background: rgba(185, 28, 28, 0.05);
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.upcoming-events-section {
  background: #ffffff;
  padding: 6rem 0;
}

.upcoming-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .upcoming-events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .upcoming-events-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 350px;
  }
}

.event-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}
.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.event-card:hover .event-card-image img {
  transform: scale(1.05);
}
.event-card:hover .learn-more {
  color: #b91c1c;
  gap: 1rem;
}
.event-card:hover .learn-more::after {
  transform: translateX(5px);
}
.event-card .event-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #1e293b;
}
.event-card .event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.event-card .event-card-image .event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #b91c1c;
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 60px;
  z-index: 2;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.event-card .event-card-image .event-date-badge .badge-day {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}
.event-card .event-card-image .event-date-badge .badge-month {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.event-card .event-card-image .event-category-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  text-transform: uppercase;
  z-index: 2;
}
.event-card .event-card-content {
  padding: 1.5rem;
}
.event-card .event-card-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.4;
}
.event-card .event-card-content .event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.event-card .event-card-content .event-card-time,
.event-card .event-card-content .event-card-location {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.event-card .event-card-content .event-card-time img,
.event-card .event-card-content .event-card-location img {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}
.event-card .event-card-content .event-card-time span,
.event-card .event-card-content .event-card-location span {
  font-size: 0.75rem;
  color: #94a3b8;
}
.event-card .event-card-content .event-description {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin: 1rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-card .event-card-content .event-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.event-card .event-card-content .event-card-footer .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.event-card .event-card-content .event-card-footer .learn-more::after {
  content: "→";
  transition: transform 0.3s ease;
}

.wedding-announcement-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .wedding-announcement-section {
    min-height: 450px;
  }
}

.wedding-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.wedding-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wedding-bg-image .wedding-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.wedding-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
  padding: 6rem 0;
}
.wedding-content .wedding-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.9);
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.wedding-content h2 {
  font-size: 3.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .wedding-content h2 {
    font-size: 2.25rem;
  }
}
.wedding-content .wedding-date {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.9);
}
.wedding-content .wedding-location {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.wedding-content .wedding-message {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.85);
}
.wedding-content .wedding-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.wedding-content .wedding-buttons .btn-outline-light {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}
.wedding-content .wedding-buttons .btn-outline-light:hover {
  background: #ffffff;
  color: #b91c1c;
}

.scrollable-events-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.scrollable-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.scrollable-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem;
  scrollbar-width: thin;
}
.scrollable-wrapper::-webkit-scrollbar {
  height: 8px;
}
.scrollable-wrapper::-webkit-scrollbar-track {
  background: #e2e8f0;
  border-radius: 9999px;
}
.scrollable-wrapper::-webkit-scrollbar-thumb {
  background: #b91c1c;
  border-radius: 9999px;
}

.scrollable-event-card {
  flex: 0 0 300px;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.scrollable-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.scrollable-event-card .scrollable-event-image {
  position: relative;
  height: 160px;
}
.scrollable-event-card .scrollable-event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrollable-event-card .scrollable-event-image .scrollable-date {
  position: absolute;
  bottom: 0.5rem;
  right: 0.5rem;
  background: #b91c1c;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
}
.scrollable-event-card .scrollable-event-content {
  padding: 1rem;
}
.scrollable-event-card .scrollable-event-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
.scrollable-event-card .scrollable-event-content .scrollable-time {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.scrollable-event-card .scrollable-event-content .scrollable-time img {
  width: 12px;
  height: 12px;
}
.scrollable-event-card .scrollable-event-content .scrollable-location {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.scrollable-event-card .scrollable-event-content .scrollable-location img {
  width: 12px;
  height: 12px;
}

.scroll-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.scroll-buttons .scroll-btn {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-buttons .scroll-btn img {
  width: 20px;
  height: 20px;
}
.scroll-buttons .scroll-btn:hover {
  background: #b91c1c;
  border-color: #b91c1c;
}
.scroll-buttons .scroll-btn:hover img {
  filter: brightness(0) invert(1);
}

.event-details-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.event-details-modal.active {
  display: flex;
}

.modal-container {
  position: relative;
  max-width: 650px;
  width: 90%;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #ffffff;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close-btn:hover {
  background: #b91c1c;
}

.modal-image {
  width: 100%;
  height: 220px;
}
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content {
  padding: 2rem;
}
.modal-content .modal-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}
.modal-content h2 {
  font-size: 1.875rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .modal-content h2 {
    font-size: 1.5rem;
  }
}
.modal-content .modal-datetime {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.modal-content .modal-datetime .modal-date-item,
.modal-content .modal-datetime .modal-time-item,
.modal-content .modal-datetime .modal-location-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-content .modal-datetime .modal-date-item img,
.modal-content .modal-datetime .modal-time-item img,
.modal-content .modal-datetime .modal-location-item img {
  width: 18px;
  height: 18px;
}
.modal-content .modal-datetime .modal-date-item span,
.modal-content .modal-datetime .modal-time-item span,
.modal-content .modal-datetime .modal-location-item span {
  font-size: 0.875rem;
  color: #475569;
}
.modal-content .modal-description {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.modal-content .modal-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.modal-content .modal-actions .modal-add-btn,
.modal-content .modal-actions .modal-share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.modal-content .modal-actions .modal-add-btn img,
.modal-content .modal-actions .modal-share-btn img {
  width: 18px;
  height: 18px;
}
.modal-content .modal-actions .modal-add-btn {
  background: #b91c1c;
  border: none;
  color: #ffffff;
}
.modal-content .modal-actions .modal-add-btn img {
  filter: brightness(0) invert(1);
}
.modal-content .modal-actions .modal-add-btn:hover {
  background: #991b1b;
  transform: translateY(-2px);
}
.modal-content .modal-actions .modal-share-btn {
  background: transparent;
  border: 2px solid #cbd5e1;
  color: #0f172a;
}
.modal-content .modal-actions .modal-share-btn:hover {
  border-color: #b91c1c;
  background: rgba(185, 28, 28, 0.05);
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.modal-category.no-event {
  background: #f3f4f6 !important;
  color: #6b7280 !important;
}

.modal-add-btn.hidden,
.modal-share-btn.hidden {
  display: none;
}

.no-events-message {
  text-align: center;
  padding: 4rem;
  color: #94a3b8;
  font-size: 1rem;
  width: 100%;
}

.recurring-section {
  background: #ffffff;
  padding: 6rem 0;
}

.recurring-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .recurring-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .recurring-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 320px;
  }
}

.recurring-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}
.recurring-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border-color: #b91c1c;
}
.recurring-card .recurring-icon {
  margin-bottom: 1rem;
}
.recurring-card .recurring-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.recurring-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
}
.recurring-card .recurring-time {
  font-size: 1rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 0.25rem;
}
.recurring-card .recurring-desc {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1.5rem;
}
.recurring-card .add-to-calendar-recurring {
  background: transparent;
  border: 2px solid #b91c1c;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
  cursor: pointer;
  transition: all 0.3s ease;
}
.recurring-card .add-to-calendar-recurring:hover {
  background: #b91c1c;
  color: #ffffff;
}

.announcement-banner-section {
  background: linear-gradient(135deg, #0f172a 0%, rgb(10.9736842105, 16.8263157895, 30.7263157895) 100%);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.announcement-banner-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.announcement-banner-section::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .announcement-banner-section {
    padding: 3rem 0;
  }
}
.announcement-banner-section .container {
  position: relative;
  z-index: 2;
}
.announcement-banner-section .announcement-banner-content {
  max-width: 700px;
  margin: 0 auto;
}
.announcement-banner-section .announcement-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .announcement-banner-section .announcement-tag {
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
  }
}
.announcement-banner-section h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.02em;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .announcement-banner-section h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .announcement-banner-section h1 {
    font-size: 1.875rem;
  }
}
.announcement-banner-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .announcement-banner-section p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}

.announcements-carousel-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.announcements-carousel-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 1rem;
}

.announcements-carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease;
}

.announcement-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .announcement-slide {
    grid-template-columns: 1fr;
  }
}
.announcement-slide .announcement-slide-image {
  position: relative;
  height: 100%;
  min-height: 300px;
}
.announcement-slide .announcement-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.announcement-slide .announcement-slide-image .announcement-overlay {
  display: none;
}
.announcement-slide .announcement-slide-content {
  padding: 3rem;
}
@media (max-width: 768px) {
  .announcement-slide .announcement-slide-content {
    padding: 2rem;
  }
}
.announcement-slide .announcement-slide-content .announcement-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.announcement-slide .announcement-slide-content .announcement-category.wedding {
  background: rgba(233, 30, 99, 0.1);
  color: #e91e63;
}
.announcement-slide .announcement-slide-content .announcement-category.service {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}
.announcement-slide .announcement-slide-content .announcement-category.special {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.announcement-slide .announcement-slide-content .announcement-category.conference {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.announcement-slide .announcement-slide-content .announcement-category.youth {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.announcement-slide .announcement-slide-content h3 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .announcement-slide .announcement-slide-content h3 {
    font-size: 1.5rem;
  }
}
.announcement-slide .announcement-slide-content .announcement-date {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}
.announcement-slide .announcement-slide-content .announcement-desc {
  font-size: 1rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: #ffffff;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1.5rem;
  color: #b91c1c;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  z-index: 10;
}
.carousel-nav:hover {
  background: #b91c1c;
  color: #ffffff;
}
.carousel-nav.prev-announcement {
  left: -20px;
}
@media (max-width: 768px) {
  .carousel-nav.prev-announcement {
    left: 10px;
  }
}
.carousel-nav.next-announcement {
  right: -20px;
}
@media (max-width: 768px) {
  .carousel-nav.next-announcement {
    right: 10px;
  }
}

.carousel-dots-announcement {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dots-announcement .dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.3s ease;
}
.carousel-dots-announcement .dot.active {
  background: #b91c1c;
  width: 24px;
}

.calendar-section {
  background: #ffffff;
  padding: 6rem 0;
}

.calendar-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}
@media (max-width: 768px) {
  .calendar-wrapper {
    padding: 1rem;
  }
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
.calendar-header h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin: 0;
}
.calendar-header .calendar-nav-btn {
  background: #f1f5f9;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.calendar-header .calendar-nav-btn:hover {
  background: #b91c1c;
  color: #ffffff;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
}
.calendar-weekdays span {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.875rem;
  padding: 0.25rem;
}

.calendar-days-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}
.calendar-days-grid .calendar-day {
  text-align: center;
  padding: 1rem 0.25rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.875rem;
  color: #475569;
  position: relative;
}
@media (max-width: 768px) {
  .calendar-days-grid .calendar-day {
    padding: 0.5rem 0.25rem;
  }
}
.calendar-days-grid .calendar-day:hover {
  background: rgba(185, 28, 28, 0.1);
}
.calendar-days-grid .calendar-day.other-month {
  color: #94a3b8;
  opacity: 0.5;
}
.calendar-days-grid .calendar-day.has-event {
  font-weight: 700;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}
.calendar-days-grid .calendar-day.has-event::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  background: #b91c1c;
  border-radius: 9999px;
}
.calendar-days-grid .calendar-day.today {
  background: #b91c1c;
  color: #ffffff;
}
.calendar-days-grid .calendar-day.today::after {
  background: #ffffff;
}
.calendar-days-grid .calendar-day.selected {
  background: #b91c1c;
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(185, 28, 28, 0.3);
}

.upcoming-events-list-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.scrollable-events-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.scrollable-events-wrapper {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0 2rem;
  scrollbar-width: none;
}
.scrollable-events-wrapper::-webkit-scrollbar {
  display: none;
}

.scrollable-event-card {
  flex: 0 0 320px;
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.scrollable-event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.scrollable-event-card .event-card-image {
  position: relative;
  height: 180px;
}
.scrollable-event-card .event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrollable-event-card .event-card-image .event-date-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #b91c1c;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.scrollable-event-card .event-card-content {
  padding: 1rem;
}
.scrollable-event-card .event-card-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
.scrollable-event-card .event-card-content .event-time, .scrollable-event-card .event-card-content .event-location {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}
.scrollable-event-card .event-card-content .event-time img, .scrollable-event-card .event-card-content .event-location img {
  width: 12px;
  height: 12px;
}
.scrollable-event-card .event-card-content .event-description {
  font-size: 0.75rem;
  color: #475569;
  margin: 0.5rem 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.scrollable-event-card .event-card-content .view-details {
  font-size: 0.75rem;
  color: #b91c1c;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.scrollable-event-card .event-card-content .view-details:hover {
  gap: 0.5rem;
}

.scroll-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.scroll-controls .scroll-control {
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  cursor: pointer;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}
.scroll-controls .scroll-control:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #ffffff;
}

.weekly-services-section {
  background: #ffffff;
  padding: 6rem 0;
}
@media (max-width: 768px) {
  .weekly-services-section {
    padding: 3rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.section-header h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.875rem;
  }
}
.section-header .section-divider {
  width: 60px;
  height: 3px;
  background: #b91c1c;
  margin: 0 auto 1rem;
  border-radius: 9999px;
}
.section-header .section-subtitle {
  font-size: 1.125rem;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-header .section-subtitle {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

.weekly-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .weekly-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 700px;
  }
}
@media (max-width: 768px) {
  .weekly-services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 350px;
  }
}

.service-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
@media (max-width: 768px) {
  .service-card {
    padding: 1.5rem;
  }
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #b91c1c;
}
.service-card .service-icon {
  margin-bottom: 1rem;
}
.service-card .service-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.service-card .service-icon:hover img {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .service-card .service-icon {
    margin-bottom: 0.5rem;
  }
  .service-card .service-icon img {
    width: 50px;
    height: 50px;
  }
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-weight: 700;
}
@media (max-width: 768px) {
  .service-card h3 {
    font-size: 1rem;
  }
}
.service-card .service-time {
  font-size: 1rem;
  font-weight: 700;
  color: #b91c1c;
  margin-bottom: 0.25rem;
}
@media (max-width: 768px) {
  .service-card .service-time {
    font-size: 0.875rem;
  }
}
.service-card .service-desc {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .service-card .service-desc {
    font-size: 0.75rem;
    margin-bottom: 1rem;
  }
}
.service-card .btn-add-recurring {
  background: transparent;
  border: 2px solid #b91c1c;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
  width: auto;
  min-width: 160px;
}
@media (max-width: 768px) {
  .service-card .btn-add-recurring {
    padding: 0.25rem 1.5rem;
    font-size: 0.75rem;
    min-width: 140px;
  }
}
.service-card .btn-add-recurring:hover {
  background: #b91c1c;
  color: #ffffff;
  transform: translateY(-2px);
}
.service-card .btn-add-recurring:active {
  transform: translateY(0);
}

.service-card {
  animation: fadeInUp 0.6s ease backwards;
}
.service-card:nth-child(1) {
  animation-delay: 0.1s;
}
.service-card:nth-child(2) {
  animation-delay: 0.2s;
}
.service-card:nth-child(3) {
  animation-delay: 0.3s;
}
.service-card:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testimonies-hero {
  background: #0f172a;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonies-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.testimonies-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 768px) {
  .testimonies-hero {
    padding: 4rem 0;
  }
}
.testimonies-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.testimonies-hero .hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
}
@media (max-width: 768px) {
  .testimonies-hero .hero-tag {
    font-size: 0.75rem;
  }
}
.testimonies-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .testimonies-hero h1 {
    font-size: 2.25rem;
  }
}
@media (max-width: 768px) {
  .testimonies-hero h1 {
    font-size: 1.875rem;
  }
}
.testimonies-hero .hero-text {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 550px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .testimonies-hero .hero-text {
    font-size: 1rem;
  }
}

.featured-video-section {
  background: #ffffff;
  padding: 6rem 0;
}

.featured-video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.featured-video-wrapper .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.featured-video-wrapper .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.featured-video-wrapper .video-caption {
  text-align: center;
  margin-top: 1.5rem;
}
.featured-video-wrapper .video-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
.featured-video-wrapper .video-caption p {
  font-size: 0.875rem;
  color: #475569;
}

.video-testimonies-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.video-testimonies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .video-testimonies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .video-testimonies-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 350px;
  }
}

.video-testimony-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.video-testimony-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.video-testimony-card:hover .video-thumbnail .play-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}
.video-testimony-card .video-thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.video-testimony-card .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.video-testimony-card .video-thumbnail .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(185, 28, 28, 0.9);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.video-testimony-card .video-thumbnail .play-icon::before {
  content: "▶";
  margin-left: 4px;
}
.video-testimony-card .video-thumbnail:hover img {
  transform: scale(1.05);
}
.video-testimony-card .video-info {
  padding: 1rem;
}
.video-testimony-card .video-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
.video-testimony-card .video-info p {
  font-size: 0.75rem;
  color: #94a3b8;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.video-modal.active {
  display: flex;
}
.video-modal .video-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background: #0f172a;
  border-radius: 0.75rem;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
}
.video-modal .video-modal-content .modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
}
.video-modal .video-modal-content .modal-close:hover {
  color: #b91c1c;
}
.video-modal .video-modal-content .modal-video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.video-modal .video-modal-content .modal-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-modal .video-modal-content .modal-info {
  padding: 1rem;
}
.video-modal .video-modal-content .modal-info h3 {
  color: #ffffff;
  margin-bottom: 0.25rem;
}
.video-modal .video-modal-content .modal-info p {
  color: #94a3b8;
  font-size: 0.875rem;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.written-testimonies-section {
  background: #ffffff;
  padding: 6rem 0;
}

.testimonies-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.testimonies-filters .filter-btn {
  background: transparent;
  border: none;
  padding: 0.25rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 9999px;
}
.testimonies-filters .filter-btn:hover {
  color: #b91c1c;
}
.testimonies-filters .filter-btn.active {
  background: #b91c1c;
  color: #ffffff;
}
@media (max-width: 768px) {
  .testimonies-filters .filter-btn {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
  }
}

.testimonies-masonry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .testimonies-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .testimonies-masonry-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 380px;
  }
}

.testimony-card {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #f1f5f9;
  animation: fadeInUp 0.6s ease backwards;
}
.testimony-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #b91c1c;
}
.testimony-card .testimony-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimony-card .testimony-category.healing {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
}
.testimony-card .testimony-category.financial {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.testimony-card .testimony-category.family {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.testimony-card .testimony-category.deliverance {
  background: rgba(139, 92, 246, 0.1);
  color: #8b5cf6;
}
.testimony-card .testimony-category.other {
  background: rgba(107, 114, 128, 0.1);
  color: #6b7280;
}
.testimony-card .testimony-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 700;
  line-height: 1.4;
}
.testimony-card .testimony-content {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.testimony-card .testimony-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid #f1f5f9;
}
.testimony-card .testimony-author .author-name {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.875rem;
}
.testimony-card .testimony-author .testimony-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.load-more-container {
  text-align: center;
  margin-top: 4rem;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.submit-testimony-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.submit-testimony-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 1rem;
  padding: 4rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .submit-testimony-wrapper {
    padding: 2rem;
  }
}

.submit-testimony-content {
  text-align: center;
  margin-bottom: 3rem;
}
.submit-testimony-content .section-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}
.submit-testimony-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
}
@media (max-width: 768px) {
  .submit-testimony-content h2 {
    font-size: 1.875rem;
  }
}
.submit-testimony-content .section-divider {
  width: 60px;
  height: 3px;
  background: #b91c1c;
  margin: 0 auto 1rem;
  border-radius: 9999px;
}
.submit-testimony-content p {
  font-size: 1rem;
  color: #475569;
  margin-bottom: 1.5rem;
}
.submit-testimony-content .testimony-note {
  background: rgba(185, 28, 28, 0.05);
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
  text-align: left;
  border-left: 3px solid #b91c1c;
}
.submit-testimony-content .testimony-note strong {
  color: #b91c1c;
}

.testimony-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .testimony-form .form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.testimony-form .form-group {
  margin-bottom: 1rem;
}
.testimony-form .form-group input, .testimony-form .form-group select, .testimony-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-family: inherit;
  transition: all 0.3s ease;
}
.testimony-form .form-group input:focus, .testimony-form .form-group select:focus, .testimony-form .form-group textarea:focus {
  outline: none;
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
.testimony-form .form-group textarea {
  resize: vertical;
}
.testimony-form .form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.testimony-form .form-checkbox input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}
.testimony-form .form-checkbox label {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  cursor: pointer;
}
.testimony-form .btn-block {
  width: 100%;
}

.news-grid-section {
  background: #ffffff;
  padding: 6rem 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 380px;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.news-card:hover .news-image img {
  transform: scale(1.05);
}
.news-card .news-image {
  height: 220px;
  overflow: hidden;
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.news-card .news-content {
  padding: 1.5rem;
}
.news-card .news-content .news-category {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.news-card .news-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
  line-height: 1.4;
}
.news-card .news-content .news-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: #94a3b8;
}
.news-card .news-content .news-excerpt {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pagination-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  flex-wrap: wrap;
}
.pagination-container .page-btn {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-container .page-btn:hover:not(:disabled) {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #ffffff;
}
.pagination-container .page-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.pagination-container .page-numbers {
  display: flex;
  gap: 0.5rem;
}
.pagination-container .page-numbers .page-num {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.pagination-container .page-numbers .page-num:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #ffffff;
}
.pagination-container .page-numbers .page-num.active {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #ffffff;
}

.featured-news-section {
  background: #ffffff;
  padding: 6rem 0;
}

.featured-news-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.featured-news-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .featured-news-card {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.featured-news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.featured-news-card .featured-image {
  height: 100%;
  min-height: 350px;
}
.featured-news-card .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-news-card .featured-content {
  padding: 2rem;
}
.featured-news-card .featured-content .featured-category {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.featured-news-card .featured-content h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #0f172a;
}
@media (max-width: 768px) {
  .featured-news-card .featured-content h2 {
    font-size: 1.5rem;
  }
}
.featured-news-card .featured-content .featured-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
}
.featured-news-card .featured-content .featured-excerpt {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.featured-news-card .featured-content .read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #b91c1c;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
}
.featured-news-card .featured-content .read-more:hover {
  gap: 1rem;
}

.news-filters-section {
  background: #f8fafc;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 9;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.news-filters {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.news-filters .filter-btn {
  background: none;
  border: none;
  padding: 0.5rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 9999px;
}
.news-filters .filter-btn:hover {
  color: #b91c1c;
}
.news-filters .filter-btn.active {
  background: #b91c1c;
  color: #ffffff;
}
@media (max-width: 768px) {
  .news-filters .filter-btn {
    padding: 0.25rem 1.5rem;
    font-size: 0.75rem;
  }
}

.news-hero {
  background: #ffffff;
  padding: 4rem 0;
  width: 100%;
}
@media (max-width: 768px) {
  .news-hero {
    padding: 2rem 0;
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.hero-main {
  width: 100%;
}
.hero-main .hero-main-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  background: #1e293b;
  display: block;
  height: 480px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 1024px) {
  .hero-main .hero-main-card {
    height: 520px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-main .hero-main-card {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .hero-main .hero-main-card {
    height: auto;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}
.hero-main .hero-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
@media (max-width: 768px) {
  .hero-main .hero-main-card img {
    height: 220px;
  }
}
.hero-main .hero-main-card:hover img {
  transform: scale(1.03);
}
.hero-main .hero-main-card .hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
  padding: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-main .hero-main-card .hero-overlay {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-main .hero-main-card .hero-overlay {
    position: relative;
    background: #ffffff;
    padding: 1.5rem;
  }
}
.hero-main .hero-main-card .hero-overlay .hero-category {
  display: inline-block;
  background: #b91c1c;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hero-main .hero-main-card .hero-overlay .hero-category {
    background: rgba(185, 28, 28, 0.1);
    color: #b91c1c;
  }
}
.hero-main .hero-main-card .hero-overlay h2 {
  color: #ffffff;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-main .hero-main-card .hero-overlay h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .hero-main .hero-main-card .hero-overlay h2 {
    color: #0f172a;
    font-size: 1.25rem;
  }
}
.hero-main .hero-main-card .hero-overlay .hero-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-main .hero-main-card .hero-overlay .hero-meta {
    color: #94a3b8;
    font-size: 0.75rem;
  }
}
.hero-main .hero-main-card .hero-overlay .hero-excerpt {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-main .hero-main-card .hero-overlay .hero-excerpt {
    color: #475569;
    -webkit-line-clamp: 3;
    margin-top: 0.5rem;
  }
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-side {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
}
.hero-side .hero-side-card {
  display: flex;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-side .hero-side-card {
    flex-direction: column;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}
@media (max-width: 768px) {
  .hero-side .hero-side-card {
    flex-direction: row;
    background: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}
.hero-side .hero-side-card:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-side .hero-side-card:hover {
    transform: translateY(-4px);
    translateX: 0;
  }
}
.hero-side .hero-side-card:hover .side-image img {
  transform: scale(1.05);
}
.hero-side .hero-side-card .side-image {
  width: 130px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-side .hero-side-card .side-image {
    width: 100%;
    height: 150px;
  }
}
@media (max-width: 768px) {
  .hero-side .hero-side-card .side-image {
    width: 100px;
  }
}
.hero-side .hero-side-card .side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-side .hero-side-card .side-image img {
    aspect-ratio: 16/9;
  }
}
.hero-side .hero-side-card .side-content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-side .hero-side-card .side-content {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-side .hero-side-card .side-content {
    padding: 0.5rem;
  }
}
.hero-side .hero-side-card .side-content .side-category {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  align-self: flex-start;
}
.hero-side .hero-side-card .side-content h3 {
  font-size: 1rem;
  margin: 0.25rem 0;
  color: #0f172a;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-side .hero-side-card .side-content h3 {
    font-size: 1rem;
    margin: 0.5rem 0;
  }
}
@media (max-width: 768px) {
  .hero-side .hero-side-card .side-content h3 {
    font-size: 0.875rem;
  }
}
.hero-side .hero-side-card .side-content .side-date {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.side-date {
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.25rem;
}
.side-date .icon-calendar {
  width: 12px;
  height: 12px;
  display: inline-block;
}

.news-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
@media (max-width: 768px) {
  .news-modal {
    padding: 0.25rem;
  }
}
.news-modal.active {
  display: flex;
}

.news-modal-content {
  position: relative;
  max-width: 750px;
  width: 100%;
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  animation: modalFadeIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-modal-content {
    max-width: 90%;
  }
}
@media (max-width: 768px) {
  .news-modal-content {
    max-height: 95vh;
    border-radius: 0.75rem;
    max-width: 95%;
  }
}
.news-modal-content .modal-close {
  position: sticky;
  top: 1rem;
  right: 1rem;
  float: right;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 9999px;
  font-size: 1.6rem;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  margin: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-modal-content .modal-close:hover {
  background: #b91c1c;
}
@media (max-width: 768px) {
  .news-modal-content .modal-close {
    width: 36px;
    height: 36px;
    font-size: 1.4rem;
    margin: 0.5rem;
  }
}
.news-modal-content .modal-image {
  width: 100%;
  height: 280px;
  clear: both;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-modal-content .modal-image {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .news-modal-content .modal-image {
    height: 200px;
  }
}
.news-modal-content .modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-modal-content .modal-body {
  padding: 2rem;
  clear: both;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-modal-content .modal-body {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news-modal-content .modal-body {
    padding: 1rem;
  }
}
.news-modal-content .modal-body .modal-category {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.news-modal-content .modal-body h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #0f172a;
  line-height: 1.3;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-modal-content .modal-body h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news-modal-content .modal-body h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
}
.news-modal-content .modal-body .modal-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.news-modal-content .modal-body p {
  font-size: 1rem;
  color: #475569;
  line-height: 1.7;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-modal-content .modal-body p {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .news-modal-content .modal-body p {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.breaking-news-section {
  background: #0f172a;
  border-bottom: 1px solid rgba(185, 28, 28, 0.3);
}

.breaking-news-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
}
@media (max-width: 768px) {
  .breaking-news-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.25rem 0;
    display: none;
  }
}

.breaking-label {
  background: #b91c1c;
  padding: 0.25rem 1rem;
  border-radius: 0.25rem;
  flex-shrink: 0;
  text-align: center;
}
.breaking-label span {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.breaking-ticker {
  flex: 1;
  overflow: hidden;
}
@media (max-width: 768px) {
  .breaking-ticker {
    overflow-x: auto;
  }
  .breaking-ticker::-webkit-scrollbar {
    display: none;
  }
}
.breaking-ticker .ticker-content {
  display: flex;
  gap: 4rem;
  animation: ticker 30s linear infinite;
}
@media (max-width: 768px) {
  .breaking-ticker .ticker-content {
    flex-direction: column;
    animation: none;
    gap: 0.25rem;
  }
}
.breaking-ticker .ticker-content span {
  display: inline-block;
  color: #cbd5e1;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .breaking-ticker .ticker-content span {
    white-space: normal;
    display: block;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.breaking-ticker .ticker-content span::before {
  content: "●";
  color: #b91c1c;
  margin-right: 0.5rem;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-45%);
  }
}
.news-categories-section {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 70px;
  z-index: 9;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .news-categories-section {
    top: 60px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .news-categories-section::-webkit-scrollbar {
    display: none;
  }
}

.category-tabs {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .category-tabs {
    flex-wrap: nowrap;
    padding: 0.5rem 0;
    gap: 0.25rem;
    overflow-x: auto;
  }
  .category-tabs::-webkit-scrollbar {
    display: none;
  }
}
.category-tabs .category-tab {
  background: none;
  border: none;
  padding: 0.5rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 9999px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .category-tabs .category-tab {
    padding: 0.25rem 1.5rem;
    font-size: 0.75rem;
  }
}
.category-tabs .category-tab:hover {
  color: #b91c1c;
}
.category-tabs .category-tab.active {
  background: #b91c1c;
  color: #ffffff;
}

.main-news-section {
  background: #f8fafc;
  padding: 6rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .main-news-section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .main-news-section {
    padding: 3rem 0;
  }
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .news-layout {
    gap: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .news-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.news-main-column {
  min-width: 0;
}
.news-main-column .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .news-main-column .section-header {
    margin-bottom: 1.5rem;
  }
}
.news-main-column .section-header h2 {
  font-size: 1.5rem;
  color: #0f172a;
  margin: 0;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-main-column .section-header h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .news-main-column .section-header h2 {
    font-size: 1.25rem;
  }
}
.news-main-column .section-header .header-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, #b91c1c, transparent);
  margin-left: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .news-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-grid {
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.news-card {
  background: #ffffff;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.news-card:hover .news-image img {
  transform: scale(1.05);
}
.news-card .news-image {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-card .news-image {
    height: 180px;
  }
}
@media (max-width: 768px) {
  .news-card .news-image {
    height: 200px;
  }
}
.news-card .news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card .news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .news-card .news-content {
    padding: 1rem;
  }
}
.news-card .news-content .news-category {
  display: inline-block;
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}
.news-card .news-content h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
  line-height: 1.2;
  font-weight: 600;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-card .news-content h3 {
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .news-card .news-content h3 {
    font-size: 1rem;
  }
}
.news-card .news-content .news-meta {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.news-card .news-content .news-excerpt {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}

.load-more-container {
  text-align: center;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .load-more-container {
    margin-top: 2rem;
  }
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .news-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

.sidebar-widget {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sidebar-widget {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .sidebar-widget {
    padding: 1.5rem;
  }
}
.sidebar-widget h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #b91c1c;
  display: inline-block;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .sidebar-widget h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .sidebar-widget h3 {
    font-size: 1rem;
  }
}

.search-widget .search-box {
  display: flex;
  gap: 0.5rem;
}
.search-widget .search-box input {
  flex: 1;
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.search-widget .search-box input:focus {
  outline: none;
  border-color: #b91c1c;
}
@media (max-width: 768px) {
  .search-widget .search-box input {
    padding: 0.25rem 1rem;
  }
}
.search-widget .search-box button {
  background: #b91c1c;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s;
}
.search-widget .search-box button:hover {
  background: #991b1b;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.recent-posts-list .recent-post-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
  cursor: pointer;
  transition: opacity 0.2s;
}
.recent-posts-list .recent-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.recent-posts-list .recent-post-item:hover {
  opacity: 0.8;
}
.recent-posts-list .recent-post-item .recent-image {
  width: 70px;
  height: 65px;
  flex-shrink: 0;
}
.recent-posts-list .recent-post-item .recent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.recent-posts-list .recent-post-item .recent-content {
  flex: 1;
}
.recent-posts-list .recent-post-item .recent-content h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .recent-posts-list .recent-post-item .recent-content h4 {
    font-size: 0.75rem;
  }
}
.recent-posts-list .recent-post-item .recent-content .recent-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.events-widget .events-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.events-widget .events-list .event-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}
.events-widget .events-list .event-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.events-widget .events-list .event-item .event-date {
  background: #b91c1c;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  min-width: 60px;
  height: fit-content;
}
.events-widget .events-list .event-item .event-info {
  flex: 1;
}
.events-widget .events-list .event-item .event-info h4 {
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: #0f172a;
}
@media (max-width: 768px) {
  .events-widget .events-list .event-item .event-info h4 {
    font-size: 0.75rem;
  }
}
.events-widget .events-list .event-item .event-info p {
  font-size: 0.75rem;
  color: #94a3b8;
}

.newsletter-widget {
  text-align: center;
}
.newsletter-widget p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
}
.newsletter-widget form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.newsletter-widget form input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.newsletter-widget form input:focus {
  outline: none;
  border-color: #b91c1c;
}
.newsletter-widget form button {
  width: 100%;
}

.contact-hero {
  background: #0f172a;
  padding: 6rem 0;
  text-align: center;
}
.contact-hero .hero-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.15);
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  color: #b91c1c;
  margin-bottom: 1rem;
}
.contact-hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.875rem;
  }
}
.contact-hero .hero-text {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-hero .hero-text {
    font-size: 1rem;
  }
}

.contact-info-section {
  padding: 6rem 0;
  background: #ffffff;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.info-card {
  text-align: center;
  padding: 2rem;
  background: #f8fafc;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.info-card .info-icon {
  width: 70px;
  height: 70px;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.info-card .info-icon img {
  width: 35px;
  height: 35px;
}
.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.info-card p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.info-card .info-link {
  color: #b91c1c;
  font-weight: 600;
  text-decoration: none;
}
.info-card .info-link:hover {
  text-decoration: underline;
}

.map-form-section {
  background: #f8fafc;
  padding: 6rem 0;
}

.map-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .map-form-grid {
    grid-template-columns: 1fr;
  }
}

.map-wrapper {
  height: 100%;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.map-wrapper iframe {
  width: 100%;
  min-height: 450px;
}
@media (max-width: 768px) {
  .map-wrapper iframe {
    min-height: 300px;
  }
}

.form-wrapper {
  background: #ffffff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.form-wrapper h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.prayer-lines-section {
  background: #0f172a;
  padding: 6rem 0;
  text-align: center;
}

.prayer-lines-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.prayer-lines-wrapper .prayer-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: inline-block;
}
.prayer-lines-wrapper h2 {
  font-size: 1.875rem;
  color: #ffffff;
  margin-bottom: 1rem;
}
.prayer-lines-wrapper p {
  color: #cbd5e1;
  margin-bottom: 2rem;
}

.prayer-numbers {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.prayer-numbers .prayer-number {
  background: rgba(185, 28, 28, 0.15);
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .prayer-numbers .prayer-number {
    font-size: 1rem;
    padding: 0.5rem 1.5rem;
  }
}

.prayer-note {
  font-size: 0.875rem;
  color: #94a3b8;
}

.social-connect-section {
  padding: 6rem 0;
  background: #ffffff;
  text-align: center;
}

.social-icons-large {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.social-icons-large .social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icons-large .social-icon img {
  width: 50px;
  height: 50px;
}
.social-icons-large .social-icon span {
  color: #475569;
  font-size: 0.875rem;
}
.social-icons-large .social-icon:hover {
  transform: translateY(-5px);
}
.social-icons-large .social-icon:hover span {
  color: #b91c1c;
}

.contact-hero {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
  background-image: url("../assets/images/pastor.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-hero {
    padding: 6rem 0;
  }
}
@media (max-width: 768px) {
  .contact-hero {
    padding: 4rem 0;
    background-image: url("../assets/images/pastor.png");
  }
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 0;
}
.contact-hero .container {
  position: relative;
  z-index: 1;
}
.contact-hero .hero-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.contact-hero .hero-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.9);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .contact-hero .hero-tag {
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
  }
}
.contact-hero h1 {
  font-size: 3.75rem;
  color: #ffffff;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-hero h1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .contact-hero h1 {
    font-size: 1.875rem;
  }
}
.contact-hero .hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-hero .hero-text {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .contact-hero .hero-text {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-hero .hero-tag, .contact-hero h1, .contact-hero .hero-text {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.contact-hero .hero-tag {
  animation-delay: 0.1s;
}
.contact-hero h1 {
  animation-delay: 0.2s;
}
.contact-hero .hero-text {
  animation-delay: 0.3s;
}

.contact-info-section {
  padding: 6rem 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .contact-info-section {
    padding: 3rem 0;
  }
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.info-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
}
.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(185, 28, 28, 0.2);
}
.info-card:hover .info-icon {
  background: #b91c1c;
  transform: scale(1.05);
}
.info-card:hover .info-icon img {
  filter: brightness(0) invert(1);
}
.info-card .info-icon {
  width: 70px;
  height: 70px;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}
.info-card .info-icon img {
  width: 32px;
  height: 32px;
  transition: all 0.3s ease;
}
.info-card h3 {
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .info-card h3 {
    font-size: 1.25rem;
  }
}
.info-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.info-card .info-link {
  display: inline-block;
  color: #b91c1c;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.info-card .info-link:hover {
  transform: translateX(5px);
  color: #991b1b;
}

.map-form-section {
  padding: 6rem 0;
  background: #f8fafc;
}
@media (max-width: 768px) {
  .map-form-section {
    padding: 2rem 0;
  }
}

.map-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .map-form-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .map-form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.map-column .map-wrapper {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  height: 100%;
  min-height: 450px;
  background: #e2e8f0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .map-column .map-wrapper {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .map-column .map-wrapper {
    min-height: 280px;
    border-radius: 0.75rem;
  }
}
.map-column .map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  display: block;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .map-column .map-wrapper iframe {
    min-height: 400px;
  }
}
@media (max-width: 768px) {
  .map-column .map-wrapper iframe {
    min-height: 280px;
  }
}

.form-column .form-wrapper {
  background: #ffffff;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .form-column .form-wrapper {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .form-column .form-wrapper {
    padding: 1.5rem;
    border-radius: 0.75rem;
  }
}
.form-column .form-wrapper h2 {
  font-size: 1.875rem;
  color: #0f172a;
  margin-bottom: 2rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.5rem;
}
.form-column .form-wrapper h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #b91c1c;
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .form-column .form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .form-column .form-wrapper h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

#contactForm .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #contactForm .form-row {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  #contactForm .form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }
}
#contactForm .form-group {
  margin-bottom: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  #contactForm .form-group {
    margin-bottom: 0.5rem;
  }
}
#contactForm .form-group input, #contactForm .form-group select, #contactForm .form-group textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  transition: all 0.3s ease;
  background: #ffffff;
  box-sizing: border-box;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #contactForm .form-group input, #contactForm .form-group select, #contactForm .form-group textarea {
    padding: 1rem 1.5rem;
  }
}
@media (max-width: 768px) {
  #contactForm .form-group input, #contactForm .form-group select, #contactForm .form-group textarea {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 0.5rem;
  }
}
#contactForm .form-group input:focus, #contactForm .form-group select:focus, #contactForm .form-group textarea:focus {
  outline: none;
  border-color: #b91c1c;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
#contactForm .form-group input::placeholder, #contactForm .form-group select::placeholder, #contactForm .form-group textarea::placeholder {
  color: #94a3b8;
}
#contactForm .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
}
@media (max-width: 768px) {
  #contactForm .form-group select {
    background-position: right 0.5rem center;
  }
}
#contactForm .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
@media (max-width: 768px) {
  #contactForm .form-group textarea {
    min-height: 100px;
  }
}
#contactForm .btn-block {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  #contactForm .btn-block {
    padding: 1rem;
  }
}
@media (max-width: 768px) {
  #contactForm .btn-block {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}

.form-success {
  background: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.form-error {
  background: rgba(185, 28, 28, 0.1);
  color: #b91c1c;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  font-size: 0.875rem;
}

.social-connect-section {
  padding: 6rem 0;
  background: #ffffff;
}
@media (max-width: 768px) {
  .social-connect-section {
    padding: 3rem 0;
  }
}

.social-connect-wrapper {
  text-align: center;
}
.social-connect-wrapper h2 {
  font-size: 2.25rem;
  color: #0f172a;
  margin-bottom: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .social-connect-wrapper h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .social-connect-wrapper h2 {
    font-size: 1.5rem;
  }
}
.social-connect-wrapper p {
  font-size: 1.125rem;
  color: #475569;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .social-connect-wrapper p {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
}

.social-icons-large {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .social-icons-large {
    gap: 1rem;
  }
}
.social-icons-large .social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}
.social-icons-large .social-icon:hover {
  transform: translateY(-5px);
}
.social-icons-large .social-icon:hover img {
  background: #b91c1c;
  transform: scale(1.1);
}
.social-icons-large .social-icon:hover span {
  color: #b91c1c;
}
.social-icons-large .social-icon img {
  width: 60px;
  height: 60px;
  background: #f1f5f9;
  border-radius: 9999px;
  padding: 0.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .social-icons-large .social-icon img {
    width: 50px;
    height: 50px;
  }
}
.social-icons-large .social-icon span {
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .social-icons-large .social-icon span {
    font-size: 0.75rem;
  }
}

.donations-hero {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #0f172a 100%);
  overflow: hidden;
  padding: 4rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donations-hero {
    padding: 3rem 0;
  }
}
@media (max-width: 768px) {
  .donations-hero {
    padding: 2rem 0 3rem;
  }
}
.donations-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/images/donation2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 0;
}
@media (max-width: 768px) {
  .donations-hero::before {
    opacity: 0.15;
    background-position: 70% center;
  }
}
.donations-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .donations-hero::after {
    background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.85) 100%);
  }
}
.donations-hero .container {
  position: relative;
  z-index: 2;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
}
.hero-container .hero-text {
  flex: 1.2;
  min-width: 300px;
}
@media (max-width: 768px) {
  .hero-container .hero-text {
    min-width: 100%;
    order: 1;
  }
}
.hero-container .hero-text .hero-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.2);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  backdrop-filter: blur(4px);
  animation: slideDown 0.6s ease forwards;
  opacity: 0;
  transform: translateY(-20px);
}
@media (max-width: 768px) {
  .hero-container .hero-text .hero-tag {
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
  }
}
.hero-container .hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.7s ease 0.1s forwards;
  opacity: 0;
  transform: translateY(30px);
}
.hero-container .hero-text h1 span {
  color: #ef4444;
  position: relative;
  display: inline-block;
}
.hero-container .hero-text h1 span::before {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b91c1c, #ef4444, transparent);
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .hero-container .hero-text h1 span::before {
    bottom: -4px;
    height: 3px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container .hero-text h1 {
    font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  }
}
@media (max-width: 768px) {
  .hero-container .hero-text h1 {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
    margin-bottom: 0.25rem;
  }
}
.hero-container .hero-text p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 90%;
  font-weight: 500;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 0.7s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container .hero-text p {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .hero-container .hero-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
    max-width: 100%;
    padding: 0 0.5rem;
    font-weight: 400;
    line-height: 1.5;
  }
}
.hero-container .hero-text .hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.3s forwards;
  opacity: 0;
  transform: translateY(30px);
}
@media (max-width: 768px) {
  .hero-container .hero-text .hero-buttons {
    justify-content: center;
    gap: 0.5rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.hero-container .hero-text .hero-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: #b91c1c;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
  padding: 0.5rem 3rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container .hero-text .hero-buttons .btn-primary {
    padding: 0.25rem 2rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .hero-container .hero-text .hero-buttons .btn-primary {
    padding: 0.25rem 1.5rem;
    font-size: 0.875rem;
    min-width: 160px;
  }
}
.hero-container .hero-text .hero-buttons .btn-primary:hover {
  background: #991b1b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(185, 28, 28, 0.4);
}
.hero-container .hero-text .hero-buttons .btn-primary:active {
  transform: translateY(0);
}
.hero-container .hero-text .hero-buttons .btn-primary img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: transform 0.2s ease;
}
.hero-container .hero-text .hero-buttons .btn-primary:hover img {
  transform: scale(1.1);
}
.hero-container .hero-text .hero-buttons .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  padding: 0.5rem 3rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container .hero-text .hero-buttons .btn-outline {
    padding: 0.25rem 2rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .hero-container .hero-text .hero-buttons .btn-outline {
    padding: 0.25rem 1.5rem;
    font-size: 0.875rem;
    min-width: 160px;
  }
}
.hero-container .hero-text .hero-buttons .btn-outline:hover {
  background: #ffffff;
  color: #b91c1c;
  border-color: #ffffff;
  transform: translateY(-3px);
}
.hero-container .hero-text .hero-buttons .btn-outline:hover img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(1892%) hue-rotate(346deg) brightness(92%) contrast(94%);
}
.hero-container .hero-text .hero-buttons .btn-outline:active {
  transform: translateY(0);
}
.hero-container .hero-text .hero-buttons .btn-outline img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
  transition: all 0.2s ease;
}
.hero-container .hero-image {
  flex: 0.8;
  min-width: 280px;
}
@media (max-width: 768px) {
  .hero-container .hero-image {
    flex: auto;
    min-width: 100%;
    margin-top: 0;
    order: 2;
  }
}
.hero-container .hero-image .hero-img {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  object-fit: contain;
  display: block;
  animation: fadeInRight 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateX(40px);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-container .hero-image .hero-img {
    max-width: 350px;
  }
}
@media (max-width: 768px) {
  .hero-container .hero-image .hero-img {
    max-width: 220px;
    margin: 0 auto;
    border-radius: 0.75rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    transform: translateY(30px);
  }
}

.floating-element {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.08;
}
.floating-element-1 {
  top: 12%;
  left: 3%;
  width: 70px;
  height: 70px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L15 8.5L22 9.5L17 14L18.5 21L12 17.5L5.5 21L7 14L2 9.5L9 8.5L12 2Z"/></svg>') center/contain no-repeat;
  animation: float 6s ease-in-out infinite;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .floating-element-1 {
    display: none;
  }
}
.floating-element-2 {
  bottom: 15%;
  right: 4%;
  width: 55px;
  height: 55px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L15 8.5L22 9.5L17 14L18.5 21L12 17.5L5.5 21L7 14L2 9.5L9 8.5L12 2Z"/></svg>') center/contain no-repeat;
  animation: float 7s ease-in-out infinite reverse;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .floating-element-2 {
    display: none;
  }
}
.floating-element-3 {
  top: 45%;
  right: 10%;
  width: 35px;
  height: 35px;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L15 8.5L22 9.5L17 14L18.5 21L12 17.5L5.5 21L7 14L2 9.5L9 8.5L12 2Z"/></svg>') center/contain no-repeat;
  animation: float 5s ease-in-out infinite 0.5s;
}
@media (max-width: 768px) {
  .floating-element-3 {
    display: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}
@media (max-width: 768px) {
  .donations-hero .hero-text h1 br {
    display: none;
  }
  .donations-hero .hero-text p br {
    display: none;
  }
}
.giving-methods-section {
  padding: 6rem 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .giving-methods-section {
    padding: 3rem 0;
  }
}
.giving-methods-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(185, 28, 28, 0.02) 0%, transparent 50%);
  pointer-events: none;
}
.giving-methods-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .giving-methods-section .section-header {
    margin-bottom: 2rem;
  }
}
.giving-methods-section .section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.giving-methods-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section .section-header h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .giving-methods-section .section-header h2 {
    font-size: 1.5rem;
  }
  .giving-methods-section .section-header h2::after {
    width: 60px;
    height: 2px;
    bottom: -8px;
  }
}
.giving-methods-section .section-header .section-divider {
  display: none;
}
.giving-methods-section .section-header p {
  color: #475569;
  max-width: 650px;
  margin: 2rem auto 0;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section .section-header p {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .giving-methods-section .section-header p {
    font-size: 0.875rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }
}
.giving-methods-section .methods-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .giving-methods-section .methods-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section .methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .giving-methods-section .methods-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 380px;
    margin: 0 auto;
  }
}
.giving-methods-section .method-card {
  text-align: center;
  padding: 3rem 2rem;
  background: #ffffff;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section .method-card {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .giving-methods-section .method-card {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.giving-methods-section .method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  transition: left 0.4s ease;
}
.giving-methods-section .method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}
.giving-methods-section .method-card:hover::before {
  left: 0;
}
.giving-methods-section .method-card:hover .method-icon {
  background: #b91c1c;
}
.giving-methods-section .method-card:hover .method-icon img {
  transform: scale(1.1);
  filter: brightness(0) invert(1);
}
.giving-methods-section .method-card:hover h3 {
  color: #b91c1c;
}
.giving-methods-section .method-card .method-icon {
  width: 80px;
  height: 80px;
  background: rgba(185, 28, 28, 0.08);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section .method-card .method-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .giving-methods-section .method-card .method-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
  }
}
.giving-methods-section .method-card .method-icon img {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section .method-card .method-icon img {
    width: 34px;
    height: 34px;
  }
}
@media (max-width: 768px) {
  .giving-methods-section .method-card .method-icon img {
    width: 32px;
    height: 32px;
  }
}
.giving-methods-section .method-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .giving-methods-section .method-card h3 {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .giving-methods-section .method-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
  }
}
.giving-methods-section .method-card p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .giving-methods-section .method-card p {
    font-size: 0.875rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.giving-methods-section .method-card {
  animation: cardFadeInUp 0.6s ease forwards;
  opacity: 0;
}
.giving-methods-section .method-card:nth-child(1) {
  animation-delay: 0.1s;
}
.giving-methods-section .method-card:nth-child(2) {
  animation-delay: 0.2s;
}
.giving-methods-section .method-card:nth-child(3) {
  animation-delay: 0.3s;
}
.giving-methods-section .method-card:nth-child(4) {
  animation-delay: 0.4s;
}

@media (prefers-color-scheme: dark) {
  .giving-methods-section {
    background: #0f172a;
  }
  .giving-methods-section .section-header h2 {
    color: #ffffff;
  }
  .giving-methods-section .section-header p {
    color: #94a3b8;
  }
  .giving-methods-section .method-card {
    background: #1e293b;
    border-color: #334155;
  }
  .giving-methods-section .method-card h3 {
    color: #ffffff;
  }
  .giving-methods-section .method-card p {
    color: #94a3b8;
  }
  .giving-methods-section .method-card:hover {
    background: #1e293b;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
}
.donation-amounts-section {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section {
    padding: 3rem 0;
  }
}
.donation-amounts-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 150%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.donation-amounts-section::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.02) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.donation-amounts-section .amounts-wrapper {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.donation-amounts-section .amounts-card {
  background: #ffffff;
  padding: 3rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.5);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section .amounts-card {
    padding: 2rem;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card {
    padding: 1.5rem;
    border-radius: 1rem;
  }
}
.donation-amounts-section .amounts-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}
.donation-amounts-section .amounts-card h3 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
  color: #0f172a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.donation-amounts-section .amounts-card h3::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section .amounts-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .donation-amounts-section .amounts-card h3::after {
    bottom: -10px;
    width: 40px;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
  .donation-amounts-section .amounts-card h3::after {
    bottom: -8px;
    width: 35px;
    height: 2px;
  }
}
.donation-amounts-section .amounts-card .amount-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section .amounts-card .amount-buttons {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .amount-buttons {
    gap: 0.25rem;
    margin-bottom: 1rem;
  }
}
.donation-amounts-section .amounts-card .amount-buttons .amount-btn {
  background: #f1f5f9;
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  color: #0f172a;
  min-width: 85px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section .amounts-card .amount-buttons .amount-btn {
    padding: 0.25rem 1.5rem;
    font-size: 1rem;
    min-width: 75px;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .amount-buttons .amount-btn {
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
    min-width: 65px;
  }
}
.donation-amounts-section .amounts-card .amount-buttons .amount-btn::after {
  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;
}
.donation-amounts-section .amounts-card .amount-buttons .amount-btn:active::after {
  width: 200px;
  height: 200px;
}
.donation-amounts-section .amounts-card .amount-buttons .amount-btn.featured {
  background: #b91c1c;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.3);
  position: relative;
}
.donation-amounts-section .amounts-card .amount-buttons .amount-btn.featured::before {
  content: "★";
  position: absolute;
  top: -8px;
  right: -8px;
  background: #f59e0b;
  color: #ffffff;
  font-size: 12px;
  width: 22px;
  height: 22px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .amount-buttons .amount-btn.featured::before {
    width: 18px;
    height: 18px;
    font-size: 10px;
    top: -6px;
    right: -6px;
  }
}
.donation-amounts-section .amounts-card .amount-buttons .amount-btn:hover, .donation-amounts-section .amounts-card .amount-buttons .amount-btn.active {
  background: #b91c1c;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
.donation-amounts-section .amounts-card .amount-buttons .custom-amount {
  position: relative;
}
.donation-amounts-section .amounts-card .amount-buttons .custom-amount input {
  padding: 0.5rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 9999px;
  width: 170px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  background: #ffffff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section .amounts-card .amount-buttons .custom-amount input {
    width: 150px;
    padding: 0.25rem 1rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .amount-buttons .custom-amount input {
    width: 130px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
  }
}
.donation-amounts-section .amounts-card .amount-buttons .custom-amount input:focus {
  border-color: #b91c1c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
  transform: scale(1.02);
}
.donation-amounts-section .amounts-card .amount-buttons .custom-amount input::placeholder {
  color: #94a3b8;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .amount-buttons .custom-amount input::placeholder {
    font-size: 0.75rem;
  }
}
.donation-amounts-section .amounts-card .amount-buttons .custom-amount::before {
  content: "£";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
  font-weight: 700;
  pointer-events: none;
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .amount-buttons .custom-amount::before {
    left: 10px;
  }
}
.donation-amounts-section .amounts-card .amount-buttons .custom-amount input {
  padding-left: 28px;
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .amount-buttons .custom-amount input {
    padding-left: 24px;
  }
}
.donation-amounts-section .amounts-card .frequency-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid #e2e8f0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section .amounts-card .frequency-buttons {
    gap: 0.5rem;
    padding-top: 0.5rem;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .frequency-buttons {
    gap: 0.25rem;
    flex-wrap: wrap;
  }
}
.donation-amounts-section .amounts-card .frequency-buttons .freq-btn {
  background: transparent;
  border: 2px solid #e2e8f0;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #475569;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-amounts-section .amounts-card .frequency-buttons .freq-btn {
    padding: 0.25rem 1.5rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .donation-amounts-section .amounts-card .frequency-buttons .freq-btn {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    flex: 1;
    min-width: 100px;
  }
}
.donation-amounts-section .amounts-card .frequency-buttons .freq-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #b91c1c;
  transition: width 0.3s ease;
}
.donation-amounts-section .amounts-card .frequency-buttons .freq-btn:hover::before {
  width: 60%;
}
.donation-amounts-section .amounts-card .frequency-buttons .freq-btn.active, .donation-amounts-section .amounts-card .frequency-buttons .freq-btn:hover {
  background: #b91c1c;
  color: #ffffff;
  border-color: #b91c1c;
  transform: translateY(-2px);
}
.donation-amounts-section .amounts-card .frequency-buttons .freq-btn.active::before, .donation-amounts-section .amounts-card .frequency-buttons .freq-btn:hover::before {
  display: none;
}

@keyframes buttonPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.donation-amounts-section .amount-btn {
  animation: buttonPop 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) forwards;
  opacity: 0;
}
.donation-amounts-section .amount-btn:nth-child(1) {
  animation-delay: 0.05s;
}
.donation-amounts-section .amount-btn:nth-child(2) {
  animation-delay: 0.1s;
}
.donation-amounts-section .amount-btn:nth-child(3) {
  animation-delay: 0.15s;
}
.donation-amounts-section .amount-btn:nth-child(4) {
  animation-delay: 0.2s;
}
.donation-amounts-section .amount-btn:nth-child(5) {
  animation-delay: 0.25s;
}

.donation-amounts-section .custom-amount {
  animation: buttonPop 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1) 0.3s forwards;
  opacity: 0;
}

.donation-amounts-section .freq-btn {
  animation: fadeInUp 0.5s ease forwards;
  opacity: 0;
}
.donation-amounts-section .freq-btn:nth-child(1) {
  animation-delay: 0.4s;
}
.donation-amounts-section .freq-btn:nth-child(2) {
  animation-delay: 0.45s;
}
.donation-amounts-section .freq-btn:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-color-scheme: dark) {
  .donation-amounts-section {
    background: #1e293b;
  }
  .donation-amounts-section .amounts-card {
    background: #0f172a;
    border-color: #334155;
  }
  .donation-amounts-section .amounts-card h3 {
    color: #ffffff;
  }
  .donation-amounts-section .amounts-card .amount-btn {
    background: #334155;
    color: #ffffff;
  }
  .donation-amounts-section .amounts-card .amount-btn:hover, .donation-amounts-section .amounts-card .amount-btn.active {
    background: #b91c1c;
  }
  .donation-amounts-section .amounts-card .custom-amount input {
    background: #1e293b;
    border-color: #334155;
    color: #ffffff;
  }
  .donation-amounts-section .amounts-card .custom-amount input:focus {
    border-color: #b91c1c;
  }
  .donation-amounts-section .amounts-card .freq-btn {
    border-color: #334155;
    color: #94a3b8;
  }
  .donation-amounts-section .amounts-card .freq-btn.active, .donation-amounts-section .amounts-card .freq-btn:hover {
    background: #b91c1c;
    color: #ffffff;
  }
}
.donation-form-section {
  padding: 6rem 0;
  background: #ffffff;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-form-section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .donation-form-section {
    padding: 3rem 0;
  }
}
.donation-form-section .form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .donation-form-section .form-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .donation-form-section .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.donation-form-section .billing-column, .donation-form-section .payment-column {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
  width: 100%;
}
@media (max-width: 768px) {
  .donation-form-section .billing-column, .donation-form-section .payment-column {
    padding: 1.5rem;
    border-radius: 0.75rem;
    width: 100%;
  }
}
.donation-form-section .billing-column h3, .donation-form-section .payment-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #0f172a;
  font-weight: 700;
  position: relative;
  padding-bottom: 0.25rem;
}
.donation-form-section .billing-column h3::after, .donation-form-section .payment-column h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #b91c1c;
  border-radius: 9999px;
}
@media (max-width: 768px) {
  .donation-form-section .billing-column h3, .donation-form-section .payment-column h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}
.donation-form-section .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .donation-form-section .form-row {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}
.donation-form-section .form-group {
  margin-bottom: 1rem;
  width: 100%;
}
@media (max-width: 768px) {
  .donation-form-section .form-group {
    margin-bottom: 0.5rem;
  }
}
.donation-form-section input, .donation-form-section select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.75rem;
  font-family: system-ui, -apple-system, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background: #ffffff;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .donation-form-section input, .donation-form-section select {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}
.donation-form-section input:focus, .donation-form-section select:focus {
  border-color: #b91c1c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(185, 28, 28, 0.1);
}
.donation-form-section select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.donation-form-section .gift-aid-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 0.75rem;
  border-left: 3px solid #f59e0b;
  width: 100%;
}
@media (max-width: 768px) {
  .donation-form-section .gift-aid-box {
    padding: 0.5rem;
  }
}
.donation-form-section .gift-aid-box .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  flex-wrap: wrap;
}
.donation-form-section .gift-aid-box .checkbox-label input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.donation-form-section .gift-aid-box .gift-aid-note {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.25rem;
  line-height: 1.5;
  margin-left: 1.5rem;
}
@media (max-width: 768px) {
  .donation-form-section .gift-aid-box .gift-aid-note {
    margin-left: 1rem;
    font-size: 0.75rem;
  }
}
.donation-form-section .payment-methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .donation-form-section .payment-methods {
    gap: 0.5rem;
    flex-direction: row;
  }
}
.donation-form-section .payment-methods .payment-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: #ffffff;
  border: 2px solid #e2e8f0;
  padding: 0.5rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .donation-form-section .payment-methods .payment-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    white-space: normal;
    text-align: center;
  }
}
.donation-form-section .payment-methods .payment-btn img {
  width: 18px;
  height: 18px;
}
@media (max-width: 768px) {
  .donation-form-section .payment-methods .payment-btn img {
    width: 16px;
    height: 16px;
  }
}
.donation-form-section .payment-methods .payment-btn.active, .donation-form-section .payment-methods .payment-btn:hover {
  background: #b91c1c;
  color: #ffffff;
  border-color: #b91c1c;
}
.donation-form-section .payment-methods .payment-btn.active img, .donation-form-section .payment-methods .payment-btn:hover img {
  filter: brightness(0) invert(1);
}
.donation-form-section .payment-details {
  transition: all 0.3s ease;
  width: 100%;
}
.donation-form-section .bank-info-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  width: 100%;
}
@media (max-width: 768px) {
  .donation-form-section .bank-info-card {
    padding: 1rem;
  }
}
.donation-form-section .bank-info-card p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  border-bottom: 1px dashed #e2e8f0;
}
.donation-form-section .bank-info-card p:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.donation-form-section .bank-info-card p strong {
  color: #0f172a;
  font-weight: 600;
}
.donation-form-section .bank-info-card p span {
  color: #475569;
  font-family: monospace;
  word-break: break-all;
  text-align: right;
}
@media (max-width: 768px) {
  .donation-form-section .bank-info-card p {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .donation-form-section .bank-info-card p span {
    text-align: left;
  }
}
.donation-form-section .donation-summary {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 2rem 0;
  border: 1px solid #e2e8f0;
  width: 100%;
}
@media (max-width: 768px) {
  .donation-form-section .donation-summary {
    padding: 1rem;
    margin: 1.5rem 0;
  }
}
.donation-form-section .donation-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  padding: 0.25rem 0;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .donation-form-section .donation-summary .summary-row {
    font-size: 0.875rem;
  }
}
.donation-form-section .donation-summary .summary-row.total {
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 2px solid #e2e8f0;
  font-size: 1.25rem;
  font-weight: 700;
}
.donation-form-section .donation-summary .summary-row.total span, .donation-form-section .donation-summary .summary-row.total strong {
  color: #b91c1c;
}
.donation-form-section .btn-block {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .donation-form-section .btn-block {
    padding: 0.5rem;
    font-size: 0.875rem;
  }
}
.donation-form-section .btn-block:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.donation-form-section .secure-note {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: #94a3b8;
}
@media (max-width: 768px) {
  .donation-form-section .secure-note {
    font-size: 0.75rem;
  }
}

.impact-section {
  padding: 6rem 0;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .impact-section {
    padding: 3rem 0;
  }
}
.impact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(circle at 20% 0%, rgba(185, 28, 28, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.impact-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 150px;
  background: radial-gradient(circle at 80% 100%, rgba(185, 28, 28, 0.02) 0%, transparent 70%);
  pointer-events: none;
}
.impact-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .impact-section .section-header {
    margin-bottom: 2rem;
  }
}
.impact-section .section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.impact-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ef4444, transparent);
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section .section-header h2 {
    font-size: 1.875rem;
  }
  .impact-section .section-header h2::after {
    width: 60px;
    bottom: -10px;
  }
}
@media (max-width: 768px) {
  .impact-section .section-header h2 {
    font-size: 1.5rem;
  }
  .impact-section .section-header h2::after {
    width: 50px;
    height: 2px;
    bottom: -8px;
  }
}
.impact-section .section-header .section-divider {
  display: none;
}
.impact-section .section-header p {
  color: #475569;
  max-width: 600px;
  margin: 2rem auto 0;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section .section-header p {
    font-size: 0.875rem;
    margin-top: 1.5rem;
  }
}
@media (max-width: 768px) {
  .impact-section .section-header p {
    font-size: 0.875rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }
}
.impact-section .impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .impact-section .impact-grid {
    gap: 1.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 768px) {
  .impact-section .impact-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 380px;
    margin: 0 auto;
  }
}
.impact-section .impact-item {
  text-align: center;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.3);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section .impact-item {
    padding: 1.5rem;
  }
}
@media (max-width: 768px) {
  .impact-section .impact-item {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.impact-section .impact-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ef4444, #b91c1c);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.impact-section .impact-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}
.impact-section .impact-item:hover::before {
  transform: scaleX(1);
}
.impact-section .impact-item:hover .impact-icon {
  background: #b91c1c;
  transform: translateY(-5px);
}
.impact-section .impact-item:hover .impact-icon img {
  transform: scale(1.15);
  filter: brightness(0) invert(1);
}
.impact-section .impact-item:hover h3 {
  color: #b91c1c;
}
.impact-section .impact-item:active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(185, 28, 28, 0.1);
  transform: translate(-50%, -50%);
  animation: ripple 0.6s ease-out;
}
.impact-section .impact-item .impact-icon {
  width: 80px;
  height: 80px;
  background: rgba(185, 28, 28, 0.08);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section .impact-item .impact-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }
}
@media (max-width: 768px) {
  .impact-section .impact-item .impact-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 1rem;
  }
}
.impact-section .impact-item .impact-icon img {
  width: 38px;
  height: 38px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section .impact-item .impact-icon img {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 768px) {
  .impact-section .impact-item .impact-icon img {
    width: 30px;
    height: 30px;
  }
}
.impact-section .impact-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0f172a;
  font-weight: 700;
  transition: color 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .impact-section .impact-item h3 {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .impact-section .impact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
  }
}
.impact-section .impact-item p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin: 0;
}
@media (max-width: 768px) {
  .impact-section .impact-item p {
    font-size: 0.875rem;
    max-width: 90%;
    margin: 0 auto;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes ripple {
  0% {
    width: 0;
    height: 0;
    opacity: 0.5;
  }
  100% {
    width: 200px;
    height: 200px;
    opacity: 0;
  }
}
.impact-section .impact-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
.impact-section .impact-item:nth-child(1) {
  animation-delay: 0.1s;
}
.impact-section .impact-item:nth-child(2) {
  animation-delay: 0.2s;
}
.impact-section .impact-item:nth-child(3) {
  animation-delay: 0.3s;
}
.impact-section .impact-item:nth-child(4) {
  animation-delay: 0.4s;
}

@media (prefers-color-scheme: dark) {
  .impact-section {
    background: #0f172a;
  }
  .impact-section .section-header h2 {
    color: #ffffff;
  }
  .impact-section .section-header p {
    color: #94a3b8;
  }
  .impact-section .impact-item {
    background: #1e293b;
    border-color: #334155;
  }
  .impact-section .impact-item h3 {
    color: #ffffff;
  }
  .impact-section .impact-item p {
    color: #94a3b8;
  }
  .impact-section .impact-item:hover {
    background: #1e293b;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  }
  .impact-section .impact-item:hover h3 {
    color: #ef4444;
  }
  .impact-section .impact-item .impact-icon {
    background: rgba(185, 28, 28, 0.15);
  }
}
.benevolence-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .benevolence-section {
    padding: 6rem 0;
  }
}
@media (max-width: 768px) {
  .benevolence-section {
    padding: 4rem 0;
  }
}
.benevolence-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(185, 28, 28, 0.03) 0%, transparent 60%);
  pointer-events: none;
}
.benevolence-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.03'%3E%3Cpath fill='%23b91c1c' d='M50,15 L65,35 L85,40 L70,58 L75,78 L55,68 L35,78 L40,58 L25,40 L45,35 Z'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 40px;
  pointer-events: none;
}
.benevolence-section .container {
  position: relative;
  z-index: 1;
}
.benevolence-section .benevolence-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .benevolence-section .benevolence-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .benevolence-section .benevolence-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.benevolence-section .benevolence-content {
  animation: fadeInLeft 0.8s ease forwards;
}
@media (max-width: 768px) {
  .benevolence-section .benevolence-content {
    text-align: center;
    animation: fadeInUp 0.8s ease forwards;
    width: 100%;
  }
}
.benevolence-section .benevolence-tag {
  display: inline-block;
  background: rgba(185, 28, 28, 0.12);
  color: #b91c1c;
  padding: 0.25rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .benevolence-section .benevolence-tag {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
}
.benevolence-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .benevolence-section h2 {
    font-size: 1.875rem;
  }
}
@media (max-width: 768px) {
  .benevolence-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
}
.benevolence-section .benevolence-description {
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 2rem;
  max-width: 90%;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .benevolence-section .benevolence-description {
    max-width: 100%;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .benevolence-section .benevolence-description {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }
}
.benevolence-section .apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #b91c1c;
  color: #ffffff;
  padding: 1rem 3rem;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 4px 15px rgba(185, 28, 28, 0.2);
}
@media (min-width: 768px) and (max-width: 1024px) {
  .benevolence-section .apply-btn {
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
  }
}
@media (max-width: 768px) {
  .benevolence-section .apply-btn {
    padding: 0.5rem 2rem;
    font-size: 0.875rem;
    justify-content: center;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
  }
}
.benevolence-section .apply-btn:hover {
  background: #991b1b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(185, 28, 28, 0.3);
}
.benevolence-section .apply-btn::after {
  content: "→";
  transition: transform 0.2s ease;
}
.benevolence-section .apply-btn:hover::after {
  transform: translateX(4px);
}
.benevolence-section .steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}
@media (max-width: 768px) {
  .benevolence-section .steps-container {
    gap: 1rem;
    margin-top: 1rem;
    width: 100%;
  }
}
.benevolence-section .step-card {
  display: flex;
  gap: 1.5rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  width: 100%;
}
@media (max-width: 768px) {
  .benevolence-section .step-card {
    padding: 1rem;
    gap: 1rem;
    flex-direction: row;
    width: 100%;
  }
}
.benevolence-section .step-card:nth-child(1) {
  animation: fadeInRight 0.6s ease 0.1s forwards;
  opacity: 0;
}
.benevolence-section .step-card:nth-child(2) {
  animation: fadeInRight 0.6s ease 0.2s forwards;
  opacity: 0;
}
.benevolence-section .step-card:nth-child(3) {
  animation: fadeInRight 0.6s ease 0.3s forwards;
  opacity: 0;
}
.benevolence-section .step-card:hover {
  transform: translateX(8px);
  border-color: rgba(185, 28, 28, 0.3);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
  .benevolence-section .step-card:hover {
    transform: translateX(4px);
  }
}
.benevolence-section .step-card:hover .step-number {
  background: #b91c1c;
  transform: scale(1.05);
}
.benevolence-section .step-card .step-number {
  width: 54px;
  height: 54px;
  background: rgba(185, 28, 28, 0.12);
  color: #b91c1c;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .benevolence-section .step-card .step-number {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}
.benevolence-section .step-card .step-info {
  flex: 1;
}
.benevolence-section .step-card .step-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  font-weight: 600;
  color: #0f172a;
}
@media (max-width: 768px) {
  .benevolence-section .step-card .step-info h3 {
    font-size: 1rem;
  }
}
.benevolence-section .step-card .step-info p {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .benevolence-section .step-card .step-info p {
    font-size: 0.75rem;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .benevolence-section {
    text-align: center;
  }
  .benevolence-section .benevolence-description {
    margin-left: auto;
    margin-right: auto;
  }
  .benevolence-section .step-card {
    text-align: left;
  }
  .benevolence-section .steps-container {
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .benevolence-section .benevolence-content {
    text-align: center;
  }
  .benevolence-section .apply-btn {
    margin: 0 auto;
  }
  .benevolence-section .step-card {
    max-width: 500px;
    margin: 0 auto;
  }
}
.bank-transfer-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bank-transfer-section {
    padding: 4rem 0;
  }
}
@media (max-width: 768px) {
  .bank-transfer-section {
    padding: 3rem 0;
  }
}
.bank-transfer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: radial-gradient(circle at 20% 0%, rgba(185, 28, 28, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.bank-transfer-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(185, 28, 28, 0.02) 0%, transparent 70%);
  pointer-events: none;
}
.bank-transfer-section .bank-transfer-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .bank-transfer-section .bank-transfer-wrapper {
    padding: 0 1rem;
  }
}
.bank-transfer-section h2 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
  color: #0f172a;
  font-weight: 700;
  position: relative;
  display: inline-block;
}
.bank-transfer-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bank-transfer-section h2 {
    font-size: 1.5rem;
  }
  .bank-transfer-section h2::after {
    width: 45px;
    bottom: -8px;
  }
}
@media (max-width: 768px) {
  .bank-transfer-section h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  .bank-transfer-section h2::after {
    width: 40px;
    height: 2px;
    bottom: -6px;
  }
}
.bank-transfer-section .section-description {
  color: #475569;
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}
@media (max-width: 768px) {
  .bank-transfer-section .section-description {
    font-size: 0.875rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
  }
}
.bank-transfer-section .bank-details-grid {
  background: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  text-align: left;
  margin: 2rem 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: 100%;
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: all 0.3s ease;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .bank-transfer-section .bank-details-grid {
    padding: 1.5rem;
    margin: 1.5rem 0;
  }
}
@media (max-width: 768px) {
  .bank-transfer-section .bank-details-grid {
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0.75rem;
  }
}
.bank-transfer-section .bank-details-grid:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
  border-color: rgba(185, 28, 28, 0.2);
}
.bank-transfer-section .bank-details-grid .bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #f1f5f9;
  width: 100%;
  transition: all 0.2s ease;
}
.bank-transfer-section .bank-details-grid .bank-row:first-child {
  padding-top: 0;
}
.bank-transfer-section .bank-details-grid .bank-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .bank-transfer-section .bank-details-grid .bank-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.5rem 0;
  }
}
.bank-transfer-section .bank-details-grid .bank-row:hover .bank-label {
  color: #b91c1c;
}
.bank-transfer-section .bank-details-grid .bank-row:hover .bank-value {
  color: #0f172a;
}
.bank-transfer-section .bank-details-grid .bank-row .bank-label {
  font-weight: 700;
  color: #0f172a;
  min-width: 150px;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
@media (max-width: 768px) {
  .bank-transfer-section .bank-details-grid .bank-row .bank-label {
    min-width: auto;
    font-size: 0.875rem;
  }
}
.bank-transfer-section .bank-details-grid .bank-row .bank-value {
  color: #475569;
  font-family: "Courier New", monospace;
  word-break: break-all;
  text-align: right;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  letter-spacing: 0.3px;
}
@media (max-width: 768px) {
  .bank-transfer-section .bank-details-grid .bank-row .bank-value {
    text-align: left;
    font-size: 0.875rem;
    width: 100%;
    font-family: monospace;
  }
}
.bank-transfer-section .bank-note {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1rem;
  padding: 0.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(185, 28, 28, 0.03) 100%);
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-left: 3px solid #f59e0b;
}
@media (max-width: 768px) {
  .bank-transfer-section .bank-note {
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    display: flex;
    text-align: center;
    justify-content: center;
    border-left: none;
    border-top: 2px solid #f59e0b;
    border-radius: 0.75rem;
  }
}
.bank-transfer-section .bank-note::before {
  content: "";
  font-size: 1rem;
}
@media (max-width: 768px) {
  .bank-transfer-section .bank-note::before {
    font-size: 0.875rem;
  }
}

.copy-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  margin-left: 0.25rem;
  transition: all 0.2s ease;
}
.copy-btn img {
  width: 16px;
  height: 16px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}
.copy-btn:hover img {
  opacity: 1;
}

@keyframes fadeInRow {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.bank-transfer-section .bank-row {
  animation: fadeInRow 0.4s ease forwards;
  opacity: 0;
}
.bank-transfer-section .bank-row:nth-child(1) {
  animation-delay: 0.05s;
}
.bank-transfer-section .bank-row:nth-child(2) {
  animation-delay: 0.1s;
}
.bank-transfer-section .bank-row:nth-child(3) {
  animation-delay: 0.15s;
}
.bank-transfer-section .bank-row:nth-child(4) {
  animation-delay: 0.2s;
}
.bank-transfer-section .bank-row:nth-child(5) {
  animation-delay: 0.25s;
}
.bank-transfer-section .bank-row:nth-child(6) {
  animation-delay: 0.3s;
}

@media (prefers-color-scheme: dark) {
  .bank-transfer-section {
    background: #0f172a;
  }
  .bank-transfer-section h2 {
    color: #ffffff;
  }
  .bank-transfer-section .section-description {
    color: #94a3b8;
  }
  .bank-transfer-section .bank-details-grid {
    background: #1e293b;
    border-color: #334155;
  }
  .bank-transfer-section .bank-details-grid .bank-row {
    border-bottom-color: #334155;
  }
  .bank-transfer-section .bank-details-grid .bank-row .bank-label {
    color: #cbd5e1;
  }
  .bank-transfer-section .bank-details-grid .bank-row .bank-value {
    color: #94a3b8;
  }
  .bank-transfer-section .bank-details-grid .bank-row:hover .bank-label {
    color: #ef4444;
  }
  .bank-transfer-section .bank-details-grid .bank-row:hover .bank-value {
    color: #ffffff;
  }
  .bank-transfer-section .bank-note {
    background: rgba(245, 158, 11, 0.1);
    color: #94a3b8;
  }
}
.rescue-lines-section {
  position: relative;
  padding: 8rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rescue-lines-section {
    padding: 6rem 0;
  }
}
@media (max-width: 768px) {
  .rescue-lines-section {
    padding: 4rem 0;
  }
}
.rescue-lines-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("../assets/images/prayer-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
}
@media (max-width: 768px) {
  .rescue-lines-section::before {
    opacity: 0.05;
    background-position: 70% center;
  }
}
.rescue-lines-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(185, 28, 28, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.rescue-lines-section .container {
  position: relative;
  z-index: 2;
}
.rescue-lines-section .rescue-wrapper {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-wrapper {
    padding: 0 1rem;
  }
}
.rescue-lines-section .rescue-icon {
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}
.rescue-lines-section .rescue-icon img {
  width: 72px;
  height: 72px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  filter: brightness(0) saturate(100%) invert(27%) sepia(89%) saturate(1892%) hue-rotate(346deg) brightness(92%) contrast(94%);
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-icon img {
    width: 56px;
    height: 56px;
  }
}
.rescue-lines-section .rescue-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(185, 28, 28, 0.08);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.4s ease;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-icon::before {
    width: 80px;
    height: 80px;
  }
}
.rescue-lines-section .rescue-icon:hover img {
  transform: scale(1.08);
}
.rescue-lines-section .rescue-icon:hover::before {
  background: rgba(185, 28, 28, 0.12);
  transform: translate(-50%, -50%) scale(1.1);
}
.rescue-lines-section h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #0f172a;
  position: relative;
  display: inline-block;
}
.rescue-lines-section h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #b91c1c, #ef4444);
  border-radius: 9999px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rescue-lines-section h2 {
    font-size: 1.875rem;
  }
  .rescue-lines-section h2::after {
    width: 60px;
    bottom: -10px;
  }
}
@media (max-width: 768px) {
  .rescue-lines-section h2 {
    font-size: 1.5rem;
  }
  .rescue-lines-section h2::after {
    width: 50px;
    height: 2px;
    bottom: -8px;
  }
}
.rescue-lines-section .rescue-description {
  font-size: 1.125rem;
  color: #475569;
  margin: 2rem auto 3rem;
  max-width: 550px;
  line-height: 1.5;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rescue-lines-section .rescue-description {
    font-size: 1rem;
    margin: 1.5rem auto 2rem;
  }
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-description {
    font-size: 0.875rem;
    margin: 1rem auto 1.5rem;
    padding: 0 0.5rem;
  }
}
.rescue-lines-section .rescue-numbers {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 3rem 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rescue-lines-section .rescue-numbers {
    gap: 1rem;
    margin: 2rem 0;
  }
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-numbers {
    gap: 0.5rem;
    margin: 1.5rem 0;
    flex-direction: column;
    align-items: center;
  }
}
.rescue-lines-section .rescue-numbers .rescue-number {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #ffffff;
  padding: 1rem 3rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1.25rem;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  color: #0f172a;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .rescue-lines-section .rescue-numbers .rescue-number {
    padding: 0.5rem 2rem;
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-numbers .rescue-number {
    padding: 0.5rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}
.rescue-lines-section .rescue-numbers .rescue-number::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("../assets/icons/phone-call.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-numbers .rescue-number::before {
    width: 18px;
    height: 18px;
  }
}
.rescue-lines-section .rescue-numbers .rescue-number:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  color: #ffffff;
}
.rescue-lines-section .rescue-numbers .rescue-number:hover::before {
  filter: brightness(0) invert(1);
}
.rescue-lines-section .rescue-numbers .rescue-number:active {
  transform: translateY(0);
}
.rescue-lines-section .rescue-numbers .rescue-number.copied {
  background: #f59e0b;
  border-color: #f59e0b;
  transform: scale(0.98);
}
.rescue-lines-section .rescue-numbers .rescue-number.copied::after {
  content: "Copied!";
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: #f59e0b;
  color: #ffffff;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
  animation: fadeOut 1.5s ease forwards;
}
.rescue-lines-section .rescue-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(185, 28, 28, 0.04);
  padding: 1rem 2rem;
  border-radius: 9999px;
  margin-top: 2rem;
  flex-wrap: wrap;
  border: 1px solid rgba(185, 28, 28, 0.1);
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-info {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
    border-radius: 0.75rem;
  }
}
.rescue-lines-section .rescue-info .info-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #475569;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-info .info-text {
    font-size: 0.75rem;
  }
}
.rescue-lines-section .rescue-info .info-text::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../assets/icons/clock.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-info .info-text::before {
    width: 14px;
    height: 14px;
  }
}
.rescue-lines-section .rescue-info .info-divider {
  width: 1px;
  height: 20px;
  background: #cbd5e1;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-info .info-divider {
    display: none;
  }
}
.rescue-lines-section .rescue-info .info-note {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #b91c1c;
  font-weight: 500;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-info .info-note {
    font-size: 0.75rem;
  }
}
.rescue-lines-section .rescue-info .info-note::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../assets/icons/shield.png");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-info .info-note::before {
    width: 14px;
    height: 14px;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-10px);
  }
}
.rescue-lines-section .rescue-number {
  animation: fadeInScale 0.5s ease forwards;
  opacity: 0;
}
.rescue-lines-section .rescue-number:nth-child(1) {
  animation-delay: 0.1s;
}
.rescue-lines-section .rescue-number:nth-child(2) {
  animation-delay: 0.2s;
}
.rescue-lines-section .rescue-number:nth-child(3) {
  animation-delay: 0.3s;
}
.rescue-lines-section .rescue-number:nth-child(4) {
  animation-delay: 0.4s;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 768px) {
  .rescue-lines-section .rescue-info {
    flex-direction: column;
  }
  .rescue-lines-section .rescue-info .info-divider {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
