/* ==================================================
   Footer Section Styles (Neon Effect & 5 Columns)
   ================================================== */
.site-footer {
    background-color: #0B081D; /* Deep dark theme background */
    color: #8c8c9a;
    font-family: 'Poppins', sans-serif;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    /* ৫ কলাম গ্রিড: লোগো ও নিউজলেটার অংশ একটু বড় রাখা হয়েছে */
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr 1.5fr;
    gap: 25px;
    margin-bottom: 40px;
}

/* Typography */
.widget-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-desc, .newsletter-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Logo Setup */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-logo .logo-icon { font-size: 28px; color: #FFD700; }
.footer-logo .logo-title { color: #ffffff; font-size: 20px; font-weight: 700; margin: 0; line-height: 1; }
.footer-logo .logo-highlight { color: #FFD700; }
.footer-logo .logo-tagline { color: #8c8c9a; font-size: 9px; letter-spacing: 1px; font-weight: 600; display: block; margin-top: 2px;}

/* Social Icons & Blue Neon Hover */
.social-icons {
    display: flex;
    gap: 12px;
}
.social-icons a {
    display: flex; justify-content: center; align-items: center;
    width: 35px; height: 35px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.05); color: #ffffff;
    text-decoration: none; transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-icons a:hover {
    background: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.8); /* Blue Neon */
    transform: translateY(-3px);
}

/* Quick Links & Yellow Neon Hover */
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a {
    color: #8c8c9a;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-links ul li a:hover {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6); /* Yellow Neon */
    transform: translateX(5px); /* Smooth move right */
}

/* Newsletter Area */
.newsletter-form {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    overflow: hidden;
    height: 42px;
}
.newsletter-form input {
    flex-grow: 1; background: transparent; border: none;
    padding: 0 15px; color: #fff; font-size: 13px; outline: none;
    font-family: 'Poppins', sans-serif;
}
.newsletter-form button {
    background: #FFD700; color: #000; border: none;
    padding: 0 20px; cursor: pointer; font-size: 15px; transition: 0.3s;
}
.newsletter-form button:hover {
    background: #e6c200;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* Yellow Neon */
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    font-size: 12px;
}
.payment-methods {
    display: flex; gap: 15px; font-size: 24px; color: #475569;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    .footer-address { grid-column: span 3; }
}
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-address, .footer-newsletter { grid-column: span 2; }
    .footer-bottom .flex-container { flex-direction: column; gap: 10px; align-items: center; justify-content: center;}
}
@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-address, .footer-newsletter, .footer-links { grid-column: span 1; }
}