/* =========================================
   FOOTER CTA BAND
========================================= */

.footer-cta-band {
    padding: 46px 20px;
    text-align: center;
    background: linear-gradient(135deg, #0a99a5, #003e50);
}

.footer-cta-band h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 26px;
    font-weight: 700;
}

.footer-cta-band p {
    margin: 0 0 22px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "DM Sans", sans-serif;
    font-size: 14.5px;
}

.footer-cta-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 8px;
    background: #ffffff;
    color: #003e50;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta-btn:hover {
    color: #003e50;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

/* =========================================
   FOOTER
========================================= */

.site-footer {
    background: #071613;
    padding: 64px 0 0;
    color: rgba(255, 255, 255, 0.65);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.3fr;
    gap: 32px;
    padding-bottom: 48px;
}

.footer-brand-col .brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 14px;
}

.footer-brand-col .brand-mark img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.footer-brand-col .brand-word {
    display: block;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.footer-tagline {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 20px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    font-size: 14px;
}

.footer-social a:hover {
    background: var(--brand-teal, #00b8ad);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-col-title {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 12px;
}

.footer-links a {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
    color: var(--brand-teal, #00b8ad);
    padding-left: 3px;
}

.footer-contact-address {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 14px;
}

.footer-contact-list {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
}

.footer-contact-list li + li {
    margin-top: 10px;
}

.footer-contact-list a {
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: var(--brand-teal, #00b8ad);
}

.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 22px;
    border-radius: 999px;
    background: linear-gradient(100deg, #00b5ad 0%, #0872bf 100%);
    color: #ffffff;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 124, 175, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-whatsapp-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0, 124, 175, 0.32);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--brand-teal, #00b8ad);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991.98px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 36px;
    }
}

@media (max-width: 575.98px) {
    .site-footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        justify-content: flex-start;
    }
}
