/*
 * Huteco — Footer
 */

/* ── Reset Flatsome footer ───────────────────────────────────────────────── */
#footer,
.flatsome-footer {
    display: none !important;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.huteco-footer {
    --ft-bg:        #0F0F1A;
    --ft-bg-card:   #181828;
    --ft-border:    rgba(255,255,255,0.08);
    --ft-text:      rgba(255,255,255,0.9);
    --ft-muted:     rgba(255,255,255,0.45);
    --ft-label:     rgba(255,255,255,0.4);
    --ft-accent:    #27b3e9;
    --ft-btn-bg:    #27b3e9;
    --ft-btn-hover: #1a95c8;

    background: var(--ft-bg);
    color: var(--ft-text);
    padding: 3rem 0 1.5rem;
    font-family: var(--huteco-font, 'Inter', sans-serif);
}

.huteco-footer__inner {
    max-width: var(--huteco-container, 1200px);
    margin: 0 auto;
    padding: 0 var(--huteco-container-px, 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

/* ── Brand ───────────────────────────────────────────────────────────────── */
.huteco-footer__logo-link img {
    height: 80px;
    width: auto;
}

.huteco-footer__brand-name {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--ft-text);
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ── Contact list ────────────────────────────────────────────────────────── */
.huteco-footer__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
    text-align: left;
}

.huteco-footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.huteco-footer__contact-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(39,179,233,0.12);
    color: var(--ft-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.huteco-footer__contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.huteco-footer__contact-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ft-label);
}

.huteco-footer__contact-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ft-text);
    word-break: break-all;
}

.huteco-footer__contact-value--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.huteco-footer__contact-value--link:hover {
    color: var(--ft-accent);
}

/* ── Socials ─────────────────────────────────────────────────────────────── */
.huteco-footer__socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.huteco-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    border: 1px solid var(--ft-border);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.huteco-footer__socials a:hover {
    background: var(--ft-accent);
    border-color: var(--ft-accent);
}

.huteco-footer__socials img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

/* ── Policy buttons ──────────────────────────────────────────────────────── */
.huteco-footer__policies {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.huteco-footer__policy-btn {
    display: inline-block;
    padding: 7px 18px;
    background: var(--ft-btn-bg);
    color: #fff;
    font-family: var(--huteco-font, 'Inter', sans-serif);
    font-size: 0.8125rem;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.huteco-footer__policy-btn:hover {
    background: var(--ft-btn-hover);
    color: #fff;
}

/* ── Divider ─────────────────────────────────────────────────────────────── */
.huteco-footer__inner::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: var(--ft-border);
    order: 99;
}

/* ── Bottom / copyright ──────────────────────────────────────────────────── */
.huteco-footer__bottom {
    order: 100;
}

.huteco-footer__copyright {
    font-size: 0.8125rem;
    color: var(--ft-muted);
    margin: 0;
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .huteco-footer__policies {
        flex-direction: column;
        width: 100%;
    }

    .huteco-footer__policy-btn {
        width: 100%;
        text-align: center;
    }
}
