.footer {
    padding: 0;
    background-color: transparent;
    width: 100%;
    position: relative;
    z-index: 20;
    font-family: 'Inter', sans-serif;
}

.footer-wrapper {
    background-color: #111111;
    color: #ffffff;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-bottom: 0;
}

.footer-main {
    background: #1a1a1a; 
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
    padding: 80px 0 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 280px;
    max-width: 420px;
}

.brand-logo {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo img {
    max-width: 150px;
    height: auto;
    display: block;
}

.brand-desc {
    color: #a0a0a0; 
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 380px;
}

.newsletter-cta {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.subscribe-btn {
    display: inline-block;
    background-color: #F59E03; 
    color: #000000 !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 12px 28px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.subscribe-btn:hover {
    background-color: #ffffff;
    color: #F59E03;
    transform: translateY(-2px); 
    box-shadow: 0 6px 12px rgba(245, 158, 3, 0.2);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icons a svg {
    width: 16px;
    height: 16px;
    fill: #ffffff;
    transition: fill 0.3s;
}

.social-icons a:hover {
    background: #F59E03;
    border-color: #F59E03;
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(245, 158, 3, 0.3);
}

.social-icons a:hover svg {
    fill: #000000;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.link-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 120px;
}

.link-column h4 {
    color: #fff;
    margin: 0 0 20px 0;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.link-column a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 0.95rem;
    padding: 3px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.link-column a:hover {
    color: #F59E03;
    transform: translateX(6px); 
}

.footer-copyright {
    text-align: center;
    padding: 25px 20px;
    background-color: #111;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}


@media (max-width: 992px) {
    .footer-content {
        gap: 40px;
    }
    
    .footer-links {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 50px 0 40px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .brand-logo {
        justify-content: center;
    }
    
    .brand-desc {
        margin: 0 auto 25px auto;
        padding: 0 10px; 
    }

    .newsletter-cta {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }

    .footer-links {
        width: 100%;
        justify-content: space-between; 
        gap: 40px 10px; 
        text-align: left; 
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .link-column {
        width: 45%; 
        align-items: flex-start;
    }
}


@media (max-width: 400px) {
    .footer-links {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .link-column {
        width: 100%;
        align-items: center;
    }
}