/* ================================
   SECTION SPACING UTILITY CLASSES
   ================================ */
/* .section-block {
    width: 100%;
    padding: 60px 0;
} */
/* 
.section-block--sm  { padding: 40px 0; }
.section-block--lg  { padding: 80px 0; }
.section-block--xl  { padding: 100px 0; }

.section-block--no-top    { padding-top: 0; }
.section-block--no-bottom { padding-bottom: 0; } */


/* ================================
   FOOTER
   ================================ */
.section-footer {
    /* margin-top: 7vw; */
    /* margin-top: 18vw; */
    padding: 0 20px;
    text-align: center;
}

/* Shared row styles */
.footer-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
}
.footer-row:last-child {
    margin-bottom: 0;
}

/* Row 1 */
.footer-find-us {
    font-family: 'Aldrich', sans-serif;
    font-size: 16px;
}

.footer-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social-icon img {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
    transition: opacity 0.2s ease;
}

.footer-social-icon:hover img {
    opacity: 0.7;
}

/* Row 2 */
.footer-logos-row {
    gap: 16px;
}

.footer-logo   { display: block; object-fit: contain; }
.footer-logo-1 { width: 151px; }
.footer-logo-2 { width: 160px; }
.footer-logo-3 { width: 138px; }

/* Row 3 */
.footer-legal-row {
    gap: 24px;
}

.footer-legal-link {
    font-family: 'Aldrich', sans-serif;
    font-size: 16px;
    text-decoration: none;
    color: white;
    transition: opacity 0.2s ease;
}

.footer-legal-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* Row 4 */
.footer-copyright-row {
    flex-direction: column;
    gap: 4px;
    max-width: 100%;
}

.footer-copyright {
    font-family: 'Aldrich', sans-serif;
    font-size: 16px;
    margin: 0;
    color: white;
}


/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 767px) {
    .section-footer{
        padding: 50px 20px;
    }
    .footer-social-row {
        flex-direction: row;
        gap: 10px;
    }

    .footer-logos-row {
        flex-direction: row;
        align-items: center;
    }

    .footer-logo-1,
    .footer-logo-2,
    .footer-logo-3 {
        width: auto;
        max-width: 102px;
    }
}

@media (max-width: 400px) {
    .footer-social-icons { gap: 8px; }
    .footer-legal-row    { gap: 16px; }
    .footer-copyright    { font-size: 13px; }
}

@media (max-width: 360px) {
    .footer-logo-1, .footer-logo-2, .footer-logo-3 {
        max-width: 96px;
    }
}

