/* ========================================
   FOOTER - Compact Horizontal Design
======================================== */

footer,
.site-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: var(--color-white);
    padding: 25px 0 15px 0;
    margin-top: 30px;
}

.footer-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid,
.site-footer .region {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 0;
    flex-wrap: nowrap;
    width: 100%;
}

.site-footer .block {
    border: none !important;
    padding: 0 20px !important;
    margin: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    flex: 1;
    min-width: 0;
}

.footer-column h3,
.site-footer h2,
.site-footer h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    padding: 0;
    color: #ffffff;
    letter-spacing: 1.2px;
}

.footer-column ul,
.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li,
.site-footer li {
    margin-bottom: 5px;
}

.footer-column a,
.site-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    line-height: 1.5;
    transition: color var(--transition-base);
}

.footer-column a:hover,
.site-footer a:hover {
    color: #4ecdc4;
}

.site-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.5;
    margin: 0 0 5px 0;
}

/* Contact Icons for Contact Us Block */
#block-bootstrap-barrio-subtheme-contactus .field__label {
    display: none;
}

#block-bootstrap-barrio-subtheme-contactus .field {
    margin-bottom: 12px;
}

/* Address Field with Location Icon */
.field--name-field-address .field__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
    padding-left: 32px;
}

.field--name-field-address .field__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background-image: url('../../images/location.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.field--name-field-address .field__item p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.6;
}

/* Phone Field with Phone Icon */
.field--name-field-phone-number .field__item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.field--name-field-phone-number .field__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../../images/phone.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Email Field with Email Icon */
.field--name-field-email .field__item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    padding-left: 32px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.field--name-field-email .field__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url('../../images/email.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 12px;
    margin-top: 15px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {

    .footer-grid,
    .site-footer .region {
        gap: 30px;
    }

    .footer-column a,
    .site-footer a,
    .site-footer p {
        font-size: 11px;
    }
}

@media (max-width: 768px) {

    footer,
    .site-footer {
        padding: 20px 0 12px 0;
        margin-top: 25px;
    }

    .footer-grid,
    .site-footer .region {
        flex-wrap: wrap;
        gap: 20px;
    }

    .site-footer .block {
        flex: 1 1 calc(50% - 10px);
        min-width: 150px;
    }

    .footer-bottom {
        margin-top: 12px;
        padding-top: 10px;
    }
}

@media (max-width: 576px) {

    footer,
    .site-footer {
        padding: 18px 0 10px 0;
        margin-top: 20px;
    }

    .footer-grid,
    .site-footer .region {
        flex-direction: column;
        gap: 15px;
    }

    .site-footer .block {
        flex: 1 1 100%;
    }

    .footer-bottom {
        margin-top: 10px;
        padding-top: 8px;
    }
}