/* Iglesia Bautista Para Las Naciones — Modern Redesign */
/* Design: Deep navy + warm gold + cream backgrounds */

/* === FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  /* Colors */
  --navy: #1a2744;
  --navy-light: #2a3a5c;
  --gold: #c9a227;
  --gold-light: #e6c455;
  --gold-dark: #a88520;
  --cream: #faf8f5;
  --cream-dark: #f0ebe3;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: rgba(201, 162, 39, 0.2);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --container-width: 1200px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

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

ul, ol {
  list-style: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  font-size: 1rem;
  max-width: 70ch;
}

.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding) 0;
}

/* === TOP BAR === */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar a {
  color: var(--gold-light);
  transition: color var(--transition-fast);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-item svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 640px) {
  .top-bar-right { display: none; }
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 50px;
  width: auto;
}

/* === NAVIGATION === */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: all var(--transition-fast);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

@media (max-width: 968px) {
  .nav-toggle { display: flex; }
  
  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-slow);
  }
  
  .main-nav.active {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.125rem;
    padding: 0.75rem 0;
  }
}

/* === HERO SLIDER === */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 39, 68, 0.4) 0%,
    rgba(26, 39, 68, 0.6) 50%,
    rgba(26, 39, 68, 0.8) 100%
  );
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 10;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 4.5rem);
  text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.hero-content .subtitle {
  color: var(--gold-light);
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
}

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

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.hero-dot.active,
.hero-dot:hover {
  background: var(--gold);
  border-color: var(--gold);
}

/* === WELCOME SECTION === */
.welcome {
  text-align: center;
  background: var(--cream);
}

.welcome h1 {
  margin-bottom: 1rem;
}

.welcome .subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0;
}

/* === CARDS === */
.cards-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.cards-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition-base);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card-image {
  transform: scale(1.05);
}

.card-image-wrapper {
  overflow: hidden;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.card-text {
  color: var(--text-muted);
  line-height: 1.8;
}

/* === PAGE HEADER === */
.page-header {
  padding-top: calc(80px + 4rem);
  padding-bottom: 4rem;
  text-align: center;
  background: linear-gradient(180deg, var(--cream-dark) 0%, var(--cream) 100%);
}

.page-header h1 {
  position: relative;
  display: inline-block;
}

.page-header h1::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
}

/* === SECTION === */
.content-section {
  padding: var(--section-padding) 0;
}

.content-section:nth-child(even) {
  background: var(--cream-dark);
}

.section-header {
  margin-bottom: 2rem;
}

.section-title {
  margin-bottom: 0.5rem;
}

.section-subtitle {
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-image {
  width: 100%;
  max-width: 600px;
  border-radius: 1rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.intro-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.intro-text p {
  margin-bottom: 1.5rem;
}

/* === REQUIREMENTS === */
.requirements-box {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.requirements-title {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--navy);
}

.requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.requirements-list li {
  display: flex;
  gap: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.requirements-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.75rem;
}

/* === ACCORDION === */
.accordion {
  margin-top: 3rem;
}

.accordion-item {
  background: var(--white);
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  text-align: left;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: var(--cream);
}

.accordion-title-group {
  flex: 1;
}

.accordion-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.accordion-subtitle {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--gold);
  font-weight: 600;
}

.accordion-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.accordion-item.active .accordion-content {
  max-height: 2000px;
}

.accordion-body {
  padding: 0 2rem 2rem;
}

.subjects-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.5rem;
}

.subjects-list li {
  padding: 0.75rem 1rem;
  background: var(--cream);
  border-radius: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-dark);
}

/* === STATS BOX === */
.stats-box {
  background: var(--navy);
  border-radius: 1rem;
  padding: 2rem;
  color: var(--white);
  margin: 2rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

/* === LOCATIONS === */
.locations-grid {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.location-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.location-card h4 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.location-card p {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.location-card a {
  color: var(--gold);
  font-weight: 600;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--navy);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* === GALLERY === */
.gallery-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.gallery-tab {
  padding: 0.75rem 1.5rem;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: all var(--transition-fast);
}

.gallery-tab:hover,
.gallery-tab.active {
  border-color: var(--gold);
  color: var(--gold);
}

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

.gallery-item {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 39, 68, 0);
  transition: background var(--transition-base);
  z-index: 1;
}

.gallery-item:hover::before {
  background: rgba(26, 39, 68, 0.4);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--transition-base);
}

.gallery-item-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.gallery-item:hover .gallery-item-icon {
  transform: translate(-50%, -50%) scale(1);
}

/* === LIGHTBOX === */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 0.5rem;
}

.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--gold);
}

.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }

@media (max-width: 768px) {
  .lightbox-prev { left: 1rem; }
  .lightbox-next { right: 1rem; }
}

/* === COMING SOON === */
.coming-soon {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.coming-soon-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  color: var(--gold);
}

.coming-soon h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.coming-soon p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* === CONTACT === */
.contact-section {
  display: grid;
  gap: 4rem;
}

@media (min-width: 968px) {
  .contact-section {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--cream);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.contact-label {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-value {
  color: var(--text-muted);
}

.contact-value a {
  color: var(--gold);
}

/* === FORM === */
.contact-form {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
  background: var(--cream);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
}

/* === MAP === */
.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* === FOOTER === */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 60px;
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
}

.donation-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

.donation-methods img {
  height: 40px;
  border-radius: 0.25rem;
}

.donation-note {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.75rem;
}

.donation-note a {
  color: var(--gold);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.social-links a:hover {
  background: var(--gold);
}

.social-links img {
  width: 24px;
  height: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.875rem;
}

/* === FLOATING DONATION BUTTON === */
.donation-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
}

.donation-fab-btn {
  width: 60px;
  height: 60px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  animation: pulse 2s infinite;
  transition: all var(--transition-fast);
}

.donation-fab-btn:hover {
  transform: scale(1.1);
}

.donation-fab-btn svg {
  width: 28px;
  height: 28px;
  color: var(--white);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4); }
  50% { box-shadow: 0 0 0 15px rgba(201, 162, 39, 0); }
}

/* === DONATION MODAL === */
.donation-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  padding: 1rem;
}

.donation-modal.active {
  opacity: 1;
  visibility: visible;
}

.donation-modal-content {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  max-width: 400px;
  width: 100%;
  transform: scale(0.9);
  transition: transform var(--transition-base);
}

.donation-modal.active .donation-modal-content {
  transform: scale(1);
}

.donation-modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.donation-modal-header h3 {
  margin-bottom: 0.5rem;
}

.donation-modal-header p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.donation-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.donation-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border);
  border-radius: 0.75rem;
  transition: border-color var(--transition-fast);
}

.donation-option:hover {
  border-color: var(--gold);
}

.donation-option img {
  height: 32px;
}

.donation-option-text {
  flex: 1;
}

.donation-option-text strong {
  display: block;
  color: var(--navy);
}

.donation-option-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.donation-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}

.donation-modal-close:hover {
  color: var(--navy);
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* === ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .hero {
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 1.75rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .accordion-header {
    padding: 1rem 1.5rem;
  }
  
  .accordion-body {
    padding: 0 1.5rem 1.5rem;
  }
  
  .contact-form,
  .contact-info {
    padding: 1.5rem;
  }
}