/* Footer Glass UI Styles — Externalized from footer.php */

/* Footer Glass Link Styles */
.footer-link {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.25s, padding-left 0.25s;
    font-size: 0.875rem;
}
.footer-link:hover {
    color: #D4AF37;
    padding-left: 4px;
}

/* Consistent footer text */
.footer-heading {
    font-size: 0.85rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase;
    color: #fff;
}
.footer-main .small,
.footer-main ul,
.footer-main li,
.footer-main p {
    font-size: 0.875rem;
    line-height: 1.8;
}
.footer-bottom,
.footer-bottom p,
.footer-bottom a,
.footer-legal-links a {
    font-size: 0.82rem !important;
}
.footer-branding p {
    font-size: 0.9rem !important;
}

/* WhatsApp Float — Glass */
.pt-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}
.pt-whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37,211,102,0.45);
    color: white;
}
.pt-whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: rgba(10,25,47,0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-family: inherit;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid rgba(255,255,255,0.08);
}
.pt-whatsapp-float:hover .pt-whatsapp-tooltip { opacity: 1; }

/* Back to Top — Glass Button */
.pt-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 9999;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
}
.pt-back-to-top.visible { opacity: 1; visibility: visible; }
.pt-back-to-top:hover {
    transform: translateY(-4px);
    background: rgba(212,175,55,0.2);
    border-color: rgba(212,175,55,0.4);
    box-shadow: 0 8px 25px rgba(212,175,55,0.25);
}

/* Pill checkbox interactive */
.pt-pill-check { transition: all 0.2s; }
.pt-pill-check:hover { border-color: var(--color-cobalt, #1E73BE) !important; background: #EFF6FF !important; }
.pt-pill-check.selected, .pt-pill-check:has(input:checked) {
    border-color: var(--color-cobalt, #1E73BE) !important;
    background: #DBEAFE !important;
    color: var(--color-cobalt, #1E73BE);
    font-weight: 600;
}

/* Cookie Consent Banner */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10,25,47,0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
}
#cookie-consent .small {
    color: rgba(255,255,255,0.7);
    max-width: 700px;
}
#cookie-consent a {
    color: #D4AF37;
    text-decoration: underline;
}
#reject-cookies {
    padding: 8px 20px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
}
#accept-cookies {
    padding: 8px 24px;
    background: linear-gradient(135deg, #1E73BE, #2196F3);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(30,115,190,0.3);
}

@media (max-width: 767px) {
    .pt-whatsapp-float { width: 50px; height: 50px; font-size: 26px; bottom: 20px; left: 20px; }
    .pt-back-to-top { width: 40px; height: 40px; bottom: 20px; right: 20px; }
}
