/* Footer Section Styling */
#footer {
    background-color: #212529; /* Dark background consistent with portfolio */
    overflow: hidden;
}

.footer-info-col h4 {
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

/* Underline for the "Contacte-nos" title */
.footer-info-col h4::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #db3545; /* Red color from other sections */
    bottom: 0;
    left: 0;
}

.contact-details p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #adb5bd; /* Lighter text for details */
}

.contact-details i {
    color: #db3545; /* Red icon color */
    width: 20px;
    text-align: center;
}

/* Google Maps Iframe Styling */
.footer-map-col iframe {
    border-radius: 0.5rem;
    width: 100%;
    height: 350px;
}

/* Footer Bottom Bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    font-size: 0.9rem;
    color: #adb5bd;
}

/* Mobile-first responsive adjustments */
@media (max-width: 991.98px) {
    #footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    #footer .row {
        flex-direction: column;
    }
    
    .footer-info-col {
        text-align: center;
        margin-bottom: 1.5rem;
        order: 1;
    }
    
    .footer-info-col h4 {
        margin-bottom: 1.5rem;
    }
    
    .footer-info-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-info-col p {
        margin-bottom: 1rem;
        font-size: 1rem;
    }
    
    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-details p {
        margin-bottom: 0;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .footer-map-col {
        order: 2;
    }
    
    .footer-map-col iframe {
        height: 300px;
        border-radius: 0.5rem;
    }
    
    .footer-bottom {
        padding: 1rem 0;
        margin-top: 1rem;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    #footer .py-5 {
        padding: 2rem 0 !important;
    }
    
    .footer-info-col {
        margin-bottom: 1rem;
    }
    
    .footer-info-col h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .footer-info-col p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .contact-details i {
        font-size: 0.9rem;
        width: 18px;
    }
    
    .footer-map-col iframe {
        height: 250px;
        border-radius: 0.5rem;
        margin: 0;
        width: 100%;
        max-width: 100%;
    }
    
    .footer-bottom {
        padding: 0.75rem 0;
        font-size: 0.8rem;
    }
}
