/* Minimalistic Footer Design - Replacing Previous Content */

.footer {
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.4) 100%), #0a0a0a !important;
    border-top: 1px solid rgba(139, 0, 0, 0.15) !important;
    padding: 0 !important;
    margin-top: 4rem !important;
}

/* Clean Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 2rem;
}

/* Main Footer Content */
.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Logo/Brand Section */
.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #8b0000, #ff4444);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Social Links - Minimal Style */
.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.footer-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 0, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-social a:hover::before {
    left: 100%;
}

.footer-social a:hover {
    background: rgba(139, 0, 0, 0.08);
    border-color: rgba(139, 0, 0, 0.25);
    color: #ff4444;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.15);
}

/* Navigation Links */
.footer-nav {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-nav-section {
    min-width: 120px;
}

.footer-nav-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 0.5rem;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: inline-block;
}

.footer-nav-list a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #8b0000;
    transition: width 0.3s ease;
}

.footer-nav-list a:hover {
    color: #ff4444;
    transform: translateX(2px);
}

.footer-nav-list a:hover::after {
    width: 100%;
}

/* Newsletter Section - Minimal */
.footer-newsletter {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
}

.footer-newsletter-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-newsletter-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.75rem;
    align-items: stretch;
}

.footer-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 0;
}

.footer-newsletter-input:focus {
    outline: none;
    border-color: rgba(139, 0, 0, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
}

.footer-newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-btn {
    background: linear-gradient(135deg, #8b0000, #a50000);
    border: 1px solid #8b0000;
    border-radius: 8px;
    padding: 0.75rem 1.75rem;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    min-width: 110px;
    flex-shrink: 0;
}

.footer-newsletter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-newsletter-btn:hover::before {
    left: 100%;
}

.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, #a50000, #c70000);
    border-color: #a50000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
}

.footer-newsletter-btn:active {
    transform: translateY(0);
}

/* Footer Bottom - Ultra Clean */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8b0000, transparent);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
    font-weight: 400;
}

.footer-legal {
    display: flex;
    gap: 2.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(139, 0, 0, 0.6);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-legal a:hover::after {
    width: 100%;
}

/* Override any existing footer styles */
.footer * {
    box-sizing: border-box;
}

/* Remove any conflicting styles from old footer */
.footer .footer-content {
    display: none !important;
}

.footer .footer-section {
    display: none !important;
}

/* Ensure our footer styles take precedence over main.css */
.footer {
    display: block !important;
}

.footer .footer-nav {
    display: flex !important;
    gap: 4rem !important;
    flex-wrap: wrap !important;
    justify-content: flex-start !important;
}

.footer .footer-nav a {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    transition: color 0.2s ease !important;
}

.footer .footer-nav a:hover {
    color: #8b0000 !important;
}

.footer .footer-social {
    display: flex !important;
    gap: 1rem !important;
}

.footer .social-link {
    display: none !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        gap: 2rem;
    }
    
    .footer-nav-section {
        min-width: 100px;
    }
    
    .footer-newsletter {
        max-width: none;
    }
      .footer-newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-newsletter-btn {
        width: 100%;
        min-width: auto;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 2rem 1rem 1.5rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
}
