/* ============================================
   FOOTER STYLES
   ============================================ */

   .footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 4rem 2rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
  }
  
  .footer-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ac1c2c;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #ac1c2c;
  }
  
  .footer-column img {
    max-width: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
  }
  
  .footer-column ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-column ul li {
    margin-bottom: 0.75rem;
  }
  
  .footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.95rem;
  }
  
  .footer-column ul li a:hover {
    color: white;
    padding-left: 4px;
  }
  
  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .newsletter-form input[type="email"] {
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'DM Sans', sans-serif;
  }
  
  .newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
  }
  
  .newsletter-form input[type="email"]:focus {
    border-color: #ac1c2c;
    background: rgba(255, 255, 255, 0.15);
  }
  
  .newsletter-form button {
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #ac1c2c, #8a1623);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  }
  
  .newsletter-form button:hover {
    background: linear-gradient(135deg, #8a1623, #ac1c2c);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }
  
  .newsletter-response {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .newsletter-response.success {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
  }
  
  .newsletter-response.error {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
  }
  
  footer {
    text-align: center;
    padding: 2rem;
    background: #0d0d1a;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
  }
  /* ============================================
     RESPONSIVE - FOOTER
     ============================================ */
  
  @media (max-width: 768px) {
    .footer-columns {
      grid-template-columns: 1fr;
      padding: 3rem 1.5rem 1.5rem;
      gap: 2rem;
    }
  }