/* Aventra Premium Footer Styles */
.aventra-footer {
    background: #000818; /* Very Dark Blue */
    color: #fff;
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.aventra-footer-top {
    position: relative;
    margin-bottom: 60px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.aventra-footer-top .container {
    position: relative;
    z-index: 10;
}

.footer-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
}

.footer-logo-section {
    background: #ff0000; /* Pure Red from brand */
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
    min-width: 300px;
}

.footer-logo-section img {
    height: 60px;
    filter: brightness(0) invert(1); /* Make logo white if needed, or keep original */
}

.footer-info-section {
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.footer-info-section .container {
    margin: 0;
    max-width: 100%;
    padding-left: 60px;
}

.footer-info-section h3 {
    font-size: 2.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff0000;
}

.footer-info-section p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.aventra-footer-main {
    padding: 60px 0 60px;
}

.aventra-footer-main .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h4 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #ff0000;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
}

.footer-contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-contact-item .icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.footer-contact-content strong {
    display: block;
    font-size: 1.6rem;
    margin-bottom: 5px;
}

.footer-contact-content span {
    font-size: 1.5rem;
    opacity: 0.8;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 15px;
}

.footer-links-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-list a::before {
    content: '→';
    color: #ff0000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: #ff0000;
    padding-left: 10px;
}

.aventra-footer-bottom {
    background: #00040d; /* Even darker */
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 1.4rem;
    opacity: 0.7;
}

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

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    background: #ff0000;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .footer-top-inner {
        flex-direction: column;
        border-radius: 20px;
    }
    .footer-logo-section {
        clip-path: none;
        padding: 30px;
    }
    .footer-info-section {
        padding: 30px;
        text-align: center;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
