.modern-footer {
    background: #5A0B44 !important;
    color: #FFFFFF !important;
    padding: 16px 0 8px 0 !important;
    position: relative;
    border-top: 2px solid #5d3fd3;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Subtle gradient glow above the border to match reference */
.modern-footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* Increased side padding */
}

.footer-content {
    display: grid !important;
    grid-template-columns: 1.5fr 0.8fr 1fr 1.2fr !important;
    gap: 40px;
    margin-bottom: 10px;
    align-items: start;
}

/* Column Styling */
.footer-column {
    display: flex;
    flex-direction: column;
    min-width: 0 !important;
    width: 100% !important;
    padding: 0 !important;
}

.footer-section-title {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #FFFFFF !important;
    margin: 0 0 14px 0 !important;
    letter-spacing: 0.5px;
}

/* Brand Column */
.footer-logo-img {
    height: 32px !important;
    max-width: 140px !important;
    width: auto;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.brand-tagline {
    font-size: 13px !important;
    line-height: 1.5 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 0 14px 0 !important;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05); /* Subtle dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #FFFFFF !important;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor !important;
}

/* Links & Nav */
.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: all 0.2s ease;
    font-weight: 400;
}

.footer-link:hover {
    color: #FFFFFF !important;
    padding-left: 4px; /* Subtle interaction */
}

/* Contact Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-icon {
    width: 16px;
    height: 16px;
    color: #8b5cf6;
}

.contact-link {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #FFFFFF !important;
}

/* Newsletter Column */
.newsletter-desc {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 20px !important;
    line-height: 1.5;
}

.newsletter-input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px; /* More rounded as per theme */
    padding: 6px;
    transition: border-color 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #8b5cf6;
}

.footer-newsletter-form input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    padding: 10px 14px;
    color: white;
    font-size: 14px;
    outline: none;
    min-width: 0;
}

.footer-newsletter-form button {
    background: #5d3fd3;
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.footer-newsletter-form button:hover {
    background: #8b5cf6;
    transform: scale(1.02);
}

/* Footer Bottom Area */
.footer-bottom {
    margin-top: 10px !important;
    padding: 8px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    width: 100% !important;
    position: relative !important;
    clear: both !important;
    background: transparent !important;
}

.copyright {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
    flex: 0 1 auto !important;
    text-align: left !important;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 6px 16px !important;
    border-radius: 50px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex: 0 1 auto !important;
    white-space: normal !important;
    text-align: center !important;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #10b981; /* Success green dot */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px;
    }
    
    .footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    
    .modern-footer {
        padding: 24px 0 12px 0 !important;
    }

    .footer-container {
        padding: 0 24px;
    }

    .footer-bottom {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .copyright {
        text-align: center !important;
    }
}
