/* Footer Component
------------------------------------------ */
.footer {
    background-color: var(--dark);
}

.footer h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer address {
    font-style: normal;
    line-height: 1.6;
}

.footer a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--gold);
}

/* Privacy Policy link styling */
.footer .text-muted {
    color: rgba(255, 255, 255, 0.6);
}

.footer .social-links a {
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: transform 0.2s ease, color 0.3s ease;
}

.footer .social-links a:hover {
    transform: translateY(-2px);
    color: var(--gold);
}

/* Prominent company links styling */
.footer .fw-semibold {
    font-weight: 600;
}

.footer .icon-xs {
    width: 14px;
    height: 14px;
}

.footer .icon-sm {
    width: 20px;
    height: 20px;
}

/* Latest guides styling */
.footer .latest-guides-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.75rem;
}

.footer .latest-guides-item:last-child {
    border-bottom: none;
}

.footer .guide-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer .guide-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Responsive
------------------------------------------ */
@media (max-width: 767.98px) {
    .footer h3 {
        margin-top: 1rem;
    }
} 