/* ─────────────────────────────────────────────
   Site Footer
   ───────────────────────────────────────────── */

.site-footer {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: rgba(255, 255, 255, 0.85);
}

/* ── Main area ── */
.footer-main {
    padding: 38px 0 28px;
}

/* ── "Contact Us" heading ── */
.footer-heading {
    margin: 0 0 16px;
    color: #fff;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
}

/* ── Info row: contact details + social icons on ONE line ── */
.footer-info-row {
    display: grid;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    grid-template-columns: auto 1fr;
}

.footer-social-group {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
}

/* ── Contact group (phone · email · address) ── */
.footer-contact-group {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 36px;
    padding-top: 20px;
}

.footer-contact-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.5;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.footer-contact-link:hover {
    color: #fff;
    text-decoration: none;
}

.footer-address {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.55;
}

/* ── Social icons ── */
.footer-social-links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.footer-social {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.85;
    transform: translateY(-2px);
}

.footer-social-facebook {
    background: #1877f2;
}

.footer-social-youtube {
    background: #ff0000;
}

.footer-social-instagram {
    background: linear-gradient(135deg, #feda75, #d62976 50%, #4f5bd5);
}

.footer-social-spotify {
    background: #1db954;
    font-size: 13px;
    font-weight: 800;
}

.footer-social-podcast {
    background: #9b59b6;
}

.footer-social-applepodcast {
    background: linear-gradient(135deg, #f452ff, #832bc1);
}

/* ── Bottom bar ── */
.footer-bottom {
    padding: 14px 0;
    /* border-top: 1px solid rgba(255, 255, 255, 0.35); */
    margin-top: 28px;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    padding-top: 20px;
}

/* ── Footer navigation ── */
.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 28px;
    align-items: center;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: none;
}

/* ── Right side (copyright · terms · credit) ── */
.footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    align-items: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.footer-terms {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.footer-terms:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-style: italic;
}

/* ─── Responsive ─── */
@media (max-width: 959px) {
    .footer-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        display: flex;
    }

    .footer-social-links {
        justify-content: flex-start;
    }

    .footer-social-group {
        flex-wrap: wrap;
        gap: 20px;
    }

    .footer-bottom {
        margin-top: 0px;
    }

    .footer-heading {
        margin-bottom: 0px !important;
    }

    .our-team-feedback-section {
        padding-top: 20px !important;
    }
}

@media (max-width: 639px) {
    .footer-main {
        padding: 40px 0 0px;
    }

    .footer-heading {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .footer-contact-group {
        flex-direction: column;
        gap: 8px;
    }

    .footer-social {
        width: 28px;
        height: 28px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .footer-nav {
        gap: 4px 18px;
    }

    .footer-bottom-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}