/**
 * DeclarAI Footer Styles
 * 
 * @package Loraic
 */

.pxl-footer-declar {
    background: #01689A;
    color: #ffffff;
    padding: 80px 0 40px;
}

.pxl-footer-container {
    max-width: 1330px;
    margin: 0 auto;
    padding: 0;
}

/* Main Footer Content */
.pxl-footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

/* Left Section - Company Info */
.pxl-footer-left {
    max-width: 500px;
}

.pxl-footer-brand {
    margin-bottom: 24px;
    line-height: 1;
}

.pxl-footer-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.pxl-footer-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 32px 0;
}

.pxl-footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pxl-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.pxl-contact-icon {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: rgba(255, 255, 255, 0.9);
}

/* Right Section - Navigation */
.pxl-footer-right {
    display: flex;
    justify-content: flex-end;
}

.pxl-footer-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pxl-footer-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
}

.pxl-footer-link:hover {
    color: #ffffff;
}

/* Footer Bottom */
.pxl-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pxl-footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.pxl-footer-legal {
    display: flex;
    gap: 24px;
}

.pxl-legal-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: color 0.2s ease;
}

.pxl-legal-link:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 968px) {
    .pxl-footer-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .pxl-footer-right {
        justify-content: flex-start;
    }

    .pxl-footer-left {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pxl-footer-declar {
        padding: 60px 0 30px;
    }

    .pxl-footer-container {
        padding: 0 20px;
    }

    .pxl-footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pxl-footer-legal {
        flex-direction: column;
        gap: 12px;
    }

    .pxl-footer-brand {
        font-size: 28px;
    }
}

