/**
 * PIRANOT V32 — Footer Evolution (Hybrid Dark + HUB Chips)
 */

.pira-footer-v32 {
    background: #111827;
    color: #9ca3af;
    padding: 60px 0 30px;
    border-top: 5px solid #0b3b8f;
}

/* HUB CHIPS AREA (TOP OF FOOTER) */
.pira-footer-chips {
    background: white;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #e5e7eb;
}

.pira-footer-chips h3 {
    color: #1f2937;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.chips-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.chip-item {
    padding: 10px 20px;
    border: 2px solid #f3f4f6;
    border-radius: 50px;
    color: #4b5563;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
}

.chip-item:hover {
    background: #0b3b8f;
    color: white;
    border-color: #0b3b8f;
    transform: translateY(-2px);
}

/* MAIN FOOTER CONTENT */
.footer-main-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-box img {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover { color: #ffd200; }

/* BOTTOM BAR */
.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

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

.social-icon {
    width: 35px;
    height: 35px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.social-icon:hover { background: #0b3b8f; }

@media (max-width: 768px) {
    .footer-main-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 20px; text-align: center; }
    .chips-wrapper { padding: 0 10px; }
}
