/* Footer Styles */
.footer-wrapper {
    background-color: #fff;
    color: #111827;
    padding: 5rem 0;
    border-top: 1px solid #eceef2;

}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem; /* px-4 */
}

.footer-content {
    display: block;
}

@media (min-width: 800px) { /* md */
    .footer-content {
        flex-direction: row;
    }
}
.footer-info{
    color: #565b64;
    display: flex;
    flex-direction: column;
    font-size: 13px;
    gap: 4px;
    line-height: 20px;
    margin: 2rem 0;
}

.footer-info-row{display: flex;
    gap: 8px;
    position: relative;}

.company-text-bold{ font-weight: 700;}

.company-text-btn{

    font-size: 13px;
    font-weight: 700;
    line-height: 20px;
    appearance: none;
    border: none;
    background: none;
    cursor: pointer;
}
.brand-section {
    margin-bottom: 1rem; /* mb-4 */
    text-align: center;
}

@media (min-width: 800px) { /* md */
    .brand-section {
        margin-bottom: 0;
        text-align: left;
    }
}

.footer-logo {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;

}

.copyright {
    font-size: 0.875rem;
    color: #9ca3af;
    padding: 3rem 0 0;
    border-top: 1px solid #eceef2;
}

.footer-links {
    display: flex;
    gap: 1.5rem; /* space-x-6 */
    font-size: 0.875rem; /* text-sm */
    padding: 1rem 0;
    align-items: center;
}

.footer-links a {
    color: #111827;
    transition: color 0.15s ease-in-out;
}

.footer-links a:hover {
    color: var(--primary-color); /* hover:text-orange-500 */
}
@media (max-width: 768px) {
    .footer-links {
       font-size: 0.875rem;
               text-align: center;
               display: grid;
               grid-template-columns: repeat(2, 1fr);
               gap: 0.625rem;
               padding: 1rem 15px;
    }
    .footer-links a {

        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0.75rem 0.5rem;
        border: 1px solid #e5e7eb;
        border-radius: 12px;
        background: #fafafa;
        font-size: 0.875rem;
        font-weight: 500;
        color: #444;
        text-decoration: none;
        text-align: center;
        line-height: 1.4;
        transition: all 0.2s ease;
        }
    .footer-info{

        display: flex;
        flex-direction: column;
        font-size: 13px;
        gap: 4px;
        line-height: 20px;
        margin: 1rem 1rem;
        text-align: center;
        word-break: keep-all;
    }
    .footer-info-row {
        display: flex;
        gap: 8px;
        position: relative;
        flex-direction: column;
    }
    .copyright{
        padding: 2rem 0 0;
        text-align: center;
    }
    .footer-wrapper{    padding: 3rem 0; }
    .brand-section {margin-bottom: 0.3rem;}


}