/* ==========================================================================
   FOOTER - Clean, Complete, Reassuring
   ========================================================================== */
.site-footer {
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: 6rem 1rem 2rem;
    margin-top: auto;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    color: var(--color-surface);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.footer-brand p {
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 300px;
    line-height: 1.7;
}

.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-surface);
    opacity: 0.5;
    margin-bottom: 1.5rem;
    display: block;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a, .footer-social a {
    color: var(--color-surface);
    text-decoration: none;
    font-size: 1rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-nav a:hover, .footer-social a:hover {
    opacity: 1;
}

/* Footer Acknowledgement & Inclusivity (Kept Intact) */
.footer-acknowledgement {
    max-width: 800px;
    margin: 4rem auto 0;
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(253, 249, 241, 0.1);
}

.footer-acknowledgement p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.footer-inclusivity {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-inclusivity img {
    height: 30px; 
    width: auto;
    border-radius: 2px;
}

/* Bottom Bar */
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    flex-wrap: wrap;
    gap: 1rem;
    /* REMOVED: opacity: 0.6; */
}

/* Apply the fade safely using a translucent color instead of opacity */
.copyright, .legal {
    color: rgba(253, 249, 241, 0.6); /* Soft, faded cream */
}

.legal a {
    color: rgba(253, 249, 241, 0.6);
}

.legal a:hover {
    color: var(--color-surface);
}

/* ==========================================================================
   AGENCY SIGNATURE - Gentle Breathing Heart
   ========================================================================== */
@keyframes gentleHeartbeat {
    0%, 100% { transform: scale(1); }
    20% { transform: scale(1.15); }
    40% { transform: scale(1); }
    60% { transform: scale(1.1); }
    80% { transform: scale(1); }
}

.agency-heart {
    display: inline-block;
    color: #ff6b6b; /* Brighter, warmer coral-red so it pops against the navy */
    animation: gentleHeartbeat 3s infinite ease-in-out;
    margin: 0 0.15rem;
}