/* Pironex Footer Module */

.pironex-footer {
    background: #1a1a1a;
    color: rgba(255, 255, 255, 0.6);
    padding: 48px 20px 24px;
}

.pironex-footer .footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.pironex-footer .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.pironex-footer .footer-logo {
    font-family: var(--font-h, "Century Gothic", CenturyGothic, AppleGothic, sans-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.pironex-footer .footer-address {
    font-size: 0.95rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.5);
    font-style: normal;
}

.pironex-footer .footer-col h4 {
    font-size: 0.85rem !important;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 14px;
}

.pironex-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pironex-footer .footer-col a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.pironex-footer .footer-col a:hover {
    color: #fff;
}

.pironex-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.95rem;
}

.pironex-footer .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.pironex-footer .footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
}

.pironex-footer .footer-links a:hover {
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 900px) {
    .pironex-footer .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .pironex-footer .footer-top {
        grid-template-columns: 1fr;
    }
}