@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== RESET Y ESTILOS BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #2d5a2d;
  --primary-light: #4f7a4f;
  --primary-dark: #1f3a1f;
  --secondary: #8fbc8f;
  --secondary-light: #b9dbb9;
  --bg-light: #f8faf8;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(45, 90, 45, 0.08);
  --shadow-hover: 0 12px 48px rgba(45, 90, 45, 0.15);
  --radius: 24px;
  --radius-sm: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --gradient-green: linear-gradient(135deg, #2d5a2d 0%, #4f7a4f 100%);
  --gradient-light: linear-gradient(135deg, #f8faf8 0%, #f0f7f0 100%);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--gradient-light);
  color: #1e2b1e;
  line-height: 1.7;
  padding: 1.5rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body > * {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-light);
}

/* ===== HEADER ===== */
.main-header {
  background: var(--white);
  padding: 1.2rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 1.8rem;
  position: sticky;
  top: 1rem;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(143, 188, 143, 0.15);
  transition: var(--transition);
}

.main-header:hover {
  box-shadow: var(--shadow-hover);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.2rem;
}

.header-left h1 {
  font-size: 1.6rem;
  font-weight: 700;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.3px;
}

.header-left .tagline {
  color: var(--primary-light);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.3px;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.user-email {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  background: #eaf5ea;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border: 1px solid var(--secondary-light);
  transition: var(--transition);
}

.user-email:hover {
  background: #d4e8d4;
  transform: scale(1.02);
}

.login-link {
  background: #eaf5ea;
  color: var(--primary);
  text-decoration: none;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid var(--secondary-light);
}

.login-link:hover {
  background: var(--secondary-light);
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(143, 188, 143, 0.2);
}

.logout-btn {
  background: linear-gradient(135deg, #fce4ec, #f8bbd0);
  border: none;
  padding: 0.4rem 1.2rem;
  border-radius: 30px;
  color: #c62828;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid #f8bbd0;
}

.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(198, 40, 40, 0.2);
  background: linear-gradient(135deg, #f8bbd0, #f48fb1);
}

.add-btn {
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(45, 90, 45, 0.2);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.add-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 24px rgba(45, 90, 45, 0.3);
  background: linear-gradient(135deg, #1f3f1f, #2d5a2d);
}

.add-btn:active {
  transform: scale(0.95);
}

/* ===== HERO MESSAGE ===== */
.hero-message {
  background: var(--white);
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.8rem;
  border-left: 6px solid var(--secondary);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero-message::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 70% 30%, rgba(143, 188, 143, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-message:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.message-box p {
  font-size: 1.15rem;
  color: var(--primary-dark);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.message-box .highlight {
  background: linear-gradient(135deg, #dcedc8, #c5e1a5);
  padding: 0.15rem 0.8rem;
  border-radius: 40px;
  font-weight: 600;
  color: var(--primary);
  display: inline-block;
}

/* ===== QUICK ACTIONS ===== */
.quick-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quick-btn {
  background: var(--white);
  border: 2px solid var(--secondary-light);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.quick-btn:hover {
  background: var(--gradient-green);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45, 90, 45, 0.2);
}

.quick-btn i {
  font-size: 1.2rem;
  transition: var(--transition);
}

.quick-btn:hover i {
  transform: scale(1.1);
}

/* ===== BUSCADOR ===== */
.search-wrapper {
  margin-bottom: 1.5rem;
  position: relative;
}

.search-wrapper::before {
  content: '🔍';
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  opacity: 0.5;
  z-index: 1;
}

#searchInput {
  width: 100%;
  padding: 0.9rem 1.4rem 0.9rem 3rem;
  font-size: 1rem;
  border: 2px solid var(--secondary-light);
  border-radius: 60px;
  background: var(--white);
  outline: none;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

#searchInput:hover {
  border-color: var(--secondary);
  box-shadow: 0 4px 16px rgba(143, 188, 143, 0.1);
}

#searchInput:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(106, 160, 106, 0.12), 0 4px 20px rgba(45, 90, 45, 0.06);
  transform: scale(1.01);
}

/* ===== TABS ===== */
.tabs-container {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.8rem;
  flex-wrap: wrap;
  justify-content: center;
}

.tab-btn {
  padding: 0.7rem 1.8rem;
  border: 2px solid var(--secondary-light);
  background: var(--white);
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.tab-btn:hover {
  background: #eaf5ea;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(45, 90, 45, 0.08);
}

.tab-btn.active {
  background: var(--gradient-green);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(45, 90, 45, 0.25);
  transform: translateY(-2px);
}

/* ===== GRID DE TARJETAS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 700px) {
  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  }
}

/* ===== TARJETA ===== */
.card-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.8rem;
  border: 1.5px solid #e8f0e8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.card-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-green);
  opacity: 0;
  transition: var(--transition);
}

.card-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.card-item:hover::after {
  opacity: 1;
}

.card-item:active {
  transform: scale(0.98);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.card-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.card-type {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.9rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.card-type.acopio {
  background: #e8f5e9;
  color: #1b5e20;
}

.card-type.hospital {
  background: #fce4ec;
  color: #b71c1c;
}

.card-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--primary-light);
}

.card-details span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.card-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.card-actions button {
  padding: 0.3rem 1rem;
  border: none;
  border-radius: 30px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.edit-btn {
  background: #e3f2fd;
  color: #0d47a1;
}

.edit-btn:hover {
  background: #bbdefb;
  transform: scale(1.05);
}

.delete-btn {
  background: #fce4ec;
  color: #c62828;
}

.delete-btn:hover {
  background: #f8bbd0;
  transform: scale(1.05);
}

.card-user {
  font-size: 0.8rem;
  color: #8aa88a;
  margin-top: 0.3rem;
}

/* ===== DONACIONES ===== */
.donations-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  margin: 2.5rem 0;
  border: 1px solid rgba(143, 188, 143, 0.1);
  transition: var(--transition);
}

.donations-section:hover {
  box-shadow: var(--shadow-hover);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
}

.section-header h2 i {
  margin-right: 0.6rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header p {
  color: var(--primary-light);
  font-size: 1.05rem;
}

.donation-category {
  margin-bottom: 2.5rem;
}

.donation-category h3 {
  color: var(--primary-dark);
  font-size: 1.4rem;
  margin-bottom: 0.3rem;
}

.donation-category h3 i {
  margin-right: 0.6rem;
  color: var(--primary-light);
}

.donation-subtitle {
  color: #8aa88a;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.donation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

@media (min-width: 700px) {
  .donation-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.donation-card {
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.8rem;
  border: 1.5px solid #e8f0e8;
  transition: var(--transition);
  position: relative;
}

.donation-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.donation-card .donation-status {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  padding: 0.2rem 0.9rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.donation-status.disponible {
  background: #e8f5e9;
  color: #2e7d32;
}

.donation-status.urgente {
  background: #fce4ec;
  color: #c62828;
  animation: pulse 1.5s ease-in-out infinite;
}

.donation-status.completado {
  background: #e3f2fd;
  color: #0d47a1;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.donation-card .donation-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 0.3rem;
  padding-right: 80px;
}

.donation-card .donation-category-tag {
  display: inline-block;
  padding: 0.15rem 0.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  background: #e8f0e8;
  color: var(--primary-light);
  margin-bottom: 0.6rem;
  font-weight: 500;
}

.donation-card .donation-description {
  color: #4a6a4a;
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.donation-card .donation-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.2rem;
  font-size: 0.85rem;
  color: #8aa88a;
}

.donation-card .donation-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.donation-card .donation-user {
  font-size: 0.8rem;
  color: #8aa88a;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid #e8f0e8;
}

.donation-card .donation-actions {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.donation-card .donation-actions button {
  padding: 0.3rem 1rem;
  border: none;
  border-radius: 30px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 500;
}

.donation-card .donation-actions .contact-btn {
  background: var(--gradient-green);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(45, 90, 45, 0.15);
}

.donation-card .donation-actions .contact-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(45, 90, 45, 0.25);
}

.donation-card .donation-actions .delete-donation-btn {
  background: #fce4ec;
  color: #c62828;
}

.donation-card .donation-actions .delete-donation-btn:hover {
  background: #f8bbd0;
  transform: scale(1.05);
}

.donation-card .donation-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0.5rem 0;
}

.add-donation-btn {
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.5rem;
  box-shadow: 0 4px 12px rgba(45, 90, 45, 0.2);
}

.add-donation-btn:hover {
  background: linear-gradient(135deg, #1f3f1f, #2d5a2d);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(45, 90, 45, 0.3);
}

/* ===== MAPA ===== */
.map-section {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  margin: 2.5rem 0;
  border: 1px solid rgba(143, 188, 143, 0.1);
  transition: var(--transition);
}

.map-section:hover {
  box-shadow: var(--shadow-hover);
}

.map-section h2 {
  color: var(--primary);
  margin-bottom: 1.2rem;
  font-size: 1.4rem;
}

.map-section h2 i {
  margin-right: 0.6rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* ===== MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  max-width: 550px;
  width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: slideUp 0.3s ease;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.close-modal {
  position: absolute;
  right: 1.5rem;
  top: 1.2rem;
  font-size: 2rem;
  cursor: pointer;
  color: #8aa88a;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--primary-dark);
  background: #f0f7f0;
}

.modal-content h2 {
  color: var(--primary);
  margin-bottom: 1.8rem;
  font-size: 1.8rem;
}

.modal-content h2 i {
  margin-right: 0.6rem;
  background: var(--gradient-green);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.form-group {
  margin-bottom: 1.4rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid var(--secondary-light);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
  background: var(--white);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  border-color: var(--secondary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(106, 160, 106, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 90px;
}

.submit-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--gradient-green);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(45, 90, 45, 0.15);
}

.submit-btn:hover {
  background: linear-gradient(135deg, #1f3f1f, #2d5a2d);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(45, 90, 45, 0.25);
}

.cancel-btn {
  width: 100%;
  padding: 0.9rem;
  background: #e8f0e8;
  color: var(--primary);
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  margin-top: 0.6rem;
  transition: var(--transition);
}

.cancel-btn:hover {
  background: var(--secondary-light);
  transform: scale(1.02);
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(143, 188, 143, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  text-align: center;
  margin-bottom: 1.8rem;
}

@media (min-width: 700px) {
  .footer-content {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-logo h3 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-logo p {
  color: var(--primary-light);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: var(--primary-light);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 400;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-social {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

@media (min-width: 700px) {
  .footer-social {
    justify-content: flex-start;
  }
}

.footer-social a {
  color: var(--primary-light);
  font-size: 1.6rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.footer-copy {
  text-align: center;
  color: #8aa88a;
  font-size: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid #e8f0e8;
}

/* ===== LOADING Y NO RESULTS ===== */
.loading-spinner {
  text-align: center;
  padding: 4rem;
  color: #8aa88a;
  font-size: 1.1rem;
}

.loading-spinner::after {
  content: '...';
  animation: dots 1.5s infinite;
}

@keyframes dots {
  0%, 20% { content: '.'; }
  40%, 60% { content: '..'; }
  80%, 100% { content: '...'; }
}

.no-results {
  text-align: center;
  padding: 4rem;
  color: #8aa88a;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--secondary-light);
  font-size: 1.1rem;
  transition: var(--transition);
}

.no-results:hover {
  border-color: var(--secondary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  body {
    padding: 0.5rem;
  }
  
  .header-content {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .header-right {
    justify-content: center;
  }
  
  .header-left h1 {
    font-size: 1.6rem;
  }
  
  .quick-actions {
    flex-direction: column;
  }
  
  .quick-btn {
    justify-content: center;
  }
  
  .modal-content {
    padding: 1.5rem;
  }
  
  .donations-section {
    padding: 1.5rem;
  }
  
  .map-container {
    height: 250px;
  }
  
  .footer-content {
    gap: 1.5rem;
  }
  
  .hero-message {
    padding: 1.5rem;
  }
  
  .message-box p {
    font-size: 1rem;
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  z-index: 2000;
  animation: slideUp 0.4s ease;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.toast.success {
  background: #2e7d32;
}

.toast.error {
  background: #c62828;
}

.toast.info {
  background: var(--primary);
}