.footer-component {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 34px;
    background: #edf0ed;
    color: var(--text-primary, #1d1d1f);
    box-shadow: none;
    flex-shrink: 0;
}

.footer-inner {
    width: min(var(--container-width, 1920px), calc(100% - 120px));
    margin: 0 auto;
    padding: 64px 0 44px;
}

/* Top section: brand row left, socials bottom-right */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

/* Logo + description side by side */
.footer-brand-row {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Stacked logo: HY / DRA / LOOP */
.footer-logo {
    flex-shrink: 0;
}

.footer-logo img {
    display: block;
    width: auto;
    height: clamp(72px, 8vw, 96px);
}

/* Text column next to logo */
.footer-brand-text {
    padding-top: 4px;
    max-width: 300px;
}

/* Orange accent bar */
.footer-accent-bar {
    width: 80px;
    height: 5px;
    border-radius: 3px;
    background: #fa700d;
    margin-bottom: 16px;
}

.footer-description {
    margin: 0;
    color: var(--text-secondary, #555);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social icons row — bottom right */
.footer-socials {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-shrink: 0;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fa700d;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social svg {
    width: 24px;
    height: 24px;
}

.footer-social:hover {
    transform: translateY(-2px);
    opacity: 0.88;
}

/* Bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: none;
}

.footer-copyright {
    color: var(--text-secondary, #555);
    font-size: 0.88rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 32px;
}

.footer-legal-links a {
    color: var(--text-primary, #1d1d1f);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.footer-legal-links a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .footer-inner {
        width: calc(100% - 64px);
        padding: 52px 0 36px;
    }

    .footer-brand-row {
        gap: 28px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-component {
        border-radius: 24px;
    }

    .footer-inner {
        width: calc(100% - 48px);
        padding: 40px 0 32px;
    }

    .footer-top {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .footer-brand-row {
        flex-direction: column;
        gap: 20px;
    }

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

    .footer-social svg {
        width: 17px;
        height: 17px;
    }

    .footer-bottom {
        gap: 16px;
        padding-top: 20px;
    }

    .footer-legal-links {
        justify-content: flex-start;
        gap: 14px 18px;
    }
}
