/* ===============================
   FOOTER – RED GRADIENT PREMIUM NEON
================================ */
.footer {
    background: linear-gradient(135deg, #C62828, #a71e1e);
    color: #fff;
    padding: 5rem 2rem 2rem;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    position: relative;
}

/* Container: 5 Columns */
.footer-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* =====================
   NEON UNDERLINE ANIMATION
===================== */
@keyframes neonSlide {
    0% { width: 0; left: 0; opacity: 0; }
    50% { width: 100%; left: 0; opacity: 1; }
    100% { width: 100%; left: 0; opacity: 1; }
}

/* =====================
   HEADINGS
===================== */
.footer-column h2,
.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    margin-top: 0;
    color: #fff;
    position: relative;
    transition: all 0.3s ease;
}

.footer-column h2::after,
.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff4d4d, #ff9999);
    box-shadow: 0 0 8px #ff4d4d, 0 0 15px #ff9999;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.footer-column h2:hover::after,
.footer-column h3:hover::after {
    animation: neonSlide 0.5s forwards;
}

.footer-column h2:hover,
.footer-column h3:hover {
    color: #ffe5e5;
    transform: translateY(-2px);
}

/* =====================
   PARAGRAPHS
===================== */
.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #f1f1f1;
    position: relative;
}

.footer-column p::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #ff9999);
    box-shadow: 0 0 6px #ff4d4d, 0 0 12px #ff9999;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.footer-column p:hover::after {
    animation: neonSlide 0.5s forwards;
}

.footer-column p:hover {
    color: #ffe5e5;
}

/* =====================
   LIST ITEMS & LINKS
===================== */
.footer-column ul li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    position: relative;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #ff9999);
    box-shadow: 0 0 6px #ff4d4d, 0 0 12px #ff9999;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.footer-column ul li a:hover::after {
    animation: neonSlide 0.5s forwards;
}

.footer-column ul li a:hover {
    color: #ffe5e5;
    font-style: italic;
    transform: translateY(-2px);
}

/* =====================
   SOCIAL ICONS
===================== */
.footer-brand .social-links a {
    margin-right: 0.8rem;
    font-size: 1.2rem;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.footer-brand .social-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #ff9999);
    box-shadow: 0 0 6px #ff4d4d, 0 0 12px #ff9999;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.footer-brand .social-links a:hover::after {
    animation: neonSlide 0.5s forwards;
}

.footer-brand .social-links a:hover {
    transform: translateY(-3px) scale(1.1);
    color: #ffe5e5;
}

/* =====================
   NEWSLETTER FORM
===================== */
.footer-column form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-column input {
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: none;
    outline: none;
    font-size: 0.9rem;
}

.footer-column button {
    padding: 0.6rem 1rem;
    border-radius: 12px;
    border: none;
    background: #f25252;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.footer-column button::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #ff9999);
    box-shadow: 0 0 6px #ff4d4d, 0 0 12px #ff9999;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.footer-column button:hover::after {
    animation: neonSlide 0.5s forwards;
}

.footer-column button:hover {
    transform: translateY(-2px) scale(1.05);
    background: #ff4b4b;
}

/* =====================
   FOOTER BOTTOM
===================== */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.5);
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    position: relative;
    background: transparent;
    gap: 0.75rem 1.5rem;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff4d4d, #ff9999);
    box-shadow: 0 0 6px #ff4d4d, 0 0 12px #ff9999;
    border-radius: 2px;
    transition: width 0.5s ease;
}

.footer-bottom a:hover::after {
    animation: neonSlide 0.5s forwards;
}

.footer-bottom a:hover {
    color: #ffe5e5;
    font-style: italic;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

 
}
