.hcbi-footer {
    background: #F5A623;
    padding: 52px 80px 32px;
    font-family: 'Montserrat', sans-serif;
}

/* Grid */
.hcbi-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.2fr 1.2fr 0.9fr;
    gap: 48px;
    align-items: start;
}

/* Column: Brand */
.hcbi-footer-brand h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hcbi-footer-brand p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    margin-bottom: 24px;
}

.hcbi-footer-socials {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .hcbi-footer-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        color: #fff;
        text-decoration: none;
        transition: background 0.2s, border-color 0.2s;
    }

        .hcbi-footer-socials a:hover {
            background: rgba(255,255,255,0.2);
            border-color: #fff;
        }

    .hcbi-footer-socials svg {
        width: 17px;
        height: 17px;
        fill: #fff;
    }

/* Column: Contact */
.hcbi-footer-col h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hcbi-footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

    .hcbi-footer-contact-item svg {
        width: 17px;
        height: 17px;
        fill: #fff;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .hcbi-footer-contact-item span,
    .hcbi-footer-contact-item a {
        font-size: 1.2rem;
        color: rgba(255,255,255,0.93);
        line-height: 1.6;
        text-decoration: none;
    }

        .hcbi-footer-contact-item a:hover {
            color: #fff;
            text-decoration: underline;
        }

/* Column: Newsletter */
.hcbi-footer-newsletter h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
}

.hcbi-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hcbi-newsletter-row {
    display: flex;
    height: 35px;
}

    .hcbi-newsletter-row input[type="email"] {
        flex: 1;
        padding-block: 5px;
        padding-inline: 10px;
        border: none;
        outline: none;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.2rem;
        color: #444;
        background: #fff;
    }

        .hcbi-newsletter-row input[type="email"]::placeholder {
            color: #aaa;
        }

    .hcbi-newsletter-row button {
        background: #1a3a6c;
        color: #fff;
        border: none;
        padding-inline: 28px;
        font-family: 'Montserrat', sans-serif;
        font-size: 1.3rem;
        cursor: pointer;
        transition: background 0.2s;
        white-space: nowrap;
    }

        .hcbi-newsletter-row button:hover {
            background: #122a52;
        }

        .hcbi-newsletter-row button:disabled {
            background: grey;
            cursor: not-allowed;
            /*opacity: 0.6;*/
        }

/* reCAPTCHA card wrapper */
.hcbi-recaptcha-wrap {
    background: #fff;
    border-radius: 8px;
    padding: 12px;
    margin-top: 4px;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.g-recaptcha {
    transform-origin: left top;
}

.hcbi-newsletter-form button {
    background: #1a3a6c;
    color: #fff;
    border: none;
    padding: 0;
    padding-inline: 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    height: 35px;
    margin-left: -4px;
}

    .hcbi-newsletter-form button:hover {
        background: #122a52;
    }

/* Column: Logo */
.hcbi-footer-logo-col {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
    padding-top: 8px;
}

.hcbi-footer-logo-wrap {
    text-align: center;
}

.hcbi-footer-logo-icon {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hcbi-footer-logo-letters {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    line-height: 1;
    letter-spacing: -1px;
}

.hcbi-footer-logo-sub {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    text-align: center;
    margin-top: 4px;
    line-height: 1.4;
}

/* Copyright bar */
.hcbi-footer-copyright {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.25);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.75);
    font-family: 'Montserrat', sans-serif;
}

    .hcbi-footer-copyright strong {
        color: #fff;
    }

/* Responsive */
@media (max-width: 900px) {
    .hcbi-footer {
        padding: 44px 24px 28px;
    }

    .hcbi-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hcbi-footer-logo-col {
        justify-content: flex-start;
    }
}

@media (max-width: 560px) {
    .hcbi-footer-grid {
        grid-template-columns: 1fr;
    }
}


.hcbi-footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

    .hcbi-footer-socials a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

        .hcbi-footer-socials a:hover {
            transform: scale(1.1);
        }

.social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
