/* assets/css/contacto.css */

.location-section-container {
    position: relative;
    padding: 80px 4%;
    background-color: #f4f6f8;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    overflow: hidden;
}

.location-background-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Placeholder for actual map background */
    background-image: url('../img/mapa-placeholder.png');
    /* You would replace this */
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    z-index: 1;
}

.location-content-card {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background-color: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    max-width: 1100px;
    width: 100%;
}

.location-left-col .location-tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #e9ecef;
    color: #495057;
    font-weight: 700;
    font-size: 12px;
    border-radius: 6px;
    margin-bottom: 16px;
}

.location-left-col h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.location-left-col p {
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.6;
}

.location-contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.location-contact-info .info-icon {
    width: 48px;
    height: 48px;
    background-color: #111827;
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.location-contact-info span {
    display: block;
    color: #6b7280;
    font-size: 14px;
}

.location-contact-info strong {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.location-right-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.location-details-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-right-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-info p {
    color: #495057;
    display: flex;
    align-items: center;
    gap: 8px;
}

.office-info small {
    color: #6b7280;
    margin-top: 8px;
    display: block;
}

.service-points .points-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-points .point-card {
    background-color: #f8f9fa;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.service-points .point-card h5 {
    font-weight: 700;
    margin-bottom: 4px;
}

.service-points .point-card p {
    font-size: 14px;
    color: #6b7280;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background-color: #111827;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border-radius: 12px;
    margin-top: auto;
    /* Pushes button to the bottom */
}


@media (max-width: 992px) {
    .location-content-card {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .location-section-container {
        padding: 40px 4%;
    }

    .location-content-card {
        padding: 24px;
    }

    .location-left-col h2 {
        font-size: 28px;
    }

    .service-points .points-container {
        grid-template-columns: 1fr;
    }
}