/* ============================================================
   ByClinic footer
   ============================================================ */

.bc-footer {
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    margin-top: 0;
}

.bc-footer * { box-sizing: border-box; }

.bc-footer__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Main section ===== */
.bc-footer__main {
    padding: 4rem 0 3rem;
}

.bc-footer__container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}

.bc-footer__main .bc-footer__container {
    align-items: start;
}

/* Brand column */
.bc-footer__col--brand {
    padding-right: 1rem;
}
.bc-footer__logo {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity 0.15s ease;
}
.bc-footer__logo:hover { opacity: 0.85; }
.bc-footer__logo img {
    max-width: 160px;
    height: auto;
    display: block;
}

.bc-footer__tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0 0 1.5rem;
}

.bc-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bc-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}
.bc-footer__contact li svg {
    color: var(--bc-teal, #1ab5a8);
    flex-shrink: 0;
    margin-top: 0.18rem;
}
.bc-footer__contact a,
.bc-footer__contact address {
    color: inherit;
    text-decoration: none;
    font-style: normal;
    transition: color 0.15s ease;
}
.bc-footer__contact a:hover {
    color: var(--bc-teal, #1ab5a8);
}

/* Standard columns */
.bc-footer__heading {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 1.25rem;
    line-height: 1.3;
    text-transform: none;
    letter-spacing: 0;
}
.bc-footer__heading a {
    color: inherit;
    text-decoration: none;
    transition: color 0.15s ease;
}
.bc-footer__heading a:hover {
    color: var(--bc-teal, #1ab5a8);
}

.bc-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.bc-footer__list li {
    margin-bottom: 0.55rem;
    font-size: 0.85rem;
    line-height: 1.4;
}
.bc-footer__list a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.15s ease, padding 0.15s ease;
    display: inline-block;
}
.bc-footer__list a:hover {
    color: var(--bc-teal, #1ab5a8);
    padding-left: 3px;
}

/* ===== Bottom strip ===== */
.bc-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
    background: #050505;
}
.bc-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    grid-template-columns: none;
}
.bc-footer__copyright,
.bc-footer__credit {
    margin: 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}
.bc-footer__credit a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}
.bc-footer__credit a:hover {
    color: var(--bc-teal, #1ab5a8);
}

/* ===== Responsive ===== */
@media (max-width: 1100px) {
    .bc-footer__main .bc-footer__container {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2.5rem 2rem;
    }
    .bc-footer__col--brand {
        grid-column: 1 / -1;
        max-width: 480px;
    }
}

@media (max-width: 700px) {
    .bc-footer__main {
        padding: 3rem 0 2rem;
    }
    .bc-footer__container {
        padding: 0 1.25rem;
    }
    .bc-footer__main .bc-footer__container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    .bc-footer__col--brand {
        grid-column: 1 / -1;
        max-width: none;
        padding-right: 0;
    }
    .bc-footer__bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 0.4rem;
    }
}

@media (max-width: 480px) {
    .bc-footer__main .bc-footer__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .bc-footer__heading { font-size: 1rem; margin-bottom: 1rem; }
    .bc-footer__list li { font-size: 0.9rem; margin-bottom: 0.65rem; }
}