.footer-section {
  background-color: #000;
  padding: 40px 20px;
  color: #fff;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 16px;
}

.footer-social-icons a {
  color: white;
  font-size: 1.8rem;
  padding: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  color: #00bfff;
}

.footer-text {
  font-size: 0.95rem;
  color: #ccc;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 480px) {
  .footer-social-icons {
    gap: 1rem;
  }

  .footer-social-icons a {
    width: 45px;
    height: 45px;
    font-size: 1.4rem;
  }

  .footer-text {
    font-size: 0.85rem;
  }
}

/* Notification System */
.notification {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    max-width: 400px;
    text-align: center;
    display: none; /* THIS is what hides it initially */
}

.notification h3 {
    color: #2a5298;
    margin-bottom: 1rem;
}

.notification p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.notification-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--form-transition);
}

.notification-button:hover {
    background: var(--primary-hover);
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none; /* Also key */
}

