/* ═══════════════════════════════════════════════════════
   COMPONENTS — Footer
   Extracted from layout_desktop.php & layout_mobile.php
   ═══════════════════════════════════════════════════════ */

/* ═══════ DESKTOP FOOTER ═══════ */
.pro-footer {
    margin-top: 40px;
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.pro-footer-gold-line {
    height: 2px;
    background: linear-gradient(90deg, transparent 5%, #C9A84C 30%, #FFD700 50%, #C9A84C 70%, transparent 95%);
    opacity: 0.7;
}
.pro-footer-links { padding: 40px 40px 30px; }
.pro-footer-cat-title {
    font-size: 0.78rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: #fff; margin-bottom: 16px;
    display: flex; align-items: center; gap: 8px;
}
.pro-footer-cat-title i { color: #C9A84C; font-size: 0.85rem; }
.pro-footer-link {
    display: block; color: #7F8C9B; font-size: 0.82rem;
    text-decoration: none; padding: 4px 0; transition: color 0.2s, padding-left 0.2s;
}
.pro-footer-link:hover { color: #FFD700; padding-left: 4px; }
.pro-footer-sponsors {
    background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.04);
    padding: 30px 40px; text-align: center;
}
.pro-footer-sponsors-title {
    font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 2px; color: #7F8C9B; margin-bottom: 20px;
}
.pro-footer-sponsor-item {
    display: inline-flex; flex-direction: column; align-items: center;
    padding: 12px 20px; margin: 4px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 10px;
    transition: 0.2s; min-width: 140px;
}
.pro-footer-sponsor-item:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(201,168,76,0.3);
}
.pro-footer-sponsor-item img {
    max-height: 40px; max-width: 120px; object-fit: contain;
    margin-bottom: 8px; filter: grayscale(30%); transition: 0.2s;
}
.pro-footer-sponsor-item:hover img { filter: grayscale(0%); }
.pro-footer-sponsor-name { font-size: 0.7rem; font-weight: 700; color: #fff; }
.pro-footer-sponsor-desc { font-size: 0.62rem; color: #7F8C9B; }
.pro-footer-license {
    padding: 30px 40px; text-align: center;
    border-top: 1px solid rgba(255,255,255,0.04);
}
.pro-footer-license-logos {
    display: flex; justify-content: center; align-items: center;
    gap: 14px; margin-bottom: 12px;
}
.pro-footer-altyapi-link { display: inline-flex; margin: 0; }
.pro-footer-altyapi-img {
    height: 48px; width: auto; border-radius: 10px;
    border: 1px solid rgba(201,168,76,0.2); opacity: 0.95;
    transition: transform 0.25s ease, opacity 0.25s ease, border-color 0.25s ease;
}
.pro-footer-altyapi-link:hover .pro-footer-altyapi-img {
    transform: translateY(-2px); opacity: 1;
    border-color: rgba(201,168,76,0.55);
}

@media (max-width: 991px) {
    .pro-footer-license-logos { gap: 10px; }
    .pro-footer-altyapi-img { height: 38px; }
}


/* ═══════ MOBILE FOOTER ═══════ */
.mfooter {
    margin: 20px 0 40px;
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.mfooter-gold {
    height: 2px;
    background: linear-gradient(90deg, transparent, #C9A84C 30%, #FFD700 50%, #C9A84C 70%, transparent);
    opacity: 0.7;
}
.mfooter-cat-title {
    font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.2px; color: #fff; margin-bottom: 10px;
    display: flex; align-items: center; gap: 6px;
}
.mfooter-cat-title i { color: #C9A84C; font-size: 0.78rem; }
.mfooter-link {
    display: block; color: #7F8C9B; font-size: 0.78rem;
    text-decoration: none; padding: 3px 0; transition: color 0.2s;
}
.mfooter-link:hover, .mfooter-link:active { color: #FFD700; }
.mfooter-sponsors {
    background: rgba(0,0,0,0.3); border-top: 1px solid rgba(255,255,255,0.04);
    padding: 20px 15px; text-align: center;
}
.mfooter-sp-title {
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1.5px; color: #7F8C9B; margin-bottom: 14px;
}
.mfooter-sp-item {
    display: inline-flex; flex-direction: column; align-items: center;
    padding: 10px 14px; margin: 3px; background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05); border-radius: 8px; min-width: 100px;
}
.mfooter-sp-item img { max-height: 30px; max-width: 80px; object-fit: contain; margin-bottom: 6px; }
.mfooter-sp-name { font-size: 0.62rem; font-weight: 700; color: #fff; }
.mfooter-sp-desc { font-size: 0.55rem; color: #7F8C9B; }
.mfooter-license-logos {
    display: flex; justify-content: center; align-items: center;
    gap: 8px; margin-bottom: 10px;
}
.mfooter-altyapi-link { display: inline-flex; margin: 0; }
.mfooter-altyapi-img {
    height: 38px; width: auto; border-radius: 8px;
    border: 1px solid rgba(201,168,76,0.2); opacity: 0.96;
    transition: opacity 0.2s ease, border-color 0.2s ease;
}
.mfooter-altyapi-link:active .mfooter-altyapi-img,
.mfooter-altyapi-link:hover .mfooter-altyapi-img {
    opacity: 1; border-color: rgba(201,168,76,0.55);
}
