/* BOXMAR Desktop — Footer & Floating Elements */

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-950);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(200, 146, 42, 0.12);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.85;
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    position: relative;
    padding-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--grad-gold);
    border-radius: 2px;
}

.footer a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all var(--t-base);
}

.footer a:hover {
    color: var(--gold-400);
}

.footer-links a {
    display: block;
    padding: 6px 0;
    font-size: 0.88rem;
    position: relative;
}

.footer-links a::before {
    content: '›';
    color: var(--gold-600);
    margin-right: 6px;
    font-size: 1rem;
    transition: color var(--t-fast);
}

.footer-links a:hover::before {
    color: var(--gold-400);
}

.footer-contact-item {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    font-size: 0.88rem;
    align-items: flex-start;
}

.footer-contact-item .icon {
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer logo */
.footer .nav-logo-img {
    height: 108px;
    filter: drop-shadow(0 4px 12px rgba(200, 146, 42, 0.2));
}

.footer .nav-logo-img:hover {
    filter: drop-shadow(0 4px 20px rgba(200, 146, 42, 0.4));
    transform: none;
}

/* Social links */
.footer-social,
.social-links {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.footer-social a,
.social-link {
    width: 38px !important;
    height: 38px;
    border-radius: var(--radius-full);
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    transition: all var(--t-base);
    cursor: pointer;
}

.footer-social a svg,
.social-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.footer-social a:hover,
.social-link:hover {
    background: var(--grad-gold);
    border-color: var(--gold-400);
    color: var(--navy-900) !important;
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Footer links with icons */
.footer-links-v2 a svg,
.footer-links a svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--t-fast);
}

.footer-links-v2 a:hover svg,
.footer-links a:hover svg {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: var(--space-3xl);
    padding-top: var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.32);
}

.footer-bottom a:hover {
    color: var(--gold-400);
}
